AbanteCart Community

Shopping Cart Operations => Support => Template Support => Topic started by: chousg on July 09, 2014, 06:28:39 AM

Title: remove contact us link on top of the menu
Post by: chousg on July 09, 2014, 06:28:39 AM
sir/madam

I like to remove this item "contact" from the menu item.
I follow this instruction (previous posting) and locate this content.tpl, however, the section is missing from my file:

/public_html/storefront/view/default/template/blocks/content.tpl
and remove line
Code: [Select]
<li><a href="<?php echo $contact; ?>"><?php echo $text_contact; ?></a></li>

Below is the content of my file, appreciate your help:
<div class="s_block">
   <div class="block_tl">
      <div class="block_tr">
         <div class="block_tc"><img src="<?php echo $this->templateResource('/image/information.png'); ?>" alt="" /><?php echo $heading_title; ?></div>
      </div>
   </div>
    <div class="block_cl">
       <div class="block_cr">
           <div class="block_cc">
               <div class="information"><ul>
                   <?php foreach ($contents as $content) { ?>
                   <li><a href="<?php echo $content['href']; ?>"><?php echo $content['title']; ?></a></li>
                   <?php } ?>
                   
                   
                   <li><a href="<?php echo $sitemap; ?>"><?php echo $text_sitemap; ?></a></li>
                </ul></div>
            </div>
        </div>
    </div>
   <div class="block_bl">
      <div class="block_br">
         <div class="block_bc">&nbsp;</div>
      </div>
   </div>
</div>

Title: Re: remove contact us link on top of the menu
Post by: abantecart on July 11, 2014, 12:57:35 PM
Storefront menu is managed in admin. No need to look at the code
Title: Re: remove contact us link on top of the menu
Post by: Basara on July 14, 2014, 05:54:16 AM
I like to remove this item "contact" from the menu item.
I follow this instruction (previous posting) and locate this content.tpl, however, the section is missing from my file:

Hello. What template do you have and where you want to remove contact us (header, footer, menu)?