Announcement

Collapse
No announcement yet.

Link problem

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

    Link problem

    I am dealing with a problem in our website, and I believe it is an easy fix, but I have not found the solution.
    After including a text link to open a pdf file, on the product page is linking to the info page, as I had clicked the “ More Info” button. However, inside of the info page, the text link is working fine.
    See an example
    http://www.solarilluminations.com/ac..._Lighting.html
    Do anyone have an idea about what is the problem?
    Thank you
    Sergio

    #2
    You're using the same code for the CLICK HERE FOR PHOTOMETRIC DATA as you are for the Extended Info page.
    Code:
    <a href="info_202.html">
    	CLICK HERE FOR PHOTOMETRIC DATA
    </a>
    And here's your More Info:
    Code:
    <a href="info_202.html">
      <img src="more_info_button.png" border="0" alt="Click here to read more about this product" />
    </a>
    This is what you should have:
    Code:
    <a href="http://solarilluminations.com/SL01_solar_street_light_data_US.pdf">
     CLICK HERE FOR PHOTOMETRIC DATA
    </a>
    As none of this is stamdard Actinic (you must have coded it yourself) you'll have to look at your code to fix it.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Hi Norman,
      Thank you for your answer
      Yes, you are right, that's the problem.
      I am using the "Links" feature available on "Product Details", but on the product page is linking to a wrong page. The link on the product page is acting same as my " More Info Button".
      I have found one post of yours teaching how to include links on the production description. It works fine, but I am sure the problem I have now it is a easy fix, but I have not been able to solve it.

      Comment

      Working...
      X