0
Welcome Guest! Login
0 items Join Now

Remove breadcrumbs Afterburner

  • Remove breadcrumbs Afterburner

    Posted 13 years 6 months ago
    • Hello i want to remove breadcrumbs from the theme, that pathway that shows where i am inside my website, any help ? For afterburner but also for the other themes, is there a way to do it ?
  • Re: Remove breadcrumbs Afterburner

    Posted 13 years 6 months ago
    • Hi,

      To remove the breadcrumbs please edit the page.php and single.php files and remove this code :
       
      <div class="breadcrumbs-pad">
      <div class="breadcrumbs">    
       
      <a href="<?php echo get_bloginfo('url'); ?>/" title="" class="pathway"><?php _re('Home'); ?></a>
       
      <?php
       
      $parent_id  = $post->post_parent;
      $breadcrumbs = array();
      while ($parent_id) {
      $page = get_page($parent_id);
      $breadcrumbs[] = '<a href="'.get_permalink($page->ID).'" title="" class="pathway">'.get_the_title($page->ID).'</a>';
      $parent_id  = $page->post_parent;
      }
      $breadcrumbs = array_reverse($breadcrumbs);
      foreach ($breadcrumbs as $crumb) echo '<span class="sep">\/span>'.$crumb;
      ?>
       
      <span class="sep">\</span><?php the_title(); ?>
       
      </div>
      </div>

      Thanks
      Jakub
    • Remember to always post a link to the site you're having problem with.

Time to create page: 0.041 seconds