Jump to content

changing category link


rnrewebsite

Recommended Posts

Hello

I like to change the link on a category.. instead of it going to a page on the store I'd like it to open in a second store..

 

 

 

<ul id="menu" class="accordion">
    <li><a href="/index.php" title="Store Front">Store Front</a></li>

    <li>
<a href="/custom-parts.html" title="Custom Parts">Custom Parts</a>
</li><li>
<a href="/motorcycles.html" title="Motorcycles">Motorcycles</a>
</li><li>

 

I'd like to change the /motorcycle.html

 

<ul id="menu" class="accordion">
    <li><a href=/index.php" title="Store Front">Store Front</a></li>

    <li>
<a href="/custom-parts.html" title="Custom Parts">Custom Parts</a>
</li><li>
<a href="/second store url" title="Motorcycles">Motorcycles</a>

 

is there a file that the categoeries are written to after their made? I checked the sql under the category but didn't see the links.

Thank you

</li><li>

Link to comment
Share on other sites

In the skin template file box.navigation.php, you can code for a fixed URL:

<div>
  <h3>{$LANG.navigation.title}</h3>
  <ul id="menu" class="accordion">
    <li><a href="{$STORE_URL}/index.php" title="{$LANG.navigation.homepage}">{$LANG.navigation.homepage}</a></li>
<!-- ADD YOUR URL HERE: <li><a href="http://second_store_url" title="Motorcycles">Motorcycles</a></li> -->
    {$NAVIGATION_TREE}
<!-- OR HERE: <li><a href="http://second_store_url" title="Motorcycles">Motorcycles</a></li> -->
    {if $CTRL_CERTIFICATES && !$CATALOGUE_MODE}
.....

Then, disable the Motorcycles category for this store.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...