hi again!
I am using the theme: jd-sky-3c, told to be widgetready. I installed the plugin: events-calendar and nothing happens.
When changing theme to default or wordpress it works.
There must be a little something on the wrong place or missing.
Got a clue?
...and Yes, Widget-tab is visable.
-
Sidebar.php code:
-
<div id="left-sidebar">
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Sidebar_1') ) : else : ?>
<div id="categories">
<h3><?php _e('Categories:'); ?></h3>
</div>
<div id="archives">
<h3><?php _e('Archives:'); ?></h3>
</div>
<?php endif; ?>
</div>
<div id="right-sidebar">
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Sidebar_2') ) : else : ?>
<div id="blogroll">
<h3>Blogroll</h3>
<?php get_links(-1, '
- ', '
', ' - '); ?>
</div>
<div id="meta">
<h3><?php _e('Meta:'); ?></h3>
</div>
<?php endif; ?>
</div>
-
Function.php code:
-
<?php
if ( function_exists('register_sidebar') ) {
register_sidebars(2, array(
'name' => 'Sidebar_%d',
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
}
?>