<?xml version="1.0"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title></title>
		<link>http://www.silverstripe.org/forums/rss</link>
		<atom:link href="http://www.silverstripe.org/forums/rss" rel="self" type="application/rss+xml" />
		<description></description>

		
		<item>
			<title>Re: Child / dependent themes - anyone know this?</title>
			<link>http://www.silverstripe.org/themes-2/show/18273#post311737</link>
			<description>&lt;p&gt;You can can use sub themes. They are not just for modules, they can be used to take a theme, and extend it for any page type. By using myTheme_page you can basically create a child theme that extends your master theme...&lt;/p&gt;&lt;p&gt;I've put some notes on this at &lt;a href=&quot;http://www.silverstriperesources.com/articles/customising-a-theme-using-sub-themes/&quot; rel=&quot;nofollow&quot;&gt;http://www.silverstriperesources.com/articles/customising-a-theme-using-sub-themes/&lt;/a&gt;&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Child / dependent themes - anyone know this? &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18273#post311737&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18273&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Fri, 10 Feb 2012 12:50:23 +1300</pubDate>
			<dc:creator>Futureweb</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18273#post311737</guid>
		</item>
		
		<item>
			<title>Re: Is there a way to shorten this code?</title>
			<link>http://www.silverstripe.org/themes-2/show/19149#post311681</link>
			<description>&lt;p&gt;Group all the fields into 1 DataObject set via a PHP function. Something like&lt;/p&gt;&lt;p&gt;function FieldsForPage() {&lt;br /&gt;$output = new DataObjectSet();&lt;/p&gt;&lt;p&gt;for($i = 1; $i &amp;lt; 10; $i++) {&lt;br /&gt;$field = &quot;Field$i&quot;;&lt;br /&gt;if($this-&amp;gt;$field) $output-&amp;gt;push(new ArrayData(array('Field' =&amp;gt; $this-&amp;gt;$field)));&lt;br /&gt;}&lt;br /&gt;return $output;&lt;br /&gt;}&lt;/p&gt;&lt;p&gt;&amp;lt;% control FieldsForPage %&amp;gt;&lt;br /&gt;&amp;lt;img src=&quot;$ThemeDir/images/icon/$Field.jpg&quot; title=&quot;$Field&quot; alt=&quot;$Field&quot; width=&quot;32&quot; height=&quot;32&quot;/&amp;gt; &lt;br /&gt;&amp;lt;% end_control %&amp;gt;&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Is there a way to shorten this code? &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19149#post311681&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19149&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Wed, 08 Feb 2012 21:21:23 +1300</pubDate>
			<dc:creator>Willr</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19149#post311681</guid>
		</item>
		
		<item>
			<title>Re: Is there a way to shorten this code?</title>
			<link>http://www.silverstripe.org/themes-2/show/19149#post311636</link>
			<description>&lt;p&gt;I've realised that the alt tags and title tags in that won't work, eg they will just display &quot;1&quot; values. &lt;/p&gt;&lt;p&gt;Would still be interested if there was a way to reduce the code?&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Is there a way to shorten this code? &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19149#post311636&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19149&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Mon, 06 Feb 2012 09:37:13 +1300</pubDate>
			<dc:creator>edwardlewis</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19149#post311636</guid>
		</item>
		
		<item>
			<title>Is there a way to shorten this code?</title>
			<link>http://www.silverstripe.org/themes-2/show/19149</link>
			<description>&lt;p&gt;I'm creating a site which has a series of boolean fields to control what icons are displayed on a page.. in total there will be around 20 fields for this particular section. &lt;/p&gt;&lt;p&gt;In my template I have something like this:&lt;/p&gt;&lt;p&gt;&amp;lt;% if Field1 %&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;img src=&quot;$ThemeDir/images/icon/Field1.jpg&quot; title=&quot;SField1&quot; alt=&quot;$Field1&quot; width=&quot;32&quot; height=&quot;32&quot;/&amp;gt;&lt;br /&gt;&amp;lt;% end_if %&amp;gt;&lt;br /&gt;&amp;lt;% if Field2 %&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;img src=&quot;$ThemeDir/images/icon/Field2.jpg&quot; title=&quot;SField2&quot; alt=&quot;$Field2&quot; width=&quot;32&quot; height=&quot;32&quot;/&amp;gt;&lt;br /&gt;&amp;lt;% end_if %&amp;gt;&lt;br /&gt;&amp;lt;% if Field3 %&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;img src=&quot;$ThemeDir/images/icon/Field3.jpg&quot; title=&quot;SField3&quot; alt=&quot;$Field3&quot; width=&quot;32&quot; height=&quot;32&quot;/&amp;gt;&lt;br /&gt;&amp;lt;% end_if %&amp;gt;&lt;br /&gt;&amp;lt;% if Field4 %&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;img src=&quot;$ThemeDir/images/icon/Field4.jpg&quot; title=&quot;SField4&quot; alt=&quot;$Field4&quot; width=&quot;32&quot; height=&quot;32&quot;/&amp;gt;&lt;br /&gt;&amp;lt;% end_if %&amp;gt;&lt;/p&gt;&lt;p&gt;Can that be re-rwriiten to something shorter?&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Is there a way to shorten this code? &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19149&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19149&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Mon, 06 Feb 2012 00:53:36 +1300</pubDate>
			<dc:creator>edwardlewis</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19149</guid>
		</item>
		
		<item>
			<title>Creating themed directories?</title>
			<link>http://www.silverstripe.org/themes-2/show/19141</link>
			<description>&lt;p&gt;I want to do something like this:&lt;/p&gt;&lt;p&gt;/dir1&lt;br /&gt;    --- home&lt;br /&gt;    --- about us&lt;br /&gt;    --- something&lt;br /&gt;/dir2&lt;br /&gt;    --- home&lt;br /&gt;    --- about us&lt;br /&gt;    --- something&lt;/p&gt;&lt;p&gt;I want to theme each &quot;folder&quot; for a particular branch.  Any ideas on how to do a conditional statement to get the top most parent for any particular segment?&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Creating themed directories? &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19141&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19141&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sat, 04 Feb 2012 08:43:47 +1300</pubDate>
			<dc:creator>HeartlandTech</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19141</guid>
		</item>
		
		<item>
			<title>Re: Sub Themes and Modules</title>
			<link>http://www.silverstripe.org/themes-2/show/19132#post311575</link>
			<description>&lt;p&gt;In fact, in the eCommerce, subthemes work with the product page, but not the checkout page. Again, the code is &lt;br /&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;public function init() {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if(!class_exists('Payment')) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;trigger_error('The payment module must be installed for the ecommerce module to function.', E_USER_WARNING);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Requirements::javascript(THIRDPARTY_DIR . '/jquery/jquery.js');&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Requirements::javascript('ecommerce/javascript/CheckoutPage.js');&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Requirements::javascript('ecommerce/javascript/ecommerce.js');&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Requirements::themedCSS('CheckoutPage');&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$this-&amp;gt;initVirtualMethods();&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;parent::init();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;where i think it should be (note the position of parent::init();)&lt;/p&gt;&lt;p&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;public function init() {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;parent::init();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if(!class_exists('Payment')) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;trigger_error('The payment module must be installed for the ecommerce module to function.', E_USER_WARNING);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Requirements::javascript(THIRDPARTY_DIR . '/jquery/jquery.js');&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Requirements::javascript('ecommerce/javascript/CheckoutPage.js');&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Requirements::javascript('ecommerce/javascript/ecommerce.js');&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Requirements::themedCSS('CheckoutPage');&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$this-&amp;gt;initVirtualMethods();&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;I'm trying to build some new all purpose themes, so I'd like to get this working by only using the templates... either that or the owners of the modules could update the code!&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Sub Themes and Modules &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19132#post311575&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19132&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Thu, 02 Feb 2012 16:04:52 +1300</pubDate>
			<dc:creator>Futureweb</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19132#post311575</guid>
		</item>
		
		<item>
			<title>Sub Themes and Modules</title>
			<link>http://www.silverstripe.org/themes-2/show/19132</link>
			<description>&lt;p&gt;According to &lt;a href=&quot;http://doc.silverstripe.org/sapphire/en/topics/theme-development&quot; rel=&quot;nofollow&quot;&gt;http://doc.silverstripe.org/sapphire/en/topics/theme-development&lt;/a&gt; I can create sub theme, like &quot;myTheme_forum&quot;, copy forum CSS, customize, and it should work....&lt;/p&gt;&lt;p&gt;However, it doesn't work on a few modules&lt;/p&gt;&lt;p&gt;It works on the for the Blog module, and eCommerce, but doesn't work on the FORUM module. &lt;/p&gt;&lt;p&gt;I know one way of fixing it (in forumholder.php parent::init(); needs to be above the list of required files), but this required changing code in the module - which I shouldn't need to do.&lt;/p&gt;&lt;p&gt;Seeing as the forum module is used by SS in their own example, I would expect it to work. So - am I missing something?&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Sub Themes and Modules &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19132&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19132&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Thu, 02 Feb 2012 15:17:24 +1300</pubDate>
			<dc:creator>Futureweb</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19132</guid>
		</item>
		
		<item>
			<title>HTML5 Boilerplate</title>
			<link>http://www.silverstripe.org/themes-2/show/19131</link>
			<description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;Just wanted to let everyone know that Silverstripe can work really well with the HTML5 Boilerplate framework: &lt;a href=&quot;http://html5boilerplate.com/&quot; rel=&quot;nofollow&quot;&gt;http://html5boilerplate.com/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;I just used it to create this site: &lt;a href=&quot;http://quintessentialcool.com/&quot; rel=&quot;nofollow&quot;&gt;http://quintessentialcool.com&lt;/a&gt; which was recently added to the community showcase (thumb it if you like it!)&lt;/p&gt;&lt;p&gt;I simply started with a completely empty theme, then modelled my Page.ss on the index.html from HTML5 Boilerplate. Put the boilerplate style sheet into the theme's CSS folder, put the javascript libraries into the theme's javascript folder and built it up from there. No forms.css, typography.css or layout.css (although I could have split the HTML5 Boilerplate stylesheet into those components, for some reason I prefer keeping everything in one file as long as I'm reasonably neat).&lt;/p&gt;&lt;p&gt;I recommend this for anyone who really wants to feel like they're starting a Silverstripe project with a clean slate on which you can build a custom design.&lt;/p&gt;&lt;p&gt;Oh, I also make use of the media &quot;screen&quot; attribute in the link tags in the HTML head to achieve a somewhat responsive design optimised for iphone. Again I found this was also easier to do when the site started from a clean slate.&lt;/p&gt;&lt;p&gt;Let me know what you think.&lt;/p&gt;&lt;p&gt;Regards,&lt;br /&gt;Adrian&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: HTML5 Boilerplate &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19131&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19131&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Thu, 02 Feb 2012 14:37:00 +1300</pubDate>
			<dc:creator>adrian</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19131</guid>
		</item>
		
		<item>
			<title>Re: Issues creating a &#39;dynamic&#39; sub-menu</title>
			<link>http://www.silverstripe.org/themes-2/show/19112#post311560</link>
			<description>&lt;p&gt;Many thanks, guys. &lt;/p&gt;&lt;p&gt;Marti - I already have the design working as it should be, I just need it to hide/show the sub-menu based on whether the active page has children or not, and if so: Only show the the children of the active page.&lt;/p&gt;&lt;p&gt;Mark - Thanks for the link and module, I'll certainly give it a look and see if I can't figure out how it works.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Issues creating a 'dynamic' sub-menu &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19112#post311560&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19112&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Thu, 02 Feb 2012 01:29:12 +1300</pubDate>
			<dc:creator>Akaidu</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19112#post311560</guid>
		</item>
		
		<item>
			<title>Re: Issues creating a &#39;dynamic&#39; sub-menu</title>
			<link>http://www.silverstripe.org/themes-2/show/19112#post311514</link>
			<description>&lt;p&gt;I required the same functionality (but to any sub-level), so I created a module for it if you're interested: &lt;a href=&quot;https://github.com/markjames/silverstripe-nestedmenu&quot; rel=&quot;nofollow&quot;&gt;https://github.com/markjames/silverstripe-nestedmenu&lt;/a&gt;&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Issues creating a 'dynamic' sub-menu &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19112#post311514&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19112&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Tue, 31 Jan 2012 10:13:06 +1300</pubDate>
			<dc:creator>markjames</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19112#post311514</guid>
		</item>
		
		<item>
			<title>Re: Issues creating a &#39;dynamic&#39; sub-menu</title>
			<link>http://www.silverstripe.org/themes-2/show/19112#post311512</link>
			<description>&lt;p&gt;Supposing the basic set of pages you talk about are all root pages, a very simple menu would work like this. Menu(1) will give you the rootpages: for each page you check if it has any children, and if it does, you create a nested unordered list for them.&lt;/p&gt;&lt;p&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;&amp;lt;% if Menu(1) %&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;ul&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;% control Menu(1) %&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;li&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;a class=&quot;$LinkingMode&quot; href=&quot;$Link&quot;&amp;gt;$MenuTitle&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;% if Children %&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;ul&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;% control Children %&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;li&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;a class=&quot;$LinkingMode&quot; href=&quot;$Link&quot;&amp;gt;$MenuTitle&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/li&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;% end_control %&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/ul&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;% end_if %&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/li&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;% end_control %&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/ul&amp;gt;&lt;br /&gt;&amp;lt;% end_if %&amp;gt;&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;The actual design/hiding/showing will need some classes/javascript - but this will give you the basics.&lt;/p&gt;&lt;p&gt;Using Menu(2) instead of Menu(1) would give you all childpages of the currentpage, so that would work fine for a submenu.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Issues creating a 'dynamic' sub-menu &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19112#post311512&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19112&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Tue, 31 Jan 2012 06:21:14 +1300</pubDate>
			<dc:creator>martimiz</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19112#post311512</guid>
		</item>
		
		<item>
			<title>Issues creating a &#39;dynamic&#39; sub-menu</title>
			<link>http://www.silverstripe.org/themes-2/show/19112</link>
			<description>&lt;p&gt;So I have the basic menu set up:&lt;br /&gt;---------&lt;br /&gt;-Active Page&lt;br /&gt;-Page&lt;br /&gt;-Page&lt;br /&gt;-Page&lt;br /&gt;---------&lt;/p&gt;&lt;p&gt;I'm wanting to get something along the lines of this:&lt;/p&gt;&lt;p&gt;---------&lt;br /&gt;-Active page&lt;br /&gt;  -Sub-page&lt;br /&gt;  -Sub-Page&lt;br /&gt;-Page&lt;br /&gt;-Page&lt;br /&gt;  -Sub-Page (hidden in menu)&lt;br /&gt;  -Sub-Page (hidden in menu)&lt;br /&gt;---------&lt;/p&gt;&lt;p&gt;I came across this:&lt;/p&gt;&lt;p&gt;&amp;lt;% if Menu(2) %&amp;gt;&lt;br /&gt; &amp;lt;h2&amp;gt;&amp;lt;% control Level(1) %&amp;gt;$Title&amp;lt;% end_control %&amp;gt;&amp;lt;/h2&amp;gt;&lt;br /&gt; &amp;lt;div class=&quot;list&quot;&amp;gt;&lt;br /&gt;  &amp;lt;ul&amp;gt;&lt;br /&gt;     &amp;lt;% control Menu(2) %&amp;gt;&lt;br /&gt;         &amp;lt;% if Children %&amp;gt;&lt;br /&gt;          &amp;lt;li class=&quot;$LinkingMode&quot;&amp;gt;&amp;lt;a href=&quot;$Link&quot; title=&quot;Go to the $Title.XML page&quot; class=&quot;$LinkingMode levela&quot;&amp;gt;&amp;lt;span&amp;gt;&amp;lt;em&amp;gt;$MenuTitle.XML&amp;lt;/em&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;         &amp;lt;% else %&amp;gt;&lt;br /&gt;       &amp;lt;li&amp;gt;&amp;lt;a href=&quot;$Link&quot; title=&quot;Go to the $Title.XML page&quot; class=&quot;$LinkingMode levela&quot;&amp;gt;&amp;lt;span&amp;gt;&amp;lt;em&amp;gt;$MenuTitle.XML&amp;lt;/em&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;    &amp;lt;% end_if %&amp;gt;   &lt;/p&gt;&lt;p&gt;      &amp;lt;% if LinkOrSection = section %&amp;gt;&lt;br /&gt;       &amp;lt;% if Children %&amp;gt;&lt;br /&gt;      &amp;lt;ul class=&quot;sub&quot;&amp;gt;&lt;br /&gt;       &amp;lt;li&amp;gt;&lt;br /&gt;        &amp;lt;ul class=&quot;roundWhite&quot;&amp;gt;&lt;br /&gt;         &amp;lt;% control Children %&amp;gt;&lt;br /&gt;          &amp;lt;li&amp;gt;&amp;lt;a href=&quot;$Link&quot; title=&quot;Go to the $Title.XML page&quot; class=&quot;$LinkingMode levelb&quot;&amp;gt;&amp;lt;span&amp;gt;&amp;lt;em&amp;gt;$MenuTitle.XML&amp;lt;/em&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;         &amp;lt;% end_control %&amp;gt;&lt;br /&gt;        &amp;lt;/ul&amp;gt;&lt;br /&gt;       &amp;lt;/li&amp;gt;&lt;br /&gt;      &amp;lt;/ul&amp;gt;&lt;br /&gt;       &amp;lt;% end_if %&amp;gt;&lt;br /&gt;    &amp;lt;% end_if %&amp;gt; &lt;br /&gt;   &amp;lt;/li&amp;gt; &lt;br /&gt;     &amp;lt;% end_control %&amp;gt;&lt;br /&gt;    &amp;lt;/ul&amp;gt;&lt;br /&gt; &amp;lt;/div&amp;gt;&lt;br /&gt; &amp;lt;!-- list --&amp;gt;&lt;br /&gt;  &amp;lt;p&amp;gt;&amp;amp;nbsp;&amp;lt;/p&amp;gt;&lt;br /&gt; &amp;lt;% end_if %&amp;gt;&lt;/p&gt;&lt;p&gt;But try as I might I just can't get it working. Perhaps I'm putting it in the wrong place? Maybe some of those 2s should be 1s? As a SilverStripe newbie, I'm just not sure. Any help would be appreciated.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Issues creating a 'dynamic' sub-menu &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19112&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19112&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Tue, 31 Jan 2012 01:20:13 +1300</pubDate>
			<dc:creator>Akaidu</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19112</guid>
		</item>
		
		<item>
			<title>Paddy green $PageComments Error</title>
			<link>http://www.silverstripe.org/themes-2/show/19110</link>
			<description>&lt;p&gt;With the Paddy green theme, but not other themes, I get:&lt;br /&gt;-------------------------------------------------------------------------------------&lt;br /&gt;XML Parsing Error: not well-formed&lt;br /&gt;Location: http://localhost/SS/new-articleholder/new-articlepage/&lt;br /&gt;Line Number 130, Column 114:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;p id=&quot;DeleteComments&quot;&amp;gt;&amp;lt;a href=&quot;localhost/SS/PageComment/deleteallcomments?pageid=31&amp;amp;SecurityID=afb7bd338746da91043ff35f45872e652eb312e5&quot;&amp;gt;&lt;br /&gt;-------------------------------------------------------------------------------------&lt;br /&gt;whenever I allow user comments on an article&lt;br /&gt;But only in firefox.&lt;/p&gt;&lt;p&gt;I am a total noob to SilverStripe, please use concise terminology that us noobs can comprehend.&lt;br /&gt;Any help is welcomed as I am trying to run a professional website for a professional company, and this &lt;br /&gt;sort of error needs to be addressed when discovered.&lt;/p&gt;&lt;p&gt;-----------------------------------------------------------------&lt;br /&gt;Article page looks like this&lt;br /&gt;-----------------------------------------------------------------&lt;br /&gt;&amp;lt;% include Menu2 %&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;div id=&quot;Content&quot; class=&quot;typography&quot;&amp;gt;&lt;/p&gt;&lt;p&gt; &amp;lt;% include Breadcrumbs %&amp;gt;&lt;/p&gt;&lt;p&gt;    &amp;lt;h1&amp;gt;$Title&amp;lt;/h1&amp;gt;&lt;br /&gt;    $Content&lt;br /&gt;    &amp;lt;div class=&quot;newsDetails&quot;&amp;gt;&lt;br /&gt;        Posted on $Date.Nice by $Author&lt;br /&gt;    &amp;lt;/div&amp;gt;&lt;br /&gt;    $PageComments&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;-----------------------------------------------------------------------&lt;br /&gt;ArticlePage.php  looks like this&lt;br /&gt;-----------------------------------------------------------------------&lt;br /&gt;&amp;lt;?php&lt;br /&gt;class ArticlePage extends Page {&lt;br /&gt;static $icon = &quot;themes/tutorial/images/treeicons/news&quot;;&lt;br /&gt;    static $db = array(&lt;br /&gt;        'Date' =&amp;gt; 'Date',&lt;br /&gt;        'Author' =&amp;gt; 'Text'&lt;/p&gt;&lt;p&gt;    );&lt;br /&gt;    function getCMSFields() {&lt;br /&gt;        $fields = parent::getCMSFields();&lt;/p&gt;&lt;p&gt;        $fields-&amp;gt;addFieldToTab('Root.Content.Main', $dateField = new DateField('Date','Article Date (for example: 20/12/2010)'), 'Content');&lt;br /&gt;           $dateField-&amp;gt;setConfig('showcalendar', true);&lt;br /&gt;         $dateField-&amp;gt;setConfig('dateformat', 'dd/MM/YYYY');&lt;/p&gt;&lt;p&gt;        $fields-&amp;gt;addFieldToTab('Root.Content.Main', new TextField('Author'), 'Content');&lt;/p&gt;&lt;p&gt;        return $fields;&lt;br /&gt;    }&lt;br /&gt;    }&lt;br /&gt;    class ArticlePage_Controller extends Page_Controller {&lt;br /&gt;}&lt;/p&gt;&lt;p&gt;?&amp;gt;&lt;br /&gt;-------------------------------------------------------------------------&lt;br /&gt;Also: I have seen this &lt;a href=&quot;http://www.silverstripe.org/general-questions/show/15389&quot; rel=&quot;nofollow&quot;&gt;http://www.silverstripe.org/general-questions/show/15389&lt;/a&gt;&lt;br /&gt;and it does not seem to give a solution&lt;/p&gt;&lt;p&gt;Thanks for any assistance in advance&lt;br /&gt;firewalker22&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Paddy green $PageComments Error &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19110&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19110&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Mon, 30 Jan 2012 06:34:55 +1300</pubDate>
			<dc:creator>firewalker22</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19110</guid>
		</item>
		
		<item>
			<title>Re: Location of frontend files</title>
			<link>http://www.silverstripe.org/themes-2/show/18769#post311407</link>
			<description>&lt;p&gt;Hi Plato,&lt;/p&gt;&lt;p&gt;the integration of frontend upgrades is definitely a point!&lt;/p&gt;&lt;p&gt;Didn't consider this before, thx for your input  &lt;img src='http://www.silverstripe.org/sapphire/images/smilies/smile.gif'&gt; &lt;/p&gt;&lt;p&gt;Regards&lt;br /&gt;SF&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Location of frontend files &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18769#post311407&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18769&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Thu, 26 Jan 2012 05:37:32 +1300</pubDate>
			<dc:creator>Silverfish</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18769#post311407</guid>
		</item>
		
		<item>
			<title>Re: Location of frontend files</title>
			<link>http://www.silverstripe.org/themes-2/show/18769#post311367</link>
			<description>&lt;p&gt;Themes are separate from the project directory, but the project takes precedence. If you put a template file into your project dir it will be used over whatever is in the theme dir, who's files get used in preference over any template files provided by the module.&lt;/p&gt;&lt;p&gt;Separating out the theme files allows one site to easily switch themes, where as if they're all in the same project dir, they simply get used.&lt;br /&gt;This would allow a site to have special themes, for example a Christmas theme for their November/December sales period, and easily turn it on and off without having to fiddle around with the file system.&lt;/p&gt;&lt;p&gt;Getting too hung up on the separation of M, V and C gets one into all sorts of pointless debates with no real answer.&lt;/p&gt;&lt;p&gt;Short answer: you'd don't NEED to use the themes dir, but it makes things a little easier when upgrading front end only changes, etc.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Location of frontend files &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18769#post311367&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18769&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Tue, 24 Jan 2012 10:53:46 +1300</pubDate>
			<dc:creator>Plato</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18769#post311367</guid>
		</item>
		
		<item>
			<title>Re: Potential installation issues</title>
			<link>http://www.silverstripe.org/themes-2/show/19042#post311284</link>
			<description>&lt;p&gt;You should only ever need to edit the .htaccess file in your root directory and the _config.php file in your mysite folder. Editing any of the other core folders is not ideal as it'll make upgrading harder for you later one.&lt;/p&gt;&lt;p&gt;If you don't want the url to be /newsite1 then yes, one way is to just not store the site in a subfolder. If you want to put it in a subfolder you will need to alter the VirtualHost (if you're on a VPS) to point the DocumentRoot to your new subfolder. Most shared hosts however, you'll be unable to alter the document root.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Potential installation issues &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19042#post311284&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19042&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Fri, 20 Jan 2012 16:08:27 +1300</pubDate>
			<dc:creator>Willr</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19042#post311284</guid>
		</item>
		
		<item>
			<title>Re: Simple theme mod</title>
			<link>http://www.silverstripe.org/themes-2/show/19041#post311260</link>
			<description>&lt;p&gt;Hi&lt;/p&gt;&lt;p&gt;Take a look at this &lt;a href=&quot;http://doc.silverstripe.org/sapphire/en/tutorials/1-building-a-basic-site&quot; rel=&quot;nofollow&quot;&gt;http://doc.silverstripe.org/sapphire/en/tutorials/1-building-a-basic-site&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Its a good Starting Point.&lt;/p&gt;&lt;p&gt;Darren&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Simple theme mod &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19041#post311260&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19041&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Thu, 19 Jan 2012 04:39:06 +1300</pubDate>
			<dc:creator>Turnaround Guy</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19041#post311260</guid>
		</item>
		
		<item>
			<title>Potential installation issues</title>
			<link>http://www.silverstripe.org/themes-2/show/19042</link>
			<description>&lt;p&gt;I would like to install Silverstripe 2.4.6 in a sub dirctory (folder?) in the root directory of my server i.e. ./newsite1 . I need to be able to do this because I host more than one site on this hosting account. Having looked through the forum I have found some older posts that identify several problems with this approach. The problems seem to be as follows:&lt;/p&gt;&lt;p&gt;1 doing this makes URL look like mystite.com/newsite1. &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;There are suggestions as to how to fix this. One is that you only copy the contents of the silverstripe folder to the sub directory folder. Does this solve the problem and if so should I do this when uploading the files via ftp (before installation) or after installation?&lt;/p&gt;&lt;p&gt;2 There are various references to the need to add an .htaccess file to the root directory and also to modify the .htaccess and config.php files in Silverstripe but does not specify which .htaccess or config.php files to change (there are several in different folders). &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;The posts on the forum were made about a year ago. Have these issue been addressed in version 2.4.6 or do I still need to make changes to get the site to work through a sub directory in the root directory?  &lt;/p&gt;&lt;p&gt;If I still need to make changes can anyone tell me what I need to do in the htaccess files?&lt;/p&gt;&lt;p&gt;Hoping there is a simple solution to these because Silverstrip looks great for my purposes but my experienc and understanding of htaccess and server settings is not great.&lt;/p&gt;&lt;p&gt;Thanks &lt;/p&gt;&lt;p&gt;Appologies but I seem to have posted this in wrong forum and it should have been in installation forum&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Potential installation issues &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19042&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19042&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Thu, 19 Jan 2012 03:07:38 +1300</pubDate>
			<dc:creator>Loopy</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19042</guid>
		</item>
		
		<item>
			<title>Simple theme mod</title>
			<link>http://www.silverstripe.org/themes-2/show/19041</link>
			<description>&lt;p&gt;Hello everyone&lt;/p&gt;&lt;p&gt;I have recently discovered Silverstripe and it looks ideal for the site I am trying to build which will start with a basic 3 or 4 page site but may expand in the future. I would like to make some simple mods to the theme. The changes I wish to make relate to width, header image, menu bar colour and background. I have looked at the theme and it looks like I can make these changes as follows&lt;/p&gt;&lt;p&gt;Change width from 710 to 756 in the layout.css file and replace background, header and menu images in images folder&lt;/p&gt;&lt;p&gt;Is this all I need to do or are there changes required in the Templates/page.ss file aswell.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Simple theme mod &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19041&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19041&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Thu, 19 Jan 2012 01:32:30 +1300</pubDate>
			<dc:creator>Loopy</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19041</guid>
		</item>
		
		<item>
			<title>Re: Theme Won&#39;t Show</title>
			<link>http://www.silverstripe.org/themes-2/show/19036#post311236</link>
			<description>&lt;p&gt;is it because its v. 2.0.0?&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Theme Won't Show &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19036#post311236&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19036&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Wed, 18 Jan 2012 14:48:56 +1300</pubDate>
			<dc:creator>thegreatmike</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19036#post311236</guid>
		</item>
		
		<item>
			<title>Theme Won&#39;t Show</title>
			<link>http://www.silverstripe.org/themes-2/show/19036</link>
			<description>&lt;p&gt;I've done everything it says underneath the theme for installation. Inserted the theme in /themes folder, changed the _config.php file to the &quot;Code Name&quot; they provided, and flushed site.... nothing...  any help?  The theme i want is the global theme:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.silverstripe.org/global/&quot; rel=&quot;nofollow&quot;&gt;http://www.silverstripe.org/global/&lt;/a&gt;&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Theme Won't Show &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19036&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19036&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Wed, 18 Jan 2012 14:30:24 +1300</pubDate>
			<dc:creator>thegreatmike</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19036</guid>
		</item>
		
		<item>
			<title>Re: jquery.ui.tabs droste-efect error only in Silverstripe</title>
			<link>http://www.silverstripe.org/themes-2/show/18960#post311115</link>
			<description>&lt;p&gt;The problem remains and as far as I can see it is more serious as I thought and it is really caused by Silverstripe - but do not know where it comes from. I used the demo file that comes with the jquery ui tabs downloads and simply renamed it Page.ss - did not add any content, changed the links to the resources using $ThemeDir, added the &amp;lt;% base_tag %&amp;gt; and $MetaTags, added $Content and $Form so I could log in, and tested it with the 3.0 alpha2 version and a clean install of silverstripe 2.4.6. Same problem. &lt;/p&gt;&lt;p&gt;I attached a screenshot of what happens in the code and I attached the Page.ss. The Page.php is left as is from a clean install using SS 2.4.6 and 3.0 Alpha 2&lt;/p&gt;&lt;p&gt;I hope people understand this is not a rookie problem. I have build various websites with silverstripe and I am maybe not the top developer but I am building sites since over a decade (started in 1997 doing web things in 1997 for a web-magazine using bbedit and have worked as free lance web designer/coder since 2005)&lt;/p&gt;&lt;p&gt;And of course I hope someone can help me  &lt;img src='http://www.silverstripe.org/sapphire/images/smilies/smile.gif'&gt; &lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: jquery.ui.tabs droste-efect error only in Silverstripe &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18960#post311115&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18960&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sat, 14 Jan 2012 05:33:07 +1300</pubDate>
			<dc:creator>yurigoul</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18960#post311115</guid>
		</item>
		
		<item>
			<title>Re: Insert blocks of content</title>
			<link>http://www.silverstripe.org/themes-2/show/19000#post311104</link>
			<description>&lt;p&gt;you can either hard code the blocks in the template and retrieve data from the controller using functions&lt;br /&gt;or you could make this using widgets and modifying how the &quot;sidebar&quot; is shown&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Insert blocks of content &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19000#post311104&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19000&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sat, 14 Jan 2012 00:55:27 +1300</pubDate>
			<dc:creator>swaiba</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19000#post311104</guid>
		</item>
		
		<item>
			<title>Insert blocks of content</title>
			<link>http://www.silverstripe.org/themes-2/show/19000</link>
			<description>&lt;p&gt;HI all,&lt;/p&gt;&lt;p&gt;I'm trying to understand how SilverStripe works, but I'm stuck.&lt;/p&gt;&lt;p&gt;I created a template with Artisteer, and seems is working.&lt;/p&gt;&lt;p&gt;Now, between the content (red), and menu(blue), I want to present 4 blocks feeded with content (in green). In second screenshot I show wht I want from my previous site.&lt;/p&gt;&lt;p&gt;The problem, is I don't know how to show four blocks there, and how to feed it with content from SS pages.&lt;/p&gt;&lt;p&gt;I hate comparisons, but I don't know how to explain me better. In Joomla for example, you have positions, and in this positions, you can insert contents, but, I can't find something similar here, and I don't understand how to do it.&lt;/p&gt;&lt;p&gt;Thanks a lot.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Insert blocks of content &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/19000&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/19000&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Fri, 13 Jan 2012 23:50:31 +1300</pubDate>
			<dc:creator>Giu</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/19000</guid>
		</item>
		
		<item>
			<title>jquery.ui.tabs droste-efect error only in Silverstripe</title>
			<link>http://www.silverstripe.org/themes-2/show/18960</link>
			<description>&lt;p&gt;This truly is a Silverstripe related question because the error only happens in in silverstripe, outside of silverstripe it works fine. I hope someone can explain me what is going wrong because I am at wits end here.&lt;/p&gt;&lt;p&gt;I have a html file that works perfectly with jquery, especially with jquery.ui.tabs and jquery.ui.accordion. &lt;/p&gt;&lt;p&gt;When I theme it, it works ok up until the moment I add the jquery.ui.tabs-part. What it does is: it creates a droste effect by adding the whole page inside the tabs (from metatags to footer). &lt;del&gt;The result can be seen here&lt;/del&gt; &lt;strong&gt; EDIT: added a screenshot of the result, since I changed the page to work without ui.tabs&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;If I turn off javascript, copy the source silverstripe created and paste it in a new empty html file and render it in my browser it works fine - so it has nothing to do with my php code - but it has to do with Silverstripe. &lt;/p&gt;&lt;p&gt;What I tried:&lt;br /&gt;&lt;ul&gt;&lt;li&gt; - all requirements are cleared with &lt;em&gt;Requirements::clear();&lt;/em&gt; AND &lt;em&gt;Validator::set_javascript_validation_handler('none');&lt;/em&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt; - Turning off the different javascripts, plugins and what not revealed it only has to do with the jquery.ui.tabs-part&lt;br /&gt;&lt;/li&gt;&lt;li&gt; - I tried binding everything using requirements using the jquery parts that came with silverstripe and adding my script at the bottom. But the results are the same in silverstripe (tested it again in a test.html file and there it works fine).&lt;br /&gt;&lt;/li&gt;&lt;li&gt; - copying all the jquery files from sapphire/thirdparty to my theme dir - still no cigar. &lt;br /&gt;&lt;/li&gt;&lt;li&gt; - I am not logged in when I try it, I do not have $SilverStripeNavigator installed, have turned off everything in the _config.php in mysite to get rid of everything that has to do with testing. (see: &lt;a href=&quot;http://www.806software.com/2011/06/silverstripe-and-jquery-plugins/)&quot; rel=&quot;nofollow&quot;&gt;http://www.806software.com/2011/06/silverstripe-and-jquery-plugins/)&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt; - And I tried it in three or four different browsers, tested it localy in MAMP and uploaded it to my server&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;As I said, I am at wits end here, I go experiment some more by rearranging my html code - then I have to head to bed and do some other job in the morning, so I might not reply timely. &lt;/p&gt;&lt;p&gt;And of course in the end it will be something very stupid and simple I did wrong so I am prepared:-)&lt;/p&gt;&lt;p&gt;EDIT: I am running 2.4.6 with the google sitemap plugin&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: jquery.ui.tabs droste-efect error only in Silverstripe &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18960&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18960&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Wed, 11 Jan 2012 09:28:20 +1300</pubDate>
			<dc:creator>yurigoul</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18960</guid>
		</item>
		
		<item>
			<title>Re: JavaScript adding to themplete</title>
			<link>http://www.silverstripe.org/themes-2/show/18928#post310909</link>
			<description>&lt;p&gt;See &lt;a href=&quot;http://doc.silverstripe.org/sapphire/en/reference/requirements#including-inside-template-files&quot; rel=&quot;nofollow&quot;&gt;http://doc.silverstripe.org/sapphire/en/reference/requirements#including-inside-template-files&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;For the final line you can just keep it as a script tag.&lt;/p&gt;&lt;p&gt;If you're including all those files, perhaps you want to minify and combine the files. This time in your PHP Page.php init function (has to be via the Requirements PHP API as the template one doesn't support the syntax in 2.*)&lt;/p&gt;&lt;p&gt;Requirements::combine_files(&quot;main.js&quot;, array(&lt;br /&gt;&quot;js/jquery.easing.1.3.js&quot;,&lt;br /&gt;&quot;js/jquery.easing.compatibility.js&quot;,&lt;br /&gt;&quot;js/coda-slider.1.1.1.js&quot;,&lt;br /&gt;&quot;js/cufon-yui.js&quot;,&lt;br /&gt;&quot;js/start.js&quot;&lt;br /&gt;));&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: JavaScript adding to themplete &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18928#post310909&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18928&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sat, 07 Jan 2012 21:03:28 +1300</pubDate>
			<dc:creator>Willr</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18928#post310909</guid>
		</item>
		
		<item>
			<title>JavaScript adding to themplete</title>
			<link>http://www.silverstripe.org/themes-2/show/18928</link>
			<description>&lt;p&gt;hi!&lt;/p&gt;&lt;p&gt;so, i have this:&lt;/p&gt;&lt;p&gt;&amp;lt;script type=&quot;text/javascript&quot;  src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery.easing.1.3.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery.easing.compatibility.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;script type=&quot;text/javascript&quot; src=&quot;js/coda-slider.1.1.1.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;script type=&quot;text/javascript&quot; src=&quot;js/cufon-yui.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;script type=&quot;text/javascript&quot; src=&quot;js/start.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;script type=&quot;text/javascript&quot;&amp;gt;Cufon.now();&amp;lt;/script&amp;gt;&lt;/p&gt;&lt;p&gt;and i need to add it to Page.ss&lt;br /&gt;should it look like this:&lt;br /&gt;&amp;lt;% static void javascript(&lt;a href=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&quot; rel=&quot;nofollow&quot;&gt;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&lt;/a&gt;) %&amp;gt;&lt;br /&gt;(...)&lt;br /&gt;&amp;lt;% static void javascript(Cufon.now();) %&amp;gt;&lt;/p&gt;&lt;p&gt;thanks for the reply, coz i cant understand from the manual how to do this.&lt;/p&gt;&lt;p&gt; &lt;img src='http://www.silverstripe.org/sapphire/images/smilies/smile.gif'&gt; &lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: JavaScript adding to themplete &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18928&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18928&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sat, 07 Jan 2012 03:23:03 +1300</pubDate>
			<dc:creator>silus</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18928</guid>
		</item>
		
		<item>
			<title>Re: Starting to customize SilverStripe</title>
			<link>http://www.silverstripe.org/themes-2/show/18833#post310733</link>
			<description>&lt;p&gt;Sorry to reply too late.&lt;/p&gt;&lt;p&gt;Yes, this worked. Thanks a lot for your time.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Starting to customize SilverStripe &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18833#post310733&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18833&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Fri, 30 Dec 2011 23:14:06 +1300</pubDate>
			<dc:creator>Giu</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18833#post310733</guid>
		</item>
		
		<item>
			<title>Re: Starting to customize SilverStripe</title>
			<link>http://www.silverstripe.org/themes-2/show/18833#post310619</link>
			<description>&lt;p&gt;Hi Giu,&lt;/p&gt;&lt;p&gt;try to visit http://{siteurl}?flush=1. This will flush the cache.&lt;br /&gt;This will probably solve the issue with the blue screen. Use the same url when you changed template files. If you don't, you won't see the changes you made in some cases. &lt;/p&gt;&lt;p&gt;The best way to learn SS is by reading and following the instructions on the tuts. See &lt;a href=&quot;http://doc.silverstripe.org/sapphire/en/tutorials&quot; rel=&quot;nofollow&quot;&gt;http://doc.silverstripe.org/sapphire/en/tutorials&lt;/a&gt;&lt;br /&gt;For me the tuts where a perfect start. &lt;/p&gt;&lt;p&gt;Enjoy!!&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Starting to customize SilverStripe &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18833#post310619&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18833&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Tue, 20 Dec 2011 00:33:16 +1300</pubDate>
			<dc:creator>hammuh</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18833#post310619</guid>
		</item>
		
		<item>
			<title>Starting to customize SilverStripe</title>
			<link>http://www.silverstripe.org/themes-2/show/18833</link>
			<description>&lt;p&gt;Hi all,&lt;/p&gt;&lt;p&gt;Yesterday we noticed the existence of SilverStripe, and looks a very promising CMS for our projects.&lt;/p&gt;&lt;p&gt;For the moment, We would like to make a test site to try the features of SS, but I'm having little problems to find the best place to learn to customize an SS site. I looked in themes section in the site, but I don't find any &quot;complex&quot; theme to see on it. For example, a typical site with a banner block, sidebar, and so on.&lt;/p&gt;&lt;p&gt;For the moment, I'm reading &quot;Building theme from static template&quot;[1], but when I copy the theme to &quot;themes&quot; folder, and change it in SS Admin, I only see the blue page attached (this happened to me with all themes I tried)&lt;/p&gt;&lt;p&gt;For this first site, the HTML page will be make it with Artisteer (for speed to test).&lt;/p&gt;&lt;p&gt;Some help is appreciated.&lt;/p&gt;&lt;p&gt;[1] &lt;a href=&quot;http://www.ssbits.com/newbies/2010/building-a-theme-from-a-static-template/&quot; rel=&quot;nofollow&quot;&gt;http://www.ssbits.com/newbies/2010/building-a-theme-from-a-static-template/&lt;/a&gt;&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Starting to customize SilverStripe &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18833&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18833&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sun, 18 Dec 2011 04:17:42 +1300</pubDate>
			<dc:creator>Giu</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18833</guid>
		</item>
		
		<item>
			<title>Unterminated string literal with html5 mobile boilerplate</title>
			<link>http://www.silverstripe.org/themes-2/show/18804</link>
			<description>&lt;p&gt;I'm trying to create a mobile theme using the html5 mobile boilerplate (&lt;a href=&quot;http://html5boilerplate.com/mobile&quot; rel=&quot;nofollow&quot;&gt;http://html5boilerplate.com/mobile&lt;/a&gt;) but I can't get it to work. &lt;/p&gt;&lt;p&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;unterminated string literal&lt;br /&gt;[Break On This Error] Modernizr.mq('(min-width:0)') || docum.../hogis_mobile/js/libs/respond.min.js&quot;&amp;gt;&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;On this line:&lt;br /&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;&amp;lt;script&amp;gt;Modernizr.mq('(min-width:0)') || document.write('&amp;lt;script src=&quot;/themes/hogis_mobile/js/libs/respond.min.js&quot;&amp;gt;\x3C/script&amp;gt;')&amp;lt;/script&amp;gt;&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;I've been searching trough the internet with some solutions, for example upgrading the htmlCompressor to 1.4.2 but I'm using 1.4.3 so that bug should be fixed. The boilerplate runs correctly but when i try to make template file of the &quot;index.html&quot; I get the error message shown above.&lt;/p&gt;&lt;p&gt;What can't I see?&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Unterminated string literal with html5 mobile boilerplate &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18804&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18804&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Wed, 14 Dec 2011 04:05:53 +1300</pubDate>
			<dc:creator>gonace</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18804</guid>
		</item>
		
		<item>
			<title>Location of frontend files</title>
			<link>http://www.silverstripe.org/themes-2/show/18769</link>
			<description>&lt;p&gt;Hi There,&lt;/p&gt;&lt;p&gt;as far as I see now, SilverStripe modules bring all their templates, images and css files together with the backend code in the project folder. For me this seems to make sense as well for a website project (i.e. mysite) since I can move a whole project easily from one to another SilverStripe system by just moving one folder.&lt;br /&gt;No the documentation says: &quot;A theme is a set of HTML/CSS/Javascript and images that can be used to provide a skin for a site. A theme does not include any PHP: instead it should be separate from the code which allows the portability of a design. After all, this is an MVC framework!&quot; (&lt;a href=&quot;http://doc.silverstripe.org/sapphire/en/topics/theme-development&quot; rel=&quot;nofollow&quot;&gt;http://doc.silverstripe.org/sapphire/en/topics/theme-development&lt;/a&gt;).&lt;/p&gt;&lt;p&gt;Sure we want to separate code and layout. But do we really have to separate their folders? &lt;/p&gt;&lt;p&gt;Anyone in for this sure a bit philosophical discussion?  &lt;img src='http://www.silverstripe.org/sapphire/images/smilies/smile.gif'&gt; &lt;/p&gt;&lt;p&gt;Regards&lt;br /&gt;SF&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Location of frontend files &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18769&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18769&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Wed, 07 Dec 2011 23:45:22 +1300</pubDate>
			<dc:creator>Silverfish</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18769</guid>
		</item>
		
		<item>
			<title>Re: Setting Order of required themedCSS files</title>
			<link>http://www.silverstripe.org/themes-2/show/18452#post309983</link>
			<description>&lt;p&gt;Top advice! I'm already combining my Javascript files, so that makes sense to me.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Setting Order of required themedCSS files &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18452#post309983&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18452&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Thu, 24 Nov 2011 01:39:28 +1300</pubDate>
			<dc:creator>Matty Balaam</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18452#post309983</guid>
		</item>
		
		<item>
			<title>Re: Setting Order of required themedCSS files</title>
			<link>http://www.silverstripe.org/themes-2/show/18452#post309967</link>
			<description>&lt;p&gt;Actually what you should be doing these days is using Requirements::combine_files() so you send as few CSS files as possible.&lt;/p&gt;&lt;p&gt;It's personal preference as to use either the PHP requirements api or the template one, personally I think that message in Page.php is wrong. Including it in the PHP code is often the best (or only way) to do it.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Setting Order of required themedCSS files &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18452#post309967&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18452&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Wed, 23 Nov 2011 09:45:01 +1300</pubDate>
			<dc:creator>Willr</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18452#post309967</guid>
		</item>
		
		<item>
			<title>Re: Setting Order of required themedCSS files</title>
			<link>http://www.silverstripe.org/themes-2/show/18452#post309965</link>
			<description>&lt;p&gt;I've always wondered the same about the message about Requirements. Is this outdated guidance in the now rather dated BlackCandy theme?&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Setting Order of required themedCSS files &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18452#post309965&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18452&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Wed, 23 Nov 2011 07:29:47 +1300</pubDate>
			<dc:creator>Matty Balaam</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18452#post309965</guid>
		</item>
		
		<item>
			<title>Re: Setting Order of required themedCSS files</title>
			<link>http://www.silverstripe.org/themes-2/show/18452#post309435</link>
			<description>&lt;p&gt;Hi Willr,&lt;/p&gt;&lt;p&gt;thx for your answer!&lt;/p&gt;&lt;p&gt;Source Code says:&lt;/p&gt;&lt;p&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;public function init() {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;parent::init();&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;// Note: you should use SS template require tags inside your templates &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;// instead of putting Requirements calls here.  However these are &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;// included so that our older themes still work&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Requirements::themedCSS('layout'); &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Requirements::themedCSS('typography'); &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Requirements::themedCSS('form'); &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;so I don't know if this is deprecated and will be eliminated in future versions?&lt;/p&gt;&lt;p&gt;Currently i'm doing a workaround, passing Silverstripe CSS mechanics with i.e.:&lt;br /&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;themes/mysite/css/form.css&quot; media=&quot;all&quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;themes/mysite/css/global.css&quot; media=&quot;all&quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;themes/mysite/css/typography.css&quot; media=&quot;all&quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;% if ClassName == HomePage %&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;themes/mysite/css/home.css&quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;% end_if %&amp;gt;&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;What exactly are the advanteges by loading CSS files via Requirements:: that i miss by doing this?&lt;/p&gt;&lt;p&gt;Regards &lt;br /&gt;SF&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Setting Order of required themedCSS files &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18452#post309435&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18452&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Tue, 08 Nov 2011 00:23:14 +1300</pubDate>
			<dc:creator>Silverfish</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18452#post309435</guid>
		</item>
		
		<item>
			<title>Re: Setting Order of required themedCSS files</title>
			<link>http://www.silverstripe.org/themes-2/show/18452#post309365</link>
			<description>&lt;p&gt;No easy way to control the order for any requirements. You can control order a little easier if you use the Requirements PHP api as thats a bit more predictable.&lt;/p&gt;&lt;p&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;class Page_Controller extends ContentController {&lt;/p&gt;&lt;p&gt;function init() {&lt;br /&gt;parent::init();&lt;/p&gt;&lt;p&gt;Requirements::themedCSS('layout');&lt;br /&gt;}&lt;/p&gt;&lt;p&gt;..&lt;/p&gt;&lt;p&gt;class HomePage_Controller extends Page_Controller {&lt;/p&gt;&lt;p&gt;function init() {&lt;br /&gt;parent::init(); // will require page::init&lt;/p&gt;&lt;p&gt;Requirements::themedCSS('home');&lt;br /&gt;}&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Setting Order of required themedCSS files &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18452#post309365&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18452&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Fri, 04 Nov 2011 18:39:56 +1300</pubDate>
			<dc:creator>Willr</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18452#post309365</guid>
		</item>
		
		<item>
			<title>Setting Order of required themedCSS files</title>
			<link>http://www.silverstripe.org/themes-2/show/18452</link>
			<description>&lt;p&gt;Hi everybody,&lt;/p&gt;&lt;p&gt;I'm loading some CSS files with i.e. &amp;lt;% require themedCSS(layout) %&amp;gt;in my main template (Page.ss). In several included layout templates (i.e. HomePage.ss) I load additional CSS files (i.e. require themedCSS(home)).&lt;/p&gt;&lt;p&gt;In the generated code css files are loaded in reversal order, i.e.&lt;br /&gt;&amp;lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;http://localhost:8060/themes/mysite/css/home.css?m=1320227911&quot; /&amp;gt;&lt;br /&gt;&amp;lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;http://localhost:8060/themes/mysite/css/layout.css?m=1320076828&quot; /&amp;gt;&lt;/p&gt;&lt;p&gt;Since i would prefer to overwrite the general css declarations in layout.css with the specific declarations in home.css, i need to change the order in which the CSS files are loaded.&lt;/p&gt;&lt;p&gt;Anyone any hint if and how this is possible?&lt;/p&gt;&lt;p&gt;Thanx for any answer!  &lt;img src='http://www.silverstripe.org/sapphire/images/smilies/smile.gif'&gt; &lt;/p&gt;&lt;p&gt;regards&lt;br /&gt;SF&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Setting Order of required themedCSS files &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18452&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18452&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Wed, 02 Nov 2011 23:09:33 +1300</pubDate>
			<dc:creator>Silverfish</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18452</guid>
		</item>
		
		<item>
			<title>Re: Convert only content to template</title>
			<link>http://www.silverstripe.org/themes-2/show/18296#post308774</link>
			<description>&lt;p&gt;I can not just replace my current content with&lt;br /&gt;&quot;  &amp;lt;div id=&quot;Layout&quot;&amp;gt;&lt;br /&gt;    $Layout&lt;br /&gt;  &amp;lt;/div&amp;gt;&quot;&lt;br /&gt;?&lt;/p&gt;&lt;p&gt;Why do I have to convert the whole site?&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Convert only content to template &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18296#post308774&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18296&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Tue, 18 Oct 2011 00:25:44 +1300</pubDate>
			<dc:creator>expou</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18296#post308774</guid>
		</item>
		
		<item>
			<title>Re: Child / dependent themes - anyone know this?</title>
			<link>http://www.silverstripe.org/themes-2/show/18273#post308760</link>
			<description>&lt;p&gt;AFAIK inheritance isn't supported more than subthemes. You can also use the fact that if no theme contains the file mysite/templates is used so your 'base' could be mysite/templates/ then subthemes to themes/yourtheme&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Child / dependent themes - anyone know this? &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18273#post308760&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18273&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Mon, 17 Oct 2011 10:30:21 +1300</pubDate>
			<dc:creator>Willr</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18273#post308760</guid>
		</item>
		
		<item>
			<title>Re: Convert only content to template</title>
			<link>http://www.silverstripe.org/themes-2/show/18296#post308737</link>
			<description>&lt;p&gt;You would find it easier to convert the whole site to SS. You potential could embed that content from SilverStripe via an iframe but it's nasty. I recommend converting the site entirely. The themes documentation includes more information: &lt;a href=&quot;http://doc.silverstripe.org/sapphire/en/topics/theme-development&quot; rel=&quot;nofollow&quot;&gt;http://doc.silverstripe.org/sapphire/en/topics/theme-development&lt;/a&gt;&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Convert only content to template &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18296#post308737&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18296&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sat, 15 Oct 2011 20:41:12 +1300</pubDate>
			<dc:creator>Willr</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18296#post308737</guid>
		</item>
		
		<item>
			<title>Convert only content to template</title>
			<link>http://www.silverstripe.org/themes-2/show/18296</link>
			<description>&lt;p&gt;Hi Community,&lt;/p&gt;&lt;p&gt;i am new to silverstripe.&lt;br /&gt;I have a running XHTML/CSS Website and want to use SilverStripe only for blog site.&lt;/p&gt;&lt;p&gt;Can i replace the part (marked in attached image) with the blog function of ss and leave the rest of&lt;br /&gt;the website as is?&lt;/p&gt;&lt;p&gt;Regards&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Convert only content to template &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18296&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18296&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Fri, 14 Oct 2011 03:16:56 +1300</pubDate>
			<dc:creator>expou</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18296</guid>
		</item>
		
		<item>
			<title>Child / dependent themes - anyone know this?</title>
			<link>http://www.silverstripe.org/themes-2/show/18273</link>
			<description>&lt;p&gt;I recall vaguely an article from years ago that explained we could develop dependent themes. E.g. one theme that inherits from another, and you would then only change certain files, while keeping the main theme as the basis. I am pretty certain it had to do with SS. Does anyone remember this? I googled back and forth and I'm not hitting anything.&lt;/p&gt;&lt;p&gt;Hereby I don't mean a &quot;subtheme&quot; for a module, but e.g. a theme that is derived from a main theme, but has a different look (e.g. different CSS's).&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Child / dependent themes - anyone know this? &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18273&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18273&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Wed, 12 Oct 2011 15:14:28 +1300</pubDate>
			<dc:creator>KINKCreative</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18273</guid>
		</item>
		
		<item>
			<title>Re: Set default theme (SSViewer::set_theme) programatically in _ss_environment.php instead of _config.php</title>
			<link>http://www.silverstripe.org/themes-2/show/18231#post308531</link>
			<description>&lt;p&gt;Thanks Will - appreciate your response very much.&lt;/p&gt;&lt;p&gt;VWD.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Set default theme (SSViewer::set_theme) programatically in _ss_environment.php instead of _config.php &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18231#post308531&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18231&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Fri, 07 Oct 2011 22:35:40 +1300</pubDate>
			<dc:creator>vwd</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18231#post308531</guid>
		</item>
		
		<item>
			<title>Re: Set default theme (SSViewer::set_theme) programatically in _ss_environment.php instead of _config.php</title>
			<link>http://www.silverstripe.org/themes-2/show/18231#post308529</link>
			<description>&lt;p&gt;This is perfectly fine. The reason you cannot use SSViewer::set_theme() in your environment is that the class isn't loaded but a constant is perfectly valid to be used.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Set default theme (SSViewer::set_theme) programatically in _ss_environment.php instead of _config.php &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18231#post308529&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18231&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Fri, 07 Oct 2011 21:51:45 +1300</pubDate>
			<dc:creator>Willr</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18231#post308529</guid>
		</item>
		
		<item>
			<title>Set default theme (SSViewer::set_theme) programatically in _ss_environment.php instead of _config.php</title>
			<link>http://www.silverstripe.org/themes-2/show/18231</link>
			<description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;We've structured our SS projects so that all project specific configuration goes into _ss_environment.php, leaving _config.php to be as generic as possible, so that we can include it in our SS project boilerplate.&lt;/p&gt;&lt;p&gt;One thing that unfortunately is project specific is the call to SSViewer::set_theme().  From our reading of the forums, we get the impression that it is recommended to set a default theme programmatically, so we'd like to do that &lt;em&gt;somewhere&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;The question is where can we do this (preferably somewhere project-specific like _ss_environment.php) and outside of _config.php.  &lt;/p&gt;&lt;p&gt;Is what we're doing here, OK... we define a constant in ss_environment.php that is then used in the _config.php's SSViewer::set_theme call.  Eg...&lt;/p&gt;&lt;p&gt;&lt;em&gt;&lt;strong&gt;_ss_environment.php&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;...&lt;br /&gt;    define('SS_PROJ_DEFAULT_THEME', 'MyDefaultTheme');&lt;br /&gt;    ...&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&lt;strong&gt;_config.php&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;...&lt;br /&gt;    SSViewer::set_theme(SS_PROJ_DEFAULT_THEME);&lt;br /&gt;    ...&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;Seems to work well.  Sounds OK?&lt;/p&gt;&lt;p&gt;Thanks for your input.&lt;/p&gt;&lt;p&gt;VWD.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Set default theme (SSViewer::set_theme) programatically in _ss_environment.php instead of _config.php &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18231&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18231&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Fri, 07 Oct 2011 16:16:14 +1300</pubDate>
			<dc:creator>vwd</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18231</guid>
		</item>
		
		<item>
			<title>Re: Remove default template on &#39;view&#39;</title>
			<link>http://www.silverstripe.org/themes-2/show/18200#post308436</link>
			<description>&lt;p&gt;Thanking the wrong thread... Should go to Smurkas answering your same question(!) in another thread:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.silverstripe.org/template-questions/show/18202&quot; rel=&quot;nofollow&quot;&gt;http://www.silverstripe.org/template-questions/show/18202&lt;/a&gt;&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Remove default template on 'view' &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18200#post308436&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18200&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Wed, 05 Oct 2011 01:10:08 +1300</pubDate>
			<dc:creator>martimiz</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18200#post308436</guid>
		</item>
		
		<item>
			<title>Re: Remove default template on &#39;view&#39;</title>
			<link>http://www.silverstripe.org/themes-2/show/18200#post308432</link>
			<description>&lt;p&gt;Ah!! I never knew this going to be so easy. &lt;/p&gt;&lt;p&gt;Thank you!! Placing specialpage_popup.css on root template folder do the tricks.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Remove default template on 'view' &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18200#post308432&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18200&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Wed, 05 Oct 2011 00:19:38 +1300</pubDate>
			<dc:creator>stellalie</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18200#post308432</guid>
		</item>
		
		<item>
			<title>Re: Remove default template on &#39;view&#39;</title>
			<link>http://www.silverstripe.org/themes-2/show/18200#post308430</link>
			<description>&lt;p&gt;Are you saying that the specialpage_popup.ss template itself actually includes the page header and footer? In that case removing them from the file and doing a /?flush=1 should do the trick.&lt;/p&gt;&lt;p&gt;Or do you mean they are not in the template but for some obscure reason SilverStripe still includes them when generating the popup? In that case: are you sure the  specialpage_popup.ss is actually used? If so then post your specialpage_popup.ss template and of the bit of code in your popup() function where you generate the output...&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Remove default template on 'view' &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18200#post308430&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18200&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Wed, 05 Oct 2011 00:04:29 +1300</pubDate>
			<dc:creator>martimiz</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18200#post308430</guid>
		</item>
		
		<item>
			<title>Remove default template on &#39;view&#39;</title>
			<link>http://www.silverstripe.org/themes-2/show/18200</link>
			<description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;Sorry if this is a noob question. Been looking all around but haven;t find a clue. Basically I would like to use a view based on existing page as a pop-up.&lt;/p&gt;&lt;p&gt;specialpage_controller extends page_controller {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;static $allowed_actions = array (&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;'view',&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;'popup'&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;);&lt;br /&gt;}&lt;/p&gt;&lt;p&gt;/popup is displayed using specialpage_popup.ss, which includes the default header and footer for that template. &lt;/p&gt;&lt;p&gt;How do I remove that?&lt;/p&gt;&lt;p&gt;Many thanks in advance.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Remove default template on 'view' &lt;a href=&quot;http://www.silverstripe.org/themes-2/show/18200&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/themes-2/reply/18200&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Tue, 04 Oct 2011 22:52:17 +1300</pubDate>
			<dc:creator>stellalie</dc:creator>
			<guid>http://www.silverstripe.org/themes-2/show/18200</guid>
		</item>
		

	</channel>
</rss>
