I know that in a .phtml file you do it like this for example:
<?php echo $this->helper('derco_core')->getStoreUrl('dcmotosesp')?>
I want to do the same thing inside a static block. Thanks in advance.
I know that in a .phtml file you do it like this for example:
<?php echo $this->helper('derco_core')->getStoreUrl('dcmotosesp')?>
I want to do the same thing inside a static block. Thanks in advance.
There is no 'clean' way of getting an url for a specific store using shortcodes (
{{store url}}
)....because the
store
shortcode handler end like this (seeMage_Core_Model_Email_Template_Filter::storeDirective()
):This means that the store cannot be passed as a parameter.
The following might work but it's a bit ugly. The idea is to send the parameter
___store
through$_GET
telling Magento to switch to a specific store.(replace 'store_code_here' with your specific store code).
An other option would be to extend the method mentioned above and allow it to receive a
store_code
parameter.