AbanteCart Community
Shopping Cart Operations => Support => Topic started 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)
-
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:
<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. :)
-
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!
-
You're welcome. :)