我在http://www.harmonics.co.uk有一个Magento商店,我在产品上有PinIt按钮。
问题是,当您单击它时,即使URL正确,它也不会从查询字符串中的media属性中选取图像。
我正在使用以下代码生成我的图片和产品页面上的PinIt按钮:
<?php
$_helper = $this->helper('catalog/output');
$_product = $this->getProduct();
$image = $this->helper('catalog/image')->init($_product, $_product->getImageUrl(), 'image')->resize(150, 150);
?>
// PinIt Anchor
<a class="pinterest" href="http://pinterest.com/pin/create/button/?url=<?php echo $_product->getProductUrl(); ?>&media=<?php echo $image; ?>&description=<?php echo $_product->getName(); ?>" title="Share on Pinterest"> </a>
它过去常常工作,但我认为Pinterest改变了按钮的工作方式,但我看不出如何。生成的代码看起来几乎相同,除了生成的URL替换:%3A和/%2F。
我尝试过更换字符串,但这也不起作用。任何想法的人。欢呼声。
答案 0 :(得分:5)
尝试替换
<a class="pinterest" href="http://pinterest.com/pin/create/button/?url=<?php echo $_product->getProductUrl(); ?>&media=<?php echo $image; ?>&description=<?php echo $_product->getName(); ?>" title="Share on Pinterest"> </a>
与
<a class="pinterest" href="http://pinterest.com/pin/create/button/?url=<?php echo urlencode($_product->getProductUrl()); ?>&media=<?php echo urlencode($image); ?>&description=<?php echo urlencode($_product->getName()); ?>" title="Share on Pinterest"> </a>