mikewra Posted December 22, 2014 Share Posted December 22, 2014 Hi, I am trying to add a link in the footer under My Acccount to My Wishlist. But I can't figure out how to call the wishlist. I'm using PrestaShop 1.6.9, default bootstrap theme.Where you see 'XYZ' below, in blockmyaccountfooter.tpl (location: store root -> themes -> my theme -> modules -> blockmyaccountfooter ->) is where I (think) the correction should go:<li><a href="{$link->getPageLink('XYZ', true)|escape:'html':'UTF-8'}" title="{l s='My wishlist' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My Wishlists' mod='blockmyaccountfooter'}</a></li> For comparison's sake, this is the one for My Credit Slips: <li><a href="{$link->getPageLink('order-slip', true)|escape:'html':'UTF-8'}" title="{l s='My credit Slips' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My Credit Slips' mod='blockmyaccountfooter'}</a></li>Any and all help is greatly appreciated. Link to comment Share on other sites More sharing options...
loulou66 Posted December 22, 2014 Share Posted December 22, 2014 Hi you can find this link in file modules/blockwishlist/my-account.tpl it's link displaying in account page with an icon (then dont take it ^^ ) @++ Loulou66 Link to comment Share on other sites More sharing options...
mikewra Posted December 22, 2014 Author Share Posted December 22, 2014 Merci, This did it: <li><a href="{$link->getModuleLink('blockwishlist', 'mywishlist', array(), true)|escape:'html':'UTF-8'}" title="{l s='My Wishlists' mod='blockwishlist'}"><span>{l s='My Wishlists' mod='blockwishlist'}</span></a></li> Link to comment Share on other sites More sharing options...
loulou66 Posted December 22, 2014 Share Posted December 22, 2014 Hi Yep good job @++ Loulou66 Link to comment Share on other sites More sharing options...
Recommended Posts