• Resolved Krissy

    (@krissy)


    Running the most recent versions of this script and WP is causing a weird error that I’m unsure how to fix.

    The formatting (preset in functions.php) for the sidebar are not carrying over to the Custom Sidebars, it also removed the formatting for the default sidebar preset in WordPress.

    I do remember utilizing this script on another site where there were no issues for the formatting to carry over – and even copying the information directly (only having this function listed in the functions.php file to ensure nothing else was interfering) it’s still showing the lack of formatting.

    Is this a common occurrence?

    if ( function_exists('register_sidebar') )
    	register_sidebar(array(
    		'before_widget' => '<div class=widget_text>',
    		'after_widget' => '</div>',
    		'before_title' => '<span class=widget_title>',
    		'after_title' => '</span>',
    	));

    http://wordpress.org/extend/plugins/custom-sidebars/

Viewing 6 replies - 1 through 6 (of 6 total)
  • I have a remotely similar question and I actually might be able to answer you question with an answer to mine.

    I’m using a buddypress theme and no sidebar (widget area) had been allocated for the Registration page by the theme author.

    Will this plugin allow me to actually create a sidebar area and add widgets there? Say that my theme doesn’t even have a sidebar on that page to start off with… or, will I have to edit the code for that page to create a sidebar and then, use this plugin to add widgets there?

    Please respond as soon as possible.

    Suppose you are using 2012 template. I use the code below:

    register_sidebar( array(
    'name' => __( 'Third Front Page Widget Area', 'restaurant' ),
    'id' => 'sidebar-4',
    'description' => __( 'Appears when using the optional Front Page template with a page set as Static Front Page', 'restaurant' ),
    'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    'after_widget' => '</aside>',
    'before_title' => '<h3 class="widget-title">',
    'after_title' => '</h3>',
    ) );

    If your questions are about CSS, please use firebug in Firefox. For example (#myid #mywidget #mytext) have more weight than (#mywidget #mytext) or (#myid #mytext), CSS structure are different between 2012 and 2011.

    Wait… so for buddypress, how would I be able to get a sidebar onto the registration page? Would I have to edit my theme’s register.php, or would this plugin allow me to add a sidebar to that page?

    Jack K

    (@jack-kitterhing)

    Hi All,

    @krissy, are you still having issues with this?

    @therandomguy12345 You’d have to edit your themes register.php and use code similar to that, that @designpromote posted.

    Thanks!

    Kind Regards
    Jack.

    Thread Starter Krissy

    (@krissy)

    No, I figured it out the following day…

    Mike

    (@michael-copestake)

    That’s great, thanks for letting us know and for marking this as resolved!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Sidebar CSS Formatting’ is closed to new replies.