Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter domsdey

    (@domsdey)

    Hi
    I wanted to say I modified
    <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?>
    to
    <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(0) ) : ?>
    So what should I do?

    Thread Starter domsdey

    (@domsdey)

    Damn shit fuck.
    Both sidebars are in one file, sidebar.php
    I found that in it:
    <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?>
    So I changed it to:
    <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?> but no effect.
    that’s functions.php:

    <?php
    
    if ( function_exists('register_sidebar') )
    
        register_sidebar(array(
    
        	'name' => 'Sidebar Left',
    
            'before_widget' => '',
    
            'after_widget' => '',
    
            'before_title' => '<h3>',
    
            'after_title' => '</h3>',
    
        ));
    
        register_sidebar(array(
    
        	'name' => 'Sidebar Right',
    
            'before_widget' => '',
    
            'after_widget' => '',
    
            'before_title' => '<h3>',
    
            'after_title' => '</h3>',
    
        ));
    
    ?>

    I modified it to:

    <?php
    
    if ( function_exists('register_sidebar') )
    
        register_sidebar(array(
    
        	'name' => 'Sidebar Left',
    
            'before_widget' => '',
    
            'after_widget' => '',
    
            'before_title' => '<h3>',
    
            'after_title' => '</h3>',
    
        ));
    
    ?>

    But still no effect…
    Any other ideas?

    Thread Starter domsdey

    (@domsdey)

    Uhm… THe field for posts should be larger?

    Thread Starter domsdey

    (@domsdey)

    Can’t anyone help?

    Thread Starter domsdey

    (@domsdey)

    Thank you for the reply :).
    It was from style.css
    I can’t believe I hadn’t thought of that, eh… 😛
    Best wishes,
    Valentin

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