Announcement

Collapse
No announcement yet.

LInk out to affiliate from Category page

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

    LInk out to affiliate from Category page

    Hi.

    Can someone tell me how we can link out to our affiliate products from the category page, the page has 4 categories but i can only seem to link these to my product pages.
    Can you help please?

    Basically instead of going to the product page when image or link is clicked, it goes to our affiliate site.
    Is this something in the CSS needs changing?

    Thanks.
    Wayne.
    Last edited by bekyed; 15-Nov-2014, 01:22 PM. Reason: More information
    www.fetishwear-uk.co.uk


    Actinic SEO

    We are specialists in Actinic SEO and have over 12 years experience with this software. PM me for more details if you need any help.


    sigpic

    #2
    By default the Section Link Layout will have a <a href> pointing to the SectionPageName where the products are.

    You need to edit the Section Link Layout (Design > Library > Layouts > Section Links) and replace the Actinic variables pointing to your product pages (SectionPageName) for those of the affiliate website


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      Existing CSS Section Link Layout

      Code:
      		<div class="product_list">
      			<div class="image_product"><a href="<actinic:block if="%3cactinic%3avariable%20name%3d%22IsLoginPageSuppressed%22%20%2f%3e%20AND%0d%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e" ><actinic:variable name="SectionPageName" /></actinic:block><actinic:block if="%28%3cactinic%3avariable%20name%3d%22IsLoginPageSuppressed%22%20%2f%3e%20%3d%3d%20false%29%20OR%0d%28%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e%20%3d%3d%20false%29" ><actinic:variable name="SectionURL" /></actinic:block>" target="_self"><img alt="<actinic:variable name="SectionName" encoding="strip"/>" src="<actinic:variable Name="SectionImageFileName"/>" border="0" /></a></div>
      			<div><h3 class="product"><a href="<actinic:block if="%3cactinic%3avariable%20name%3d%22IsLoginPageSuppressed%22%20%2f%3e%20AND%0d%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e" ><actinic:variable name="SectionPageName" /></actinic:block><actinic:block if="%28%3cactinic%3avariable%20name%3d%22IsLoginPageSuppressed%22%20%2f%3e%20%3d%3d%20false%29%20OR%0d%28%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e%20%3d%3d%20false%29" ><actinic:variable name="SectionURL" /></actinic:block>" target="_self"><actinic:variable name='SectionName'/></a></h3></div>
      			<p><actinic:variable name='SectionDescription'/></p>
      		</div>
      and pointing to a 3rd party website .. here Google

      Code:
      		<div class="product_list">
      			<div class="image_product"><a href="http://www.google.com" target="_self"><img alt="<actinic:variable name="SectionName" encoding="strip"/>" src="<actinic:variable Name="SectionImageFileName"/>" border="0" /></a></div>
      			<div><h3 class="product"><a href="http://www.google.com" target="_self">Affiliate Link</a></h3></div>
      			<p><actinic:variable name='SectionDescription'/></p>
      		</div>


      Bikster
      SellerDeck Designs and Responsive Themes

      Comment

      Working...
      X