我是 Prestashop 的新手,我真的很挣扎。缺乏好的文档是一个真正的缺点,有时我喜欢尝试 Magento 或类似的东西。
无论如何,我试图让产品页面仅在该产品带有特定标签时才显示信息。我在互联网上搜索了大约 3 个小时,但找不到任何解决此问题的方法。
我该怎么做?有大佬能指点一下方向吗?
顺便说一句,我正在使用 1.5
谢谢
我是 Prestashop 的新手,我真的很挣扎。缺乏好的文档是一个真正的缺点,有时我喜欢尝试 Magento 或类似的东西。
无论如何,我试图让产品页面仅在该产品带有特定标签时才显示信息。我在互联网上搜索了大约 3 个小时,但找不到任何解决此问题的方法。
我该怎么做?有大佬能指点一下方向吗?
顺便说一句,我正在使用 1.5
谢谢
if you use prestashop 1.5 you need
//this is your prooduct id that you get it from your url
$id_product=Tools::getValue('id_product');
//the you use it to return all of your tags of this product with this id product
//but this return two array for example: array(array(tags))
$productTags =Tag::getProductTags($id_product);
//add this code return array(tags) ;
$productTags=$productTags[intval(Context::getContext()->cookie->id_lang)];
您可以查看 Product 类。例如: Tag::getProductTags($id_product) 函数
问候