Viewing 12 replies - 1 through 12 (of 12 total)
  • Plugin Contributor Max Bond

    (@max-bond)

    Hi! Cannot check your site – Internal Server Error (

    Thread Starter sob1

    (@sob1)

    I’m sorry! It’s working now (I hope :D)
    🙂

    Plugin Contributor Max Bond

    (@max-bond)

    Hello!

    Try to disable “Auto fix widget id” option.

    Thread Starter sob1

    (@sob1)

    Fixed the font but after that Sticky Widget is not working 🙁

    Plugin Contributor Max Bond

    (@max-bond)

    Can you clear cache?
    I need to see the result of changes!

    Thread Starter sob1

    (@sob1)

    done.

    Plugin Contributor Max Bond

    (@max-bond)

    Well, now you need to find where is your register_sidebar() function located (begin searching in theme functions.php file).

    Once found, look at before_widget parameter, then post it here.
    I’ll give instructions how to change it!

    Thread Starter sob1

    (@sob1)

    This problem is related with custom sidebars plugin.
    http://wordpress.org/plugins/custom-sidebars/
    When it is disabled, everything works fine!

    functions.php
    function flytonic_widgets() {
    	// Sidebar 1
    	register_sidebar( array(
    		'name' => 'Sidebar 1',
    		'id' => 'sidebar1-widgets',
    		'description' =>  'Main Sidebar Area',
    		'before_widget' => '<div class="block">',
    		'after_widget' => '</div>',
    		'before_title' => '<h2>',
    		'after_title' => '</h2>',
    	) );
    
    	// Sidebar 2
    	register_sidebar( array(
    		'name' => 'Sidebar 2',
    		'id' => 'sidebar2-widgets',
    		'description' => 'Sidebar Area Two',
                    'before_widget' => '<div class="block">',
    		'after_widget' => '</div>',
    		'before_title' => '<h2>',
    		'after_title' => '</h2>',
    	) );
    
    	// Footer Widget 1
    	register_sidebar( array(
    		'name' => 'Footer Widget 1',
    		'id' => 'footer1-widgets',
    		'description' => 'Footer Widget Area 1',
                    'before_widget' => '',
    		'after_widget' => '',
    		'before_title' => '<h2>',
    		'after_title' => '</h2>',

    [Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    Plugin Contributor Max Bond

    (@max-bond)

    Sorry for the delay.

    Change Sidebar 1 and Sidebar 2 code like this:

    // Sidebar 1
    	register_sidebar( array(
    		'name' => 'Sidebar 1',
    		'id' => 'sidebar1-widgets',
    		'description' =>  'Main Sidebar Area',
    		'before_widget' => '<div id="%1$s" class="block">',
    		'after_widget' => '</div>',
    		'before_title' => '<h2>',
    		'after_title' => '</h2>',
    	) );
    
    	// Sidebar 2
    	register_sidebar( array(
    		'name' => 'Sidebar 2',
    		'id' => 'sidebar2-widgets',
    		'description' => 'Sidebar Area Two',
                    'before_widget' => '<div id="%1$s" class="block">',
    		'after_widget' => '</div>',
    		'before_title' => '<h2>',
    		'after_title' => '</h2>',
    	) );
    Plugin Contributor Max Bond

    (@max-bond)

    Note id="%1$s" in before_widget parameter!

    Thread Starter sob1

    (@sob1)

    Jippii, it works now!
    THANK YOU!
    😀

    Plugin Contributor Max Bond

    (@max-bond)

    Excellent! )

Viewing 12 replies - 1 through 12 (of 12 total)

The topic ‘Custom Sidebar Widget Title Font size changed’ is closed to new replies.