我需要在具有不同域的Prestashop Multistore中获得某个产品的产品URL链接。
我知道我可以通过这样的东西获得产品链接:getProductLink($ id_product(
但是,这返回主商店的URL,我需要能够获得特定ID_Store的产品链接
您需要使用参数使用getProductLink。第六个参数是ID商店。使用
$link = new Link();
$link->getProductLink(1, null, null, null, null, 'your_shop_id_here');
在PHP或
内{$link->getProductLink(1, null, null, null, null, 'your_shop_id_here')}
Smarty