Hey dudes. Sheez, what's with all the threads on CMS lately? lol
Anyway, I need help with a site that I swiftly set up for someone on Wordpress.
The theme is widget ready which allows me to add stuff to the sidebars. Now, I managed to customize the left hand sidebar but the right sidebar still contains the default wordpress content. I can't seem to remove it even when I go to Appearance > widgets. It shows me the two registered sidebars, but the right hand one is blank while the left hand one obvoisly contains the "pages" widget as you can see on the site.
This is the coding for sidebar.php:
And this is what functions.php looks like:
Am I missing something? :wtf: Why can't I get rid of Categories and Blogroll sections in the right hand side?
Thanks in advance!
Anyway, I need help with a site that I swiftly set up for someone on Wordpress.
The theme is widget ready which allows me to add stuff to the sidebars. Now, I managed to customize the left hand sidebar but the right sidebar still contains the default wordpress content. I can't seem to remove it even when I go to Appearance > widgets. It shows me the two registered sidebars, but the right hand one is blank while the left hand one obvoisly contains the "pages" widget as you can see on the site.
This is the coding for sidebar.php:
Code:
<!-- Sidebar -->
<div class="sidebar">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?>
<?php endif; ?>
</div>
<!-- Sidebar -->
And this is what functions.php looks like:
Code:
<?php
if ( function_exists('register_sidebar') )
register_sidebar(array(
'name' => 'Sidebar Left',
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
register_sidebar(array(
'name' => 'Sidebar Right',
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
?>
Am I missing something? :wtf: Why can't I get rid of Categories and Blogroll sections in the right hand side?
Thanks in advance!