After I installed & activated this plugin, another plugin Social Counter [https://www.ads-software.com/plugins/accesspress-social-counter/] widget disappears from the widget section.
https://www.ads-software.com/plugins/accesspress-social-icons/
]]>Since this update the Widget is gone. I cant put it into my sidebar like before.
Do you habe a idea?
I try to make a shortcode with:
<?php if (function_exists(‘relevanssi_the_excerpt’)) { relevanssi_the_excerpt(); }; ?>
But this dont work too.
https://www.ads-software.com/plugins/relevanssi/
]]>https://www.ads-software.com/plugins/widget-logic/
]]>Does anyone know what the problem could be?
]]>if(function_exists('register_sidebar'))
register_sidebar(array(
'name' => 'Right Column',
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h2 class="widgettitle">',
'after_title' => '</h2>',
) );
register_sidebars(5,array(
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h4>',
'after_title' => '</h4>',
)
);
]]>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
‘before_title’ => ‘<h5>’,
‘after_title’ => ‘</h5>’,
Any help?
Thank you so much!
]]>