• Resolved thehotpeg

    (@thehotpeg)


    Thanks.
    How can I remove the Category/Archive Column on left (say, after we click on category/tag)?
    And
    Can I add a Second menu bar as well ( I’ve removed the filter on home page)? Menu can be same as the top nav bar, only horizonatal,blocks in place of filter.
    cheers

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello thehotpeg,
    Make a Child theme and copy archive.php, category.php and author.php from parent theme. Then remove below code from these files(childtheme).

    <!-- Corner Stamp: It will always remaing to the right top of the page -->
      <section class="corner-stamp post columns four item">
      <header><h3><?php _e('Archives', 'sampression'); ?></h3></header>
      <div class="entry">
        <ul class="categories archives">
            <?php
    		// Getting Archive Lists
    		 wp_get_archives( '' ); ?>
        </ul>
      </div>
    
       <header><h3><?php _e('Categories', 'sampression'); ?></h3></header>
      <div class="entry">
        <ul class="categories">
        	<?php
    		// Getting Categories Lists
    		 wp_list_categories('title_li'); ?>
        </ul>
      </div>
      </section>
      <!-- .corner-stamp -->

    For Second menu, you have to create a new menu on WordPress dashboard and add below code on childtheme header.php
    <?php wp_nav_menu( array('menu' => 'MENU_NAV' )); ?>

    Thanks,
    Anibesh

    Thread Starter thehotpeg

    (@thehotpeg)

    Thank you Mr. Thapa : )

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Category/Archive Column on left Removal’ is closed to new replies.