http://stackoverflow.com/questions/16690754/skin-url-base-url-in-product-description-in-magento
We added a link to a multi-store site in the product description does not seem to work. It causes a weird url. For example: Creates this weird url.. http://signaturesupply.com/food/makeup-air-hoods/%7B%7Bstore%20url='glossary'%7D%7D
<a href="{{store url='glossary'}}" target="_blank">Link glossary</a>
The Problem Explained:
It's parsing URLs as if the category itself is the main folder and everything else is a subdirectory.
It has to do with tabs.phtml but none of the code we checked was wrong.
We got the link to work by using "../glossary" instead
Comments