17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1158 Views |
-
admin: blog has twice the number of widgets.

8 November 2008 at 8:50am
In the blog i see the widgets double.
I used the documentation of silverstripe to add widgets to all the normal pages, but now it's double for the blog page because it's already in their.
How can i solve this? Where in the blog can i take this out?
-
Re: admin: blog has twice the number of widgets.

8 November 2008 at 8:51am
In the admin section i mean
-
Re: admin: blog has twice the number of widgets.

11 November 2008 at 12:09am Last edited: 11 November 2008 12:11am
Hi,
to remove the duplicate widgets in your blog you have to edit blog/code/BlogHolder.php like this:
If you currently have a blog installed, the widget fields are going to double up on those pages (as the blog extends the Page class). One way to fix this is to comment out line 30 in BlogHolder.php and remove the DB entry by running a /db/build.
<?php
class BlogHolder extends Page {
........
static $has_one = array(
// "SideBar" => "WidgetArea", COMMENT OUT
'Newsletter' => 'NewsletterType'
.......
function getCMSFields() {
$fields = parent::getCMSFields();
$fields->removeFieldFromTab("Root.Content.Main","Content");
// $fields->addFieldToTab("Root.Content.Widgets", new WidgetAreaEditor("SideBar")); COMMENT OUT........
(taken from here: SSWidgetsDoku )
Cheers!
-
Re: admin: blog has twice the number of widgets.

11 November 2008 at 11:47am
Thnx maybe i should have read better :$
| 1158 Views | ||
|
Page:
1
|
Go to Top |


