Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter apaniagua

    (@apaniagua)

    On the “Main index template” or index.php the part of the code that it’s suppose to show the older articles is this:

    <div class="fix"></div>
                        </div><!-- /.post -->
    
                        <div class="post-bottom">
                            <div class="fl"><span class="cat"><?php the_category(', ') ?></span></div>
                            <div class="fr"><?php the_tags('<span class="tags">', ', ', '</span>'); ?></div>
                            <div class="fix"></div>
                        </div>
                    </div><!-- /.box -->
    
    			<?php endwhile; else: ?>
                    <div class="box">
                        <div class="post">
                            <p><?php _e('Sorry, no posts matched your criteria.', 'woothemes') ?></p>
                        </div><!-- /.post -->
                    </div><!-- /.box -->
                <?php endif; ?>

    …im lost

    Thread Starter apaniagua

    (@apaniagua)

    still…lol, now it doesnt add it like 3 columns but rows haha…i dont get this..

    Thread Starter apaniagua

    (@apaniagua)

    Found the issue….on Footer.php appears as sidebars 3,4,5 but on sidebar-init.php appears like this:

    <?php
    
    // Register widgetized areas
    
    function the_widgets_init() {
        if ( !function_exists('register_sidebars') )
            return;
    
        register_sidebar(array('name' => 'Sidebar Top','id' => 'sidebar-top','before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3>','after_title' => '</h3>'));
        register_sidebar(array('name' => 'Sidebar','id' => 'sidebar-1','before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3>','after_title' => '</h3>'));
        register_sidebar(array('name' => 'Footer 1','id' => 'footer-1','before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3>','after_title' => '</h3>'));
        register_sidebar(array('name' => 'Footer 2','id' => 'footer-2','before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3>','after_title' => '</h3>'));
        register_sidebar(array('name' => 'Footer 3','id' => 'footer-3','before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3>','after_title' => '</h3>'));
    }
    
    add_action( 'init', 'the_widgets_init' );
    
    ?>
    Thread Starter apaniagua

    (@apaniagua)

    I understand but on Appearance -> Widgets I dont have “Sidebar 3, 4 or 5…i only have Sidebar, Footer 1, Footer 2 and Footer 3…got it?

    Thread Starter apaniagua

    (@apaniagua)

    thing is….i dont have 3 “sidebars” i have 1 top sidebar, 1 sidebar and 3 FOOTERS…does that affects?

    Thread Starter apaniagua

    (@apaniagua)

    I have already set them up. There are 3 widgets activated and none appear in the footer…

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