There have been a lot of people contacting me about the Custom Sidebars plugin, it has reached +20000 downloads already. Some of them have told me about a bug, others about some possible improvements… Thanks to you all, I will try to listen to everybody to make a useful plugin.
In case you don’t know what this plugin does, Custom Sidebars allows a WordPress administrator to create all the sidebars that he or she may need and assigns them to a post or page individually. It also permits you to assign custom sidebars to the home page, category archives, custom post types, author pages… Long story short, Custom Sidebars gives you the control over your site’s sidebars.
Download Custom Sidebars plugin
What’s new on version 0.8
- Category hierarchy is now handled properly, so if a post doesn’t have a defined sidebar, it uses the one that belongs to its deepest level category and if it can’t find a sidebar defined there, it will go up in the category hierarchy looking for it.
- Now you can set a sidebar for a custom post type post individually.
- The way that the plugin replaces sidebars has been improved, making the replacements really fast.
- There have been some improvements on the interface.
- Compatibility assured up to WP 3.2 beta 2.
Subscribe to javimarque
3-6-2011 at 6:57 am :
I think it’s a great plugin, unfortunately I have an issue with one site not displaying them which is really odd…
3-6-2011 at 8:35 am :
If it is working for you in every site but one, you probably are using a theme that don’t load dynamic sidebars properly or don’t use the wp_head() function in its header.
The plugin replace the sidebars inside that function, and many others plugins hook there, so it is more than recommended to use it.
http://josephscott.org/archives/2009/04/wordpress-theme-authors-dont-forget-the-wp_head-function/
20-7-2011 at 3:25 am :
Thanks so much for that comment. I was pulling my hair out trying to get the plugin to work! You saved my butt!
3-6-2011 at 10:49 am :
Cheers Marquex, this version fixed a issue I had with the plugin not altering the global category view of the sidebar, this was a showstopper for me which is now gone. My site will now be richer for being able to use this plugin. Your work is really appreciated. Thank you!
3-6-2011 at 1:38 pm :
My pleasure, my treasure.
3-6-2011 at 5:01 pm :
Pretty sweet. I would just like a way to mass edit posts to use a custom sidebar instead of setting each post sidebar one at a time.
8-6-2011 at 9:29 am :
Thanks Terrablood,
The easiest way to assign a sidebar to multiple posts is add the same category to all those posts, and set a sidebar up for that category.
I will think to add a bulk action for sidebars in the future anyway.
8-6-2011 at 8:20 am :
Hi marquex,
Looks like a fantastic plugin. I have a multi-author blog with about 20 writers (and growing.) I need to prevent authors from changing out the sidebars, and just automatically load a sidebar depending on post category. Is there a way to hide the sidebar option from them in their text editor? Thanks.
8-6-2011 at 9:51 am :
Hi JD,
Nice point there, I didn’t thought about the capabilities for the editor metabox.
If you want to hide the sidebar selection for your authors you will have to modify the plugin in your admin area:
Plugins >> Editor >> Custom Sidebars (Select)
Look for the following function in the code (line 383):
function addMetaBox(){
global $post;
$post_type = get_post_type($post);
if($post_type && !(array_search($post_type, $this->ignore_post_types))){
$post_type_object = get_post_type_object($post_type);
if($post_type_object->publicly_queryable)
add_meta_box('customsidebars-mb', 'Sidebars', array($this,'printMetabox'), $post_type, 'side');
}
}
and replace it for:
function addMetaBox(){
global $post;
$post_type = get_post_type($post);
if($post_type && !array_search($post_type, $this->ignore_post_types) && current_user_can($this->cap_required)){
$post_type_object = get_post_type_object($post_type);
if($post_type_object->publicly_queryable)
add_meta_box('customsidebars-mb', 'Sidebars', array($this,'printMetabox'), $post_type, 'side');
}
}
This will make the trick! I’ll fix it for the next version of the plugin.
About post categories, if you have ordered them in a hierarchy, the post will display the sidebar of the category in the deepest level. If you have 2 categories with their own sidebar in the same hierarchy level, the post will show the one of the first of them alphabetically. There was not a better criteria for choosing.
Just try to keep your categories tidy and you will have no problem about the sidebars.
8-6-2011 at 8:27 am :
Something else I just thought of – If I have it set up to swap out sidebars for different categories, what would happen if an author added several categories to a post and each category had a different sidebar?
8-6-2011 at 10:15 pm :
Thanks javimarque,
Thanks for the solution – it worked out just fine. Check your PayPal.
Having the sidebar swapped out based on hierarchy, and alphabetically, will work perfect for what I am doing. I also have a plugin that needs to be modified if you are interested. Send me an email and I’ll tell you about it.
14-6-2011 at 4:29 pm :
Hi,
Thank you for offering your plugin, but I have run into a big issue while testing your plug-in on my site. After de-activating the plug-in, I lost the ability to edit my widgets through drag and drop on the widgets page. I have tried de-installing and re-installing the plug-in, but my widgets are now “broken”. Do you know why this is the case and how I can fix it?
Many thanks,
Francesca
14-6-2011 at 4:50 pm :
Sorry to bother you! I just realized it was a different plug-in that caused a problem with the widgets, not yours. I am sorry for not looking more carefully before I posted my earlier comment!
14-6-2011 at 10:12 pm :
22-5-2012 at 12:25 pm :
This problem will happen if the jquery version used is below 1.7.
The reason is that this plugin uses “.on()” jquery function that was added in jquery 1.7. This will make the widget page freeze as well as the default option for this plugin.
22-5-2012 at 8:08 pm :
That’s why you should use custom sidebars 0.8.2 if you are using an older version of jQuery.
http://wordpress.org/extend/plugins/custom-sidebars/developers/
Since Custom Sidebars 1.0 you need to use WordPress 3.3, at least, that comes with jQuery 1.7.
15-6-2011 at 5:26 am :
How do you not have a side bar on a paticular page, is there a way to do that?
15-6-2011 at 7:35 am :
Having a sidebar in a page is your theme’s task. You need a theme that have a sidebar for the pages, and custom sidebars will allow you to replace that sidebar for the one you like.
16-6-2011 at 1:19 am :
Hi Javi,
Thank you for your wonderful work!
In addition to adding the sidebar through the plugin’s default sidebar and per/page selector options, I would like to call one of my new custom sidebars in the theme files. I’d like to set options for my archive pages based on a taxonomy system I built with a different plugin.
Do you know how I can determine how to call the sidebar?
This is the typical call:
I’ve tried:
and
where newsidebar is the name I gave to the sidebar, but I haven’t gotten it yet.
Thanks so much for any tips!
Clementina
16-6-2011 at 1:26 am :
Let me try to ask again
This is the typical call:
I’ve tried:
and
where newsidebar is the name I gave to the sidebar, but I haven’t gotten it yet.
Thanks so much!
16-6-2011 at 7:24 am :
Hi Clementina,
It seems that blog comments dont like you code, anyway, if you have a custom taxonomy system you won’t be able to set custom sidebars based on it. It is really difficult to handle sidebars for custom taxonomies, and I think not so many people will use it so custom sidebars will never have that feature.
But I have planed an extra plugin to handle the taxonomies, it has no release date, but you will get it in the future.
Use the contact form at the bottom of the page to send me your code, I think it won’t strip what you write out.
17-6-2011 at 4:22 pm :
If you continue to have problems showing code in a comment add the keyboard `tick` symbol around the code. It may help show it.
“
Although, it may not….
17-6-2011 at 4:24 pm :
I tried showing some code and it doesn’t work so never mind…just delete these comments
21-6-2011 at 12:48 am :
hi,
I’ve been trying to implement custom sidebars into my store pages and it doesn’t seem to work. Ever since updating to WPeC 3.8, my template files are acting a bit crazy.
My top priority is to assign a custom sidebar to the single product page. Right now, my product description overlaps my sidebar. I tried to active a custom sidebar with only a shopping cart, but the changes aren’t taking effect.
Do I need to change anything in my template files to make this plugin work?
Thank you! I look forward to putting custom sidebars to use.
-Alex
21-6-2011 at 12:49 am :
btw, here is an example of a single product page…
http://onelovefc.com/content/products/men/onelove-cranberry/
thank you!
21-6-2011 at 1:29 pm :
Hi alex,
In the product page you sent me I can see there is a style rule in http://onelovefc.com/content/index.php?wpsc_user_dynamic_css=true&category&ver=3.8.4.391083 that is making the content width wider than the column itself, so that’s why the overlapping.
About not working custom sidebars, are they working for other posts but not for WPEC products? Maybe the new version of that plugin templates are not loading the sidebars properly. They should use the function
dynamic_sidebar. If they are not working at all, maybe your theme is not calling the actionwp_head in your html header.http://marquex.es/541/custom-sidebars-plugin-v0-8#comment-56
5-7-2011 at 4:36 am :
Why can’t I see custom sidebar option on my pages after update? Not in screen options either? Help please.
Thanks
5-7-2011 at 7:15 am :
Ey ed, could you be some specific? What did you update? What version did you come from? What WP version are u using? What is your theme?
5-7-2011 at 9:29 am :
Thanks for a great plugin! After updating to WordPress 3.2 this morning, the custom sidebar inside my pages have disappeared! I see my sidebars when looking at my website, but I do not see the option to chose a specific sidebar when editing pages.
For example, at the page: http://www.uaservice.se/produkter-2/kosystem which I wrote this morning, I don’t even get the option to chose a custom sidebar. It seems as if the option itself has disappeared, though I see the plugin in the plugin list and the sidebar shows on my other pages.
I am using the elegant theme TheCorporation.
Thank you for quick assistance!!
5-7-2011 at 11:08 am :
Since updating to WP 3.2 the Sidebar Menu is missing on backend of the pages sites. It doesn’t take any effect to the custom sidebars I have already installed, though, I can’t create any new sidebars for my pages.
Any ideas how to solve this problem? I’d highly appreciate any help!
Thank You!
Rob
5-7-2011 at 11:26 am :
Ok, message received. It seems that something may be broken with the new version of WP.. I will try to fix it as soon as possible.
5-7-2011 at 11:37 am :
Javimarque, the main problem is that your sidebar menu doesn’t appear at the backend of the pages or posts site anymore. So there is no chance to choose any of the custom sidebars which I have already created.
I hope this specifies the problem a little bit more.
Thank you very much for being so kind and trying to immediately find a solution for this! Thanks!
))
5-7-2011 at 3:54 pm :
… I’m having this same problem: just updated WordPress and now I can’t change or select the custom sidebars I want to display when I create or edit a page. Any progress investigating a fix for this bug, or advice on how to get around the issue? Thanks very much!
5-7-2011 at 5:10 pm :
Ey guys, I’ve just uploaded a new version of the plugin to the wordpress repo. In my case I only had problems with the sidebar selection in pages. I could fix it easily, so you can download the new version in few moments.
http://wordpress.org/extend/plugins/custom-sidebars
If it works nicely, consider a donation. If you don’t believe in donations, consider voting 5 stars!
5-7-2011 at 6:35 pm :
Javimarque, thank you so very much for fixing the problem! Great job! Again, Thank you!!!
12-7-2011 at 2:25 pm :
Has anyone else had issues with this plugin on WordPress 3.2? For me, all the stuff in the backend shows up and seems to work properly, but the sidebar just isn’t replaced in the frontend.
The right sidebar area is selected for substitution; I’ve made a custom sidebar; and selected that sidebar on the appropriate page. And the regular sidebar still shows up on every page.
I’ve tried it with the regular twenty eleven and twenty ten themes and still nothing. Is there a way I can get some debug information for you?
12-7-2011 at 4:24 pm :
Never mind. I got it working somehow. I have no idea what I did: the very worst kind of problem fix.
13-7-2011 at 9:13 pm :
I love the problems that get fixed by themselves
13-7-2011 at 9:05 pm :
hi and thnx for fixing this prob. its so nice!
18-7-2011 at 10:30 pm :
The best plugin ever! I bought an expensive suite of themes that had a bug the programmers could not fix and your plugin did the trick! Works with WP 3.2.1 perfectly. Thanks a million! Can’t find your donation link or you would be drinking coffees on my account for the rest of the week!
19-7-2011 at 8:28 am :
Thanks Promitheas,
I have some ideas to keep improving the plugin, so stay upgraded.
I appreciate so much your kind words and the donation!
4-8-2011 at 2:59 pm :
I have installed v. 0.8.1 of custom sidebar and my webpage appears error “Warning: usort() [function.usort]: Array was modified by the user comparison function in /data/www/www_studio32_cz/promikro_org/wp-content/plugins/custom-sidebars/customsidebars.php on line 866
“. What is wrong? Thank you.
13-8-2011 at 12:04 pm :
It seems that you have an old version of php in your server. I take note, and I will try to support it for the next version of the plugin. Anyway try to turn off your php warnings, it’s the easiest fix.
5-8-2011 at 4:12 pm :
Hey,
I successfully used your plugin on one site, using WP 3.2.0, but now on another site, using WP 3.2.1, despite having sidebars created, with widgets in, there is no option to select a new sidebar.
I have no idea why. Any ideas?
Thanks
13-8-2011 at 12:07 pm :
Have you tried to update the plugin to v0.8.1 ?
8-8-2011 at 4:45 pm :
First of all I would like to say what an awesome plugin.
One feature that I would like to see though and don’t know if you would consider it in a future update is the ability to only show the sidebars that can be replaced for that individual page (or template). Much like the advanced custom field plugin by Elliot Condon. On that plugin you can create custom fields specifically for a page/page type/templates etc.
At the minute I have the option to replace a sidebar on a page that doesn’t even have a sidebar for example. I am purely suggesting this as I hand a lot of my websites over to clients and try to make them as user friendly as possible.
I hope it may be something you consider.
13-8-2011 at 12:13 pm :
Hi Duncan!
You are right, now all the replaceable bars are shown in the page edition, even if the page uses a template that doesn’t have sidebars. The problem is that the plugin only has access to know what sidebars are registered and what are replaceable. The only nice solution I can imagine for making it easier to your users is using some hidden custom field where the admin could tell which bars are not suitable for replacement in that page.
Maybe for the next version if people want it.
9-8-2011 at 5:27 pm :
Hi,
I have absolutely loved this plugin up until this very moment. I have moved my site from localhosted to its actual domain site. The plugin is still activated, but some of the sidebars are gone, and in all of them, all the information is gone!
Any idea what’s happened?
13-8-2011 at 12:18 pm :
Hi Therese,
Have you migrated the whole database? Migrating the database would make the trick, but you have to migrate it complete, otherwise I can’t asure you the things will be ok. One of the milestone for the plugin is adding export-import sidebars functionality. It’s hard stuff though….
2-4-2013 at 10:20 pm :
Hi. I’m having to rebuild a client’s site on my servers as her previous designer/developer has “disappeared”. I need to export their sidebars but don’t see where I can do that. I saw back in 2011 that the functionality would be integrated. So, where is it???
5-4-2013 at 9:49 am :
Hi Kelley,
The sidebars exporting is really difficult, because to be usable you need to have the same widgets and create (and delete) them in the same order than the original to make it work. The sidebars just store references to the widgets id.
That is the reason why there is no exportable sidebar in wordpress. Only a complete database export and plugin installation would make the job done.
3-10-2011 at 8:33 pm :
Hi, I’m using version 0.8.1 on a Photocrati theme and the custom sidebars only work on pages other than the one set as the default posts page. In this case the page called “blog” shows the default sidebar even though I’ve set a custom one to show. As soon as I go into settings>reading and change the default posts page to something different, the “blog” page custom sidebar shows up fine and the new posts page goes back to a default sidebar. Any idea why this might be happening?
Thanks!
8-10-2011 at 5:27 pm :
The blog sidebar is always working for the page that is set in the settings>reading. If your main page is the blog page, maybe there is some other sidebar set up for it. I have a great rule: as less sidebars as possible, so the default sidebar is really important to me and I use it as much as I can. For the main page I use the default sb and configure others.
2-12-2011 at 4:03 pm :
Thank you very much for the wonderful plug-in!!
I’ve read in your comments that the “blog” sidebar is set as the same sidebar for your main page. Is there any way to target the blog page with a specific sidebar that is different from the main page?
2-12-2011 at 4:49 pm :
Of course,
Go to Appearance > Custom Sidebars > Default Sidebars > Default sidebars for pages
There you can config your sidebar for the blog page.
8-10-2011 at 11:31 am :
pealse reply me for texonomy sidebar its not working for taxonomy page
8-10-2011 at 5:21 pm :
For custom taxonomies is not working by the moment, it’s hard to build an interface
9-10-2011 at 9:55 am :
Hi,
Just want to say what a great plugin this is. However, I’ve come across a bit of a snag which affects the layout of my site.
It seems using Custom Sidebars on my theme causes the Single Post page not to line up correctly, and additions like Outbrain, Disqus and other added material (such as a Google Adsense block) aren’t loaded until the sidebar has rendered and line up with the bottom of the bar.
You can see here: http://brianhealy.net/2010/06/west-lothian-union-canal-walk-june-2010/ what I mean….
Any idea how to fix this? I’m not sure where to start looking tbh.
Thanks,
Brian
14-10-2011 at 10:06 pm :
All the plugins you have installed use javascript to load themselves once the page body is loaded. Custom sidebars just load before the HTML is generated so i’m sure it is not the problem. I would bet that a widget inside the sidebar is the one which is making your site load slowly.
Cheers
14-10-2011 at 8:53 pm :
Hi, I’m using version 0.8.1. It’s so nice plugins. I love it.
My theme has 3 columns and 2 sidebars.
But Custom Sidebars can set the only primary widget area in a post or page.
I’d like to set the primary widget area and secondary widget area at the same time what can I do?
Thank you
14-10-2011 at 9:50 pm :
I’m sorry. I Could.
I selected the boxes multiple and ‘Save changes’.
Then metabox displays the primary and secondary boxes.
That’s a wonderful plugins, awesome!
Thank you
21-10-2011 at 8:41 pm :
Javier…
Need help big time!! We’ve been using WP 3.2 along with the previous version of Custom Sidebars for quite some time with no problems. Everything has worked great. We have about 15 custom sidebars which we use on various pages of the site.
Today I tried to add an additional custom sidebar. I could create the sidebar and add widgets. However the widgets would not remain (yes I did save). I disabled all plugins to troubleshoot – no help. Disabled Custom Sidebars and started again. No help. I upgraded to 8.1 with the same results, however the contents of all sidebars were removed, and cannot be replaced. The sidebars still show on the Widget page. I cannot modify the standard sidebar either. I have a site that is badly broken and a very unhappy client (me too). I don’t think your plugin is the issue, but don’t know where to start. IDEAS????
Anything is greatly appreciated.
21-10-2011 at 9:34 pm :
It looks like something has change the way your wordpress saves the sidebars. Have you installed some other plugin recently?? The upgrade of the plugin shouldn’t remove the content of the sidebars.
21-10-2011 at 10:46 pm :
4 plugins have been added since I last altered sidebars (not by me, but by site owner). ClickTale Plugin, Exec-PHP and 2 custom plug-ins, Custom Dealer Search and Custom Dealer Search Page (these allow visitors to find Dealers of this business – does a search by ZIP codes). I’ve been looking all over for a solution, but no luck. Is it possible the theme is the problem? It is a custom theme created about 2 years ago.
Thanks.
29-10-2011 at 5:04 pm :
Hi, do you know whether your custom sidebar plugin will work with WPML?
I would really like to use it if possible.
Thanks
1-11-2011 at 10:02 pm :
I’m trying to add a custom sidebar to a category. but only works on posts..
example: http://www.mywebsite.com/category/news/
i need the custom sidebar on the root of the category page. can u help
16-11-2011 at 4:16 pm :
U can get that going to Appearance >> Custom Sidebars >> Default Sidebars >> Default sidebars for pages >> Post Category list
There you can change the category archive sidebar.
2-11-2011 at 3:21 am :
[...] use this feature, you must first make sure the plug in Custom Sidebars by Javier Marquez is [...]
7-11-2011 at 4:56 pm :
Just curious if anyone else had this issue…I don’t know that it’s related to Custom Sidebar plugin functionality or not.
I have a site with lots of Categories…only one of them doesn’t show up in the Custom Sidebars -> Default Sidebars “By category” list.
I can’t determine anything out of the ordinary, other than this particular category is the number 1 indexed category in WP’s database (term_id = 1 in wp_terms table).
Would this make a difference to Custom Sidebar?
14-2-2012 at 4:52 pm :
I did have this issue as well. Creating a new “default category” and moving my (thankfully small # of) child categories under it enabled the selection option defined above.
14-2-2012 at 5:42 pm :
I got to chek that for the next version, thanks for the feedback.
14-11-2011 at 3:34 pm :
Hi
Can someone help configure this (great) plugin? I’m trying to add a Class to each new custom sidebar. I understand the Before-Widget, but everything I add in this area doesn’t work.
Anyone show me an example please?
Thanks
14-11-2011 at 6:18 pm :
Pardon this elementary question: I am not a coder or developer. I’ve installed your plugin and activated it for the site and specific pages. Now how and where do I get content into the new sidebar? Your explanations don’t explain that.
16-11-2011 at 4:09 pm :
In the widgets section of your wp admin area. You can download widgets or use those wich come with wp
15-11-2011 at 6:32 pm :
To explain more clearly, I see the new custom sidebars in my widgets area, below the default sidebar. But unlike the down arrow in the default sidebar, the custom sidebar arrow does not open up a blank area in which to write. Rather, it shows the text of the description I’ve used when creating the custom sidebar. And does not permit me to replace that text or add to it. Hope this helps.
16-11-2011 at 4:12 pm :
There are some cases where the custom sidebars are not working nice in the interface of wordpress. One of them is when you name your sidebar as other part of the wordpress interface. If your sidebar is called footer, when you drag a widget to that sidebar, the wp interface thinks that footer is the footer of the admin area, so it tries to add the widget there instead in the sb. Use a different name for it and I’m sure it solves your prob
16-11-2011 at 9:43 pm :
[...] Auf der Suche nach der Lösung stolperte ich über diese Seite Neu in WordPress 3.1: Formatvorlage, fand aber dort nicht das Richtige. Auf gut Glück habe ich dann das Schlüsselwort “Sidebar” in das Suchfeld bei Plugins installieren eingegeben und dort fand ich genau das Plugin,das ich gesucht habe: Custom Sidebars. [...]
30-12-2011 at 2:51 am :
I’ve been looking for somewhere to post a question about your plugin and am not finding it. I’ll ask you here for now, but if you’d like to post a link to where you want questions to go that would be great.
First of all, great plugin. I’m using the Thesis framework and it’s been working great on the pages. My problem is to get it to work on posts. I feel like I’m missing something obvious, but nothing is happening on the posts. Like I said, the pages are doing great. Works like a charm on them. Any ideas on what I’m missing? Thanks.
30-12-2011 at 5:27 pm :
Check that the blog post are loading the sidebars with the function dynamic_sidebar(). If so, you should configure a default sidebars for all posts in Appearance >> Custom Sidebars >> Default Sidebars >> For Posts >> By Post Types >> Posts
30-12-2011 at 11:53 am :
Awesome plugin. Thank you.
Is it possible to add some css class or ID for the sidebars so it would be easy if anyone want to style the sidebars uniquely.
Bage.
30-12-2011 at 5:15 pm :
Nice comment. I have never thought about it, because the sidebar is supposed to be the one of the theme, and it inherits the theme style. But I think that adding a class doesn’t harm anyone, so I will try to include it in the next update.
31-12-2011 at 12:16 am :
Awesome. Thank you, that worked. Posts are loading just fine now.
10-1-2012 at 5:18 pm :
Hi,
Having some issues on one site where the sidebars are not working.
There are no problems in updating it on WordPress 3.3.1 as it works fine on one site. However, its not working on another.
Both sites are widget enabled, both are running WordPress 3.3.1. On the site it doesn’t work, there’s no option to select the sidebars on the drop drown on the page editor. That’s the only problem. Everything else is fine.
Any ideas on what could be wrong?
Thanks.
12-1-2012 at 11:00 am :
Hi there.
Great plugin…but……
It appears that only an Admin can choose to add a sidebar.
I have two Editors who require this function when creating posts. Although the option to choose a sidebar appears in the post editor, and they can tag one, it doesn’t display the sidebar. When I check the post the sidebar option is unchecked.
Have you noticed this?
Please feel free to mail me for comprehensive details.
Many thanks
7-2-2012 at 4:03 pm :
Any user that can switch themes, can create sidebars. Switch_themes is the capability needed to manage widgets, so if you can’t edit widgets you can’t create custom sidebars.
There are some plugins to give capabilities to the roles, so you can make your author be able to create the sidebars.
16-1-2012 at 12:25 pm :
Great plugin but having an issue.
Appears that ONLY admin can choose to associate a sidebar with a post.
I have editors that need to do this.
Am i missing something?
Thanks
Pat
16-1-2012 at 7:51 pm :
Very pleased with this plugin, thanks for your work. I’m encountering one problem. The custom sidebars are set properly for pages and post types, but are not following to a child page that uses a custom page template.
Is there some way to call a specific custom sidebar within the template?
“ does not work.
22-1-2012 at 2:50 pm :
Congrats for this very useful piece of work.
Is page hierarchy handled, if not, is it a planned feature (as the bulk action seems to be)?
What I would want to achieve is automatically getting the same custom sidebar as the parent page for the child pages, except for a few specific child pages which would have their own custom sidebar assigned.
Can it be currently done, am I doing something wrong?
7-2-2012 at 3:47 pm :
Page hierarchy for the next release, I promise!
3-2-2012 at 2:03 pm :
Hello,
I am happy to have found a way to customize my sidebars. It needs some problem solving though. My customized side bar for my home page shows in Chrome and Firefox, but not in IE8. Any ideas what to do to make it work? Theme: Twenty ten 2.1 – wordpress 3.3.
I also have two website with DIY themes. Any idea if the plugin works in DIY?
Thanks in advance
7-2-2012 at 11:23 am :
Problem solved. I added Widget Entries and that seemed to do the trick. My custom sidebar is now also visible in IE. I tried it out in the DIY theme, and the first results are positive. Thanks for this great plugin.
Laurien
21-2-2012 at 11:55 pm :
[...] Layout, enduring av systemfunksjon Custom Sidebars er en GE-NI-AL plugin som brukes hele tiden. Med denne kan du lage nye sidebars, selv om temaet du bruker bare har én eller to, kan du nå legge til egne sidebars. Jeg pleier å putte forskjellige Widges i ulike sidebars, og velge hvilken sidebar jeg skal bruke avhengig av hvilket innhold jeg viser på siden. Utrolg bra sak! Innstikkets hjemmeside [...]
26-2-2012 at 11:27 pm :
[...] de personalizar rápido y con una interfaz intuitiva las plantillas de WordPress, es usando el plugin customizable sidebars, desarrollado por Marquex (gracias Javi). Hay que tener cuidado con el tema instalado, si no [...]
5-3-2012 at 11:39 pm :
[...] WordPressのPlugin「Custom sidebars」の概要を書きます。 このPluginは各固定ページに別々のメニューを表示させたい時に使います。 [...]
7-3-2012 at 1:42 pm :
Great plug-in. I spent my entire evening figure out my theme sidebar.php. After installed your plug-in, it just simple as abc by dragging the widget to accomplished my goal. Appreciated that. Many thanks!!!
7-3-2012 at 3:54 pm :
Thanks Kohwai, if sometime I go to Singapore will contact you to know the best places!!
15-3-2012 at 4:48 am :
Hi Javi!
I am having a problem that it’s just making me crazy. The Custom Sidebars plugin was working as a charm on my website until I changed to a new server. I have the exact replica of the older server in the new one and everything works exactly the same but not the Custom Sidebar.
I have deleted and reinstalled it making sure there is no mention of it in the database before the reinstall to make sure it will be a clean installation but there is no way to make it work.
I can create sidebars, add widgets to it, but at the moment of adding it to a page I don’t have the option at all, no matter what kind of page template I use.
I would really appreciate any help you can give me. It’s imperative for my company to have different sidebars on different pages.
By the way… my theme is compatible with your plugin 100%
Thanks in advance,
Jo
21-3-2012 at 2:12 am :
Are you using the last version of the plugin? After wordpress 3.2 you need Custom Sidebars v0.8.1 to use your sidebars in the pages.
9-6-2012 at 12:52 am :
Hey Georgette,Do you have a link to the site so I can take a look?If you don’t want to post it here please feel free to mail me.I have idnieifetd a weakness in the CSS which I have fixed in an upcoming 0.0.11 release but if I could confirm that this also works for you that would be aces.Ta,Todd
15-3-2012 at 8:05 pm :
Thanks for the plugin. How can I reorder newly created sidebars in the admin panel? Suppose I created both left and right sidebars for category A, but I also created some other sidebar inbetween and now the sidebars for category A are not displayed beside each other. And I would like to see them as immediate neighbours in my admin panel.
21-3-2012 at 2:07 am :
Sorry, it takes too much effort to reorder the sidebars. Wait for the next version and you will find a new interface to handle the sidebars much better.
20-3-2012 at 6:59 pm :
After reading through the comments, I see that custom taxonomies can be complicated, is there any way to call the sidebar by an id with get_sidebar or any other suggestions to use this with a template for a custom taxonomy?
21-3-2012 at 2:06 am :
Yes Scott, you can call any new sidebar created by the plugin using the wordpress function ‘dynamic_sidebar(id)’. The easiest way of knowing the sidebar id is going to the admin area and Appearance>Custom sidebars. There click on edit the sidebar you want to know the id and in the edit page you get the id under the tabs
4-9-2012 at 7:29 pm :
Hi Javimarquee, I’m trying to call my sidebar in my template using the template tag mentioned, .. But when I check for the sidebar id I get a name instead of a number; like ‘id=cs-home-one’; whereas the sidebar is called home-one. If I create a sidebar with a number rather than a name, I still get the same: ‘id-cs-1′ And this causes a 500 error to my page.
Any help? Thanks!
4-9-2012 at 9:18 pm :
Hi Eugene, then ,in your template you need tu use the dynamic_sidebar(‘cs-home-one’) function, remember to wrap it in php tags! The cs- prefix is mandatory to not mess up with others page ids that could be in some themes.
26-9-2012 at 6:57 am :
Hi – great plugin! I am having an issue though, and am wondering if you might have any pointers. I am using the Mega Menu plugin in place of the main menu on a site, and it works beautifully. Your plugin also works beautifully. However, they don’t play well together. When I add a new custom sidebar, it shows up and works perfectly, but the mega menu disappears completely.
Mega Menu is javascript based and is contained in a sidebar. I have made sure that the mega menu sidebar is *not* one of the “replaceable” sidebars. Any idea if this might be a javascript conflict?
Thank you!
23-10-2012 at 11:40 am :
Thanks for the feedback. I will check it for the next version.
3-10-2012 at 7:48 am :
Hi there,
I have changed the sidebar of archive posts to one of the widgets in a sidebar named sidebar1. Some default sidebars of other pages are updating except for the archived posts. How can I fix this issue? thanks
23-10-2012 at 11:38 am :
I will check it….