I am having trouble dragging and dropping widgets - it all works fine in the admin area but the widgets do not appear on my site.
I don't think mine is a plugin conflict issue, I think (but I'm probably wrong) that it may be an issue with the particular theme I am using - blogging pro v2 - because I can get the widgets to work with other themes.
The site I'm trying to build is at http://newzealandwineonline.com - the widgets I've tried to add are tag cloud and a text box.
Below is the side bar code from the theme - Please HELP!
<!-- Side Right - START -->
<div class="SR">
<div class="SRL">
<div class="syndicate">
<h3>Subscribe to Feed</h3>
">Entries (RSS)
">Comments (RSS)
</div>
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('SidebarLeft') ) : else : ?>
<div class="widget">
<h3>Categories</h3>
<?php wp_list_categories('show_count=1&title_li='); ?>
</div>
<div class="widget">
<h3>Archives</h3>
<?php wp_get_archives('type=monthly'); ?>
</div>
<div class="widget">
<h3>Links</h3>
<?php get_links('-1', '
', '
', '', FALSE, 'id', FALSE,
FALSE, -1, FALSE); ?>
</div>
<div class="widget">
<h3>Meta</h3>
<?php wp_register(); ?>
<?php wp_loginout(); ?>
Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>
<abbr title="XHTML Friends Network">XFN</abbr>
WordPress
<?php wp_meta(); ?>
</div>
<?php endif; ?>
</div>
<div class="SRR">
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('SidebarRight') ) : else : ?>
<div class="widget">
<h3>Calendar</h3>
<?php get_calendar(daylength); ?>
</div>
<?php endif; ?>
</div>
</div>
<!-- Side Right - END -->