Results 1 to 4 of 4
  1. #1

    Default Removing mod breadcrumbs

    I added a few mods to my test site, news and article management, testimonial manager, and the links manager advanced. The folks that desided the templates for my site created their own breadcrumb layout and the mods are creating a second row of breadcrumbs:

    http://www.books-japan-online.com/test/news/

    How can I remove the bredcrumbs at the bottom?
    Rich People scream, Wealthy people whisper

    www.cooltechcentral.com

  2. #2
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Removing mod breadcrumbs

    Since the second set of breadcrumbs also appears on the main page of the store, check your includes -> templates -> YOUR_TEMPLATE -> common -> tpl_main_page.php and check for the following lines of code:

    Code:
    <table  width="100%" border="0" cellspacing="2" cellpadding="2">
      <tr>
        <td class="breadCrumb">  <a href="http://www.books-japan-online.com/test/">Home</a>&nbsp;::&nbsp;
    
    Books Japan News
    </td>
      </tr>
    </table>
    and delete it

    The above code will appear just below
    Code:
    <!-- bof  breadcrumb -->
    <?php if (DEFINE_BREADCRUMB_STATUS == '1' && ($current_page!='index' || (int)$cPath>0 )) { ?>    <div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div>
    <?php } ?>
    <!-- eof breadcrumb -->

  3. #3
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Removing mod breadcrumbs

    Addendum to my previous post

    If the second set of breadcrumbs is not in the tpl_main_page.php

    Then you will have to remove the code from each of the tpl_???????.php files for the mods.

    Code:
    <table  width="100%" border="0" cellspacing="2" cellpadding="2">
      <tr>
        <td class="breadCrumb">  <a href="http://www.books-japan-online.com/test/">Home</a>&nbsp;::&nbsp;
    
    Books Japan News
    </td>
      </tr>
    </table>

  4. #4

    Default Re: Removing mod breadcrumbs

    I figured it out. I just needed to go to includes/templates/mytemplate/templates and just look in the corrisponding tpl file and find the line containing $breadcrumb in it a delete the whole line.
    Rich People scream, Wealthy people whisper

    www.cooltechcentral.com

 

 

Similar Threads

  1. v151 Removing product title from breadcrumbs: Last category link breaks!
    By Feznizzle in forum General Questions
    Replies: 3
    Last Post: 19 Jun 2013, 04:49 PM
  2. New Mod: prettier professional breadcrumbs
    By bonnit in forum All Other Contributions/Addons
    Replies: 39
    Last Post: 21 Oct 2011, 08:54 PM
  3. Removing breadcrumbs from certain pages...
    By Alex Clarke in forum General Questions
    Replies: 11
    Last Post: 5 Oct 2010, 11:06 AM
  4. Help Removing Breadcrumbs from Login and Checkout Pages
    By limelites in forum General Questions
    Replies: 3
    Last Post: 29 May 2009, 06:17 PM
  5. Removing breadcrumbs from main cat pages
    By magicpants in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 1 Jul 2006, 12:13 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg