tags:

views:

1428

answers:

1

I have a static block in Magento with this content:

  • Contact Us
  • I would like to replace the # with the site's base url. I want it to retrieve this dynamically.

    Thanks!

    +1  A: 

    Try adding this to your static block:

    <a href="{{store url=""}}">Link to Base URL</a>
    

    That should create a link to your store's base URL.

    pix0r
    within PHP: $baseurl = Mage::app()->getStore()->getBaseUrl();
    B00MER