Announcement

Collapse
No announcement yet.

Product link in checkout

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

    Product link in checkout

    Hi all

    Does anyone know how to remove the product link from an item in the shopping cart?

    Thanks

    Nick
    Hazelnet Web Solutions
    www.hazelnet.co.uk
    Actinic & Worldpay Partners
    Specialising in ecommerce and
    online promotion.

    Workwear and Promotional Clothing
    www.workwearhouse.co.uk
    Logo Your Polo!

    #2
    Hi Nick,

    Try the following:

    Edit ActinicOrder.pm in a text editor such as Notepad.
    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 beginning of the line

    On a blank line directly after this put:

    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. Take a back-up of your original script before applying the change. Note that we don't support changes to scripts.
    ********************
    Tracey
    SellerDeck

    Comment

    Working...
    X