Announcement

Collapse
No announcement yet.

Other Products Of Intrest?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Other Products Of Intrest?

    Hi,

    Is there anyway of incorporating some kind of "other products you may like" feature in to Catalog 6?

    For example in the product description there may be some text along the lines of "you may also be intrested in X Y and Z" with links to the relevent sections.

    Assuming this is possible can Actinic automaticly generate these links using the same netquotevars as it does for the section links?

    Many Thanks
    Liam

    #2
    I'm afraid the answer to your question is a no at the moment.

    All you will be able to do is enmbed the links to the other products into the full descriptions of your products with code similar to the following:

    Here are some other products you may like...
    !!<
    <ul>
    <li><a href="http://your.URL/cgi-bin/ss00000x.pl?PRODREF=12345&NOLOGIN=1">Product Name</a></li>
    </ul>
    >!!

    Where:
    · http://your.URL/cgi-bin is the URL of your CGI-BIN
    · ss00000x.pl is the name of your search script with the 'x' replaced with your CGI ID number
    · 12345 is the product reference of your desired product.
    · &NOLOGIN=1 is an essential thing to add to the end of the URL to order to bypass the login page

    Comment

    Working...
    X