Announcement

Collapse
No announcement yet.

I want to link to my Extended Information pages from my Marketing Lists

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

    I want to link to my Extended Information pages from my Marketing Lists

    The way to do this is to use the following code for the link from the layout you are using to lay out your best sellers/new products.

    <actinic:block if="%3cactinic%3avariable%20name%3d%22IsBrochureHomePage%22%20%2f%3e%20%3d%3d%20TRUE"><actinic:variable name="CatalogURL" /></actinic:block><actinic:variable name="ExtendedInfoPageEncoded" />

    This uses the 'ExtendedInfoPageEncoded' variable to create a link to the extended information page. It also includes the full 'Catalog URL' if the link is on the brochure home page.

    Here's the full code for the 'Mini' best seller/new products item available for you to copy and paste if you want:

    <p class="text_product_small_info_heading"><font color="000000"><actinic:variable name="ProductName" /></font></p>

    <div class="product_image_cost">

    <actinic:block if="%3cactinic%3avariable%20name%3d%22ProductImageFileName%22%20%2f%3e%20%21%3d%20%22%22">

    <a href="<actinic:block if="%3cactinic%3avariable%20name%3d%22IsBrochureHomePage%22%20%2f%3e%20%3d%3d%20TRUE"><actinic:variable name="CatalogURL" /></actinic:block><actinic:variable name="ExtendedInfoPageEncoded" />" class="product_section"><img src="<actinic:variable name="ProductThumbnailImageFileName" />" alt="<actinic:variable name="ProductName" />" border="0"/></a>

    </actinic:block>

    </div>

    <div>

    <p class="text_product_small_info_price"><font color="000066" size="2">

    <Actinic:PRICES PROD_REF="<actinic:variable name="ProductID" />" RETAIL_PRICE_PROMPT="<Actinic:Variable Name="ProductPriceDescription"/>">

    <actinic:variable value="Marketing Price List" name="PriceListRetail" />

    </Actinic:PRICES>

    </font> </p>

    <a href="<actinic:block if="%3cactinic%3avariable%20name%3d%22IsBrochureHomePage%22%20%2f%3e%20%3d%3d%20TRUE"><actinic:variable name="CatalogURL" /></actinic:block><actinic:variable name="ExtendedInfoPageEncoded" />" class="product_section"><font size="2"><strong>MORE INFO</strong></font></a></p>

    </div>
Working...
X