Problem:
Pin It links produce invalid image urls. They only work with product / fragment images directly in the site folder. Product Images within sub-folders will have invalid code (that includes the sub-folder path) generated.
Fix:
The Pin It layouts are using.
When they should be using.
Go to Design / Library / Layouts / Social Media Buttons / Product Pin It Button Layout.
Replace duff code as above.
P.S. There are similar issues with Fragments. In Fragment Pin It Button Layout, replace:
With:
Pin It links produce invalid image urls. They only work with product / fragment images directly in the site folder. Product Images within sub-folders will have invalid code (that includes the sub-folder path) generated.
Fix:
The Pin It layouts are using.
Code:
<actinic:variable name="ProductImageFileName" />
Code:
<actinic:variable name="ProductImageFileNameRaw" />
Replace duff code as above.
P.S. There are similar issues with Fragments. In Fragment Pin It Button Layout, replace:
Code:
<actinic:variable name="FragmentImageFileName" />
Code:
<actinic:variable name="FragmentImageFileNameRaw" />
Comment