Re: SEO Settings
Obviously right now i only have one store in beta, but when the update comes out i will want to update all my stores to take advantage of SEO links.
Its not really the name of the page that is the problem, i just have the same code for a category page that i use in multiple stores. So instead of manually editing my page for each store i can simply use a variable that contains the site address. The variable that was provided by Miva was fine when all links started with domain.com/mm5/ but now i dont need to have /mm5/ and i would like a variable to replace &mvt:global:sessionurl; that is relevant in regards to using the SEO feature.
Eg - here is a simple Title link for my product page -
This link will work fine on any Miva store i set up so i dont have to mess around changing the code for the store.
If i try to do
The url i will get is http://www.domain.com/mm5/category/product.html - Kinda defeats the purpose of SEO if i have mm5 in their and makes it a pain in the arse because if i set up a new store i have to manually put in the top level domain.
Edit: The reference to ../page.html was saying that is not possible for me to make links like this because it falls apart when in ssl
Originally posted by Barrett
View Post
Its not really the name of the page that is the problem, i just have the same code for a category page that i use in multiple stores. So instead of manually editing my page for each store i can simply use a variable that contains the site address. The variable that was provided by Miva was fine when all links started with domain.com/mm5/ but now i dont need to have /mm5/ and i would like a variable to replace &mvt:global:sessionurl; that is relevant in regards to using the SEO feature.
Eg - here is a simple Title link for my product page -
Code:
<a href="&mvt:global:sessionurl;Screen=PROD&Product_Code=&mvta:product:code;&Category_Code=&mvta:category:code;"> &mvt:product:name; </a>
If i try to do
Code:
<a href="&mvt:global:sessionurl;&mvta:category:code;/&mvta:product:code;.html"> &mvt:product:name; </a>
Edit: The reference to ../page.html was saying that is not possible for me to make links like this because it falls apart when in ssl
Code:
<a href="../&mvta:category:code;/&mvta:product:code;.html"> &mvt:product:name; </a>
Comment