Hello! I've downloaded a theme and it has already a pre-made widget on it. The problem is these widgets are not visible on the widget setting on my admin cp and everytime I will add a new widget these pre-made widgets will automatically be remove. I wonder if is it possible to add a widget without my pre-made widget remove from the side or make my pre-made widget visible on my widget setting on my admin cp. Here's the code... <!-- begin sidebar --> <div id="sidebar"> <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(1) ) : else : ?> [B]PRE MADE WIDGETS HERE[/B] <!-- end sidebar --> Code (markup): I hope someone will fix this for me thanks!
You can include both of them by using <!-- begin sidebar --> <div id="sidebar"> PRE MADE WIDGETS HERE <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(1) ) ?> <!-- end sidebar --> PHP: