Announcement

Collapse
No announcement yet.

List of attribute choices in shopping cart

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

    List of attribute choices in shopping cart

    Hi all

    In the shopping cart, Actinic inserts a hyphen (-) before the list of attributes choices for a product. I would like to remove this if possible.

    I assume that the hyphen is in one of the perl scripts. I'd be grateful if someone could tell me where please.

    Thanks

    Bob
    Bob Smith
    Quality Workwear Clothing
    Personalised Corporate wear
    www.workwearhouse.co.uk

    #2
    Hi there

    Its in ActinicOrder.pm on line 5475

    Here you will see the following line

    Code:
    $Res{text} = $component->[$::CBIDX_NAME] . " - " . $Res{text};
    Just change this to:
    Code:
    $Res{text} = $component->[$::CBIDX_NAME] . $Res{text};
    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment

    Working...
    X