Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Block CSS from all front-end pages but not from administrative pages


Go to End


6 Posts   1358 Views

Avatar
DeklinKelly

Community Member, 197 Posts

8 August 2011 at 4:35am

How can I block CSS from all front-end pages but not from administrative pages?

If I put this line in the config file the the CSS gets blocked from all front-end AND administrative pages:

Requirements::block('cms/css/typography.css');

Avatar
MarcusDalgren

Community Member, 288 Posts

8 August 2011 at 7:18am

But you have full control of the frontend don't you?
Just remove the call to typography.css in the frontend part of your code,no need to block it.

Avatar
DeklinKelly

Community Member, 197 Posts

8 August 2011 at 7:52am

I am not adding it. Silverstripe adds it by default!

Avatar
MarcusDalgren

Community Member, 288 Posts

8 August 2011 at 7:57am

If you've done a basic install then there's three calls to Requirements::themedCSS() in the init() function of your Page_Controller but those are easily removed. If you've already removed those then something else is adding them, not Silverstripe.

Avatar
DeklinKelly

Community Member, 197 Posts

8 August 2011 at 9:06am

Regardless of how they get there, is there a way to block them only on the front end?

Avatar
(deleted)

Community Member, 473 Posts

8 August 2011 at 9:11am

Put the Requirements::block() call in the init() method of your Page_Controller.