AbanteCart Community

eCommerce construction => How-to questions => Topic started by: Nuno Neff on November 27, 2023, 06:59:41 PM

Title: Footer Link
Post 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);
?>
Title: Re: Footer Link
Post by: Basara on November 28, 2023, 03:47:41 AM
Hello.

Try
Code: [Select]
'href' => "https://..."  or
Code: [Select]
'href' => '/Inicio/' 
Title: Re: Footer Link
Post by: Nuno Neff on November 28, 2023, 03:58:17 AM
Thsnks Basara , i got it ;)