You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
I'm probably making this more difficult than it needs to be!
If I want to link back to the store splash page, just say, in a product description or within an article posted via the cms is there a short hand way to do that? Something like:
<?php print $link_home; ?>
The breadcrumbs code isn't too helpful:
if ($name == 'STOREHOME') {$name = 'Store Home';}
it deals with the name rather than the link? Would the link to the store home just be? I can't get that to work so it must be wrong...
<?php print $link_storehome; ?>
Offline
Hi Jessica,
You need to define the store home link wihtin the XHTML include, somethig like;
$link_storehome = $this->link_namespace('cms','display',array('ref' => 'splash'));
Offline