Announcement

Collapse
No announcement yet.

Delete the HTML link on items in the cart?

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

    Delete the HTML link on items in the cart?

    I was wondeing if anyone can help or knows how to delete the HTML link on items in the cart which takes the user back to the item in the store?

    As the store I'm creating is partly in flash I need to get rid of these links which take the user back to the html version.

    Many thanks

    Doran Black

    #2
    This needs some of the Perl patching.

    Edit ActinicOrder.pm (in Site1 - back it up first). Look for the line
    Code:
    my $sProdLinkFormat = "<A HREF=\"$::g_sSearchScript?PRODREF=%s&NOLOGIN=1$sShop\">%s</A>";
    replace it with
    Code:
    my $sProdLinkFormat = "<!-- %s -->%s";
    PS this was already on the Forum. Some searching would have taken you there.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment

    Working...
    X