Announcement

Collapse
No announcement yet.

Colour Problem

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

    Colour Problem

    Me again !!

    When looking at the main product in my cart the product name is blank until highlighted?

    Which colour in design/colour would remedy this problem?

    Thanks

    Paul

    #2
    Hi Paul,

    The problem is because the product name in the basket becomes a link back to the product page. In this case you have a choice, you can change the 'Form Background' so it is not the purple colour (maybe swap the 'Form Background' and 'Form Emphasis' colours), or you can change the 'Link' colour (note that this will change it for every link including the section links).

    Alternatively, you can stop the product name in the basket from being a link by doing the following:

    Open ActinicOrder.pm from your site directory in a text editor.
    Search for 'sub GenerateShoppingCartLines'.
    Then search for HREF.
    You should see ...

    my $sProdLinkFormat = "<A HREF=\"$::g_sSearchScript?PRODREF=%s&NOLOGIN=1\">%s</A>";

    Comment out the line with #.

    At the same point insert the line...

    my $sProdLinkFormat = "<!-- %s -->%s";

    The first %s is just the internal product ID used as a target to the search script. Do not remove it or the Product ID will appear as the Product Name.

    I hope this helps.
    ********************
    Tracey
    SellerDeck

    Comment


      #3
      Colour

      Many thanks Tracey.

      I had fixed this problem, but i had only saved it and not selected it


      Thanks for info though

      Paul

      Comment

      Working...
      X