support

Author Topic: Remove "Contact Sitemap Login" links from content  (Read 7423 times)

Offline homeydclown

  • Newbie
  • *
  • Posts: 21
  • Karma: +4/-0
    • View Profile
Remove "Contact Sitemap Login" links from content
« 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!


yonghan

  • Guest
Re: Remove "Contact Sitemap Login" links from content
« Reply #1 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

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.  :)


Offline homeydclown

  • Newbie
  • *
  • Posts: 21
  • Karma: +4/-0
    • View Profile
Re: Remove "Contact Sitemap Login" links from content
« Reply #2 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!

yonghan

  • Guest
Re: Remove "Contact Sitemap Login" links from content
« Reply #3 on: June 27, 2015, 07:53:55 PM »
You're welcome. :)

 

Powered by SMFPacks Social Login Mod