Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
I registered sidebars
function me_widgets_init() { register_sidebar( array( 'name' => 'Events Page Sidebar', 'id' => 'eventspage_sidebar', 'before_widget' => '', 'after_widget' => '', 'before_title' => '<h1 class="widget-title">', 'after_title' => '</h1>', ) ); register_sidebar( array( 'name' => 'Events Page Footer', 'id' => 'eventspagefoot_sidebar', 'before_widget' => '', 'after_widget' => '', 'before_title' => '<h1 class="widget-title">', 'after_title' => '</h1>', ) ); } add_action( 'widgets_init', 'me_widgets_init' );
But when I go to the page, the sidebar LOOKS different than other pages.
I’m guessing that I need to put something here:
'before_widget' => '', 'after_widget' => '',
I notice inspecting the source that all other pages using the normal sidebar have
<aside id=
But I’m not sure how to dynamically do this when registering a sidebar in FOCUS PRO.
Can you explain to me how to MANUALLY register 2 new sidebars for FOCUS PRO (a sidebar and a footer widget area)
URL: http://localhost
Hi Brix
If you check the parent theme’s functions.php file you’ll see the original widget areas being created. I’m pasting them below. Use the arguments you need and add them to your widget areas:
Hope that helps.