AbanteCart Community
eCommerce construction => How-to questions => Topic started by: Nuno Neff on November 27, 2023, 06:59:41 PM
-
Hello community I want to add a link in the footer content, so i created a word for my link and i dont know what code i need so that the link works.
I want to add this https://www.livroreclamacoes.pt/Inicio/
In here: /extensions/bootstrap5/storefront/view/bootstrap5/template/blocks/content_footer.tpl
<?php
$contents[] = [
'text' => $text_contact,
'href' => $contact
];
$contents[] = [
'text' => $text_sitemap,
'href' => $sitemap
];
$contents[] = [
'text' => $text_complaint,
'href' => $what do i have to write her so that the link will work
];
echo renderSFMenu($contents);
?>
-
Hello.
Try 'href' => "https://..."
or 'href' => '/Inicio/'
-
Thsnks Basara , i got it ;)