从 prestashop 中的 multistore 获取产品 URL

Get product URL from multistore in prestashop

我需要在具有不同域的 prestashop 多商店中获取特定产品的产品 url link。

我知道我可以通过这样的方式获得产品 link: getProductLink($id_product)

但是这个 return 来自总店的 url,我需要能够得到特定 id_store

的产品 link

您需要使用带参数的getProductLink。第 6 个参数是 id shop。 使用

$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')}

聪明内