Unruly widgets
-
The site I’m working on is https://www.quiltpuppy.com/dogblog , using 2.8.1. (Yes, I know, it’s dogblogging but will you help me anyway? ??
The theme seems to have hard-coded sidebar items. My understanding is that if I put a widget in using admin, these are supposed to go away. However, they do not go away. The widgets I add appear in addition to them.
Compounding the problem: I have the disappearing widget phenomenon. Appearance>widgets… dragging and dropping widgets to the sidebar, then there’s nothing in the sidebar area. Then sometimes there is. And sometimes they’re not the ones I put there most recently. Usually they do appear on the site though. Except…
Compounding the problem… the Links (also Linkslist) widget won’t appear on the site no matter how may times I drag it to the sidebar in admin.
This is in sidebar.php:
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar() ); ?>
And this is in functions.php:
<?php
if ( function_exists(‘register_sidebar’) )
register_sidebar(array(
‘name’ => ‘Left Sidebar’,
‘before_widget’ => ‘<div class=”menuheader”></div><div class=”menucontent”>’, // Removes- ‘after_widget’ => ‘</div><div class=”menufooter”></div>’, // Removes
‘before_title’ => ‘<h5>’,
‘after_title’ => ‘</h5>’,Any help?
Thank you so much!
- The topic ‘Unruly widgets’ is closed to new replies.