AbanteCart Community

Shopping Cart Operations => Support => Topic started by: homeydclown on June 27, 2015, 08:19:23 AM

Title: Remove "Contact Sitemap Login" links from content
Post by: homeydclown on June 27, 2015, 08:19:23 AM
I cannot find how to remove these 3 (Contact, Sitemap, & Login) links, please see the picture.  These do not show up in the Content Manager.  If anyone knows how to remove them, please let me know.  Thank you for the help!

(http://i1291.photobucket.com/albums/b543/musiccisum2001/remove_zpsw2wkjdjh.png)
Title: Re: Remove "Contact Sitemap Login" links from content
Post by: yonghan on June 27, 2015, 08:46:22 AM
Hi there, as far as i know you need to edit the .tpl file in order to delete them. Look for this file in your installation folder:
 https://github.com/abantecart/abantecart-src/blob/master/public_html/storefront/view/default/template/blocks/content_footer.tpl (https://github.com/abantecart/abantecart-src/blob/master/public_html/storefront/view/default/template/blocks/content_footer.tpl)

Remove line 25-33:

Code: [Select]
<li><a href="<?php echo $contact?>"><?php echo $text_contact?></a></li>
<li><a href="<?php echo $sitemap?>"><?php echo $text_sitemap?></a></li>
<?php if (!$logged) { ?>
<li><a href="<?php echo $login?>"><?php echo $text_login?></a></li>
<?php } else { ?>
<li><a href="<?php echo $logout?>"><?php echo $text_logout?></a></li>
<li><a href="<?php echo $account?>"><?php echo $text_account?></a></li>
<li><a href="<?php echo $cart?>"><?php echo $text_cart?></a></li>
<?php ?>

Hope it helps.  :)

Title: Re: Remove "Contact Sitemap Login" links from content
Post by: homeydclown on June 27, 2015, 07:08:47 PM
Perfect, thank you! I think I deleted up to line 35 last time and it gave me an error message on my website.  Only deleting up to 33 did the trick, thanks!
Title: Re: Remove "Contact Sitemap Login" links from content
Post by: yonghan on June 27, 2015, 07:53:55 PM
You're welcome. :)