Announcement

Collapse
No announcement yet.

Best seller 404 error

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

    Best seller 404 error

    perhaps lost in customisation but I having an issue with the sidebar bestseller

    http://www.easywellbeing.com/

    the issue is if you click on the image it should open a pop up i.e the extended info text but i am getting a 404 error now actinic seems to be looking for it in the public html folder rather than the actinic folder

    the wierdest thing is the best seller works fine in other brochure pages, check out the about us page and shop online page the extended info pop up works fine and its wierd home page offline works fine too

    perhaps customization gone too far lol...any help will be super appreciated.

    thanks
    Iffat

    #2
    If only an issue on home page, as that is the only page of your site that sits at root level, it stands a great chance it is URL related. Try a full URL in your custom code to see if that is the issue. Prefix the extended info page name with the CatalogURL variable.

    Comment


      #3
      thanks lee for the response just a wee bit unclear where do i prefix
      Code:
      <actinic:block if="%3cactinic%3avariable%20name%3d%22IsPopUpDisplayedByImage%22%20%2f%3e">
         <actinic:block if="%3cactinic%3avariable%20name%3d%22ExtendedInformationType%22%20%2f%3e%20%3d%3d%20%22Opens%20in%20a%20Pop%2dUp%20Window%22">
            <a href="<actinic:variable name=ExtendedInfoPageEncoded />" target="ActPopup" onclick="return ShowPopUp('<actinic:variable name=ExtendedInfoPageEncoded />',<actinic:variable name="ExtInfoWindowWidth" />,<actinic:variable name="ExtInfoWindowHeight" />);">
         </actinic:block>
         <actinic:block if="%3cactinic%3avariable%20name%3d%22ExtendedInformationType%22%20%2f%3e%20%3d%3d%20%22Opens%20in%20the%20Same%20Window%22" >
            <a href="<actinic:variable name="ExtendedInfoPageName" />">
         </actinic:block>
      </actinic:block>
      
      <actinic:block if="%3cactinic%3avariable%20name%3d%22IsProductImageDisplayed%22%20%2f%3e">
         <img src="<actinic:variable name="ProductImageFileName" />"
            border="0"
            width="<actinic:variable name="ProductImageWidth" />"
            height="<actinic:variable name="ProductImageHeight" />"
            alt="<actinic:variable name="ProductName" encoding="strip"/>" />
      </actinic:block>
      
      <actinic:block if="%3cactinic%3avariable%20name%3d%22IsProductImageDisplayed%22%20%2f%3e%20%3d%3d%20False">
         <img src="<actinic:variable name="DefaultProductImage" />"
            border="0"
            alt="<actinic:variable name="ProductName" encoding="strip"/>" />
      </actinic:block>
      
      <actinic:block if="%3cactinic%3avariable%20name%3d%22IsPopUpDisplayedByImage%22%20%2f%3e">
         </a>
      </actinic:block>
      and how is it done..
      Iffat

      Comment


        #4
        This part is the page name:

        Code:
        <a href="<actinic:variable name="ExtendedInfoPageName" />">

        Comment


          #5
          thanks ever so much lee

          this correct
          Code:
          <a href="<actinic:variable name="CatalogURL" /><actinic:variable name="ExtendedInfoPageName" />">
          Iffat

          Comment


            #6
            The format of an anchor tag is:

            <a href="pagename.html">link text</a>

            The text in between the " and " denotes the URL/page name. You'd not done that correctly, but I have adjusted your post to now be correct.

            Comment

            Working...
            X