Haniel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help! Widgets don’t work!!!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>
<?php wp_list_cats(‘sort_column=name&optioncount=1&feed=rss’); ?>
</div>
<div id=”archives”>
<h3><?php _e(‘Archives:’); ?></h3>
<?php wp_get_archives(‘type=monthly&show_post_count=1’); ?>
</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>
- <?php wp_loginout(); ?>
- John Doe Blog
- XFN
- “>WP
<?php wp_register(); ?>
<?php wp_meta(); ?>
</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>’,
));}
?>
Forum: Fixing WordPress
In reply to: Help! Widgets don’t work!!!Hi! I can see that you fixed it on your site. I have the same problem… How do I resolve it?
Thanx!
O.