Announcement

Collapse
No announcement yet.

Removing 'options' line from shopping cart

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

    Removing 'options' line from shopping cart

    Hello,

    Is there a way of not displaying the 'option' line within the shopping cart?

    In case that isn't clear I mean the second line which displays which size/colour of an item you have added.

    I have searched without sucess, any help much appreciated.

    Frenchy.
    www.likeys.com

    #2
    Hello

    You can try the workaround given here : This will hide the quantity against the component. To hide the label as well, in the same file, just above
    $pComponent->{'QUANTITY'},
    you will see a line which says :
    $pComponent->{'NAME'} . $pComponent->{'DDLINK'},

    You will need to remove NAME, so it will look like :
    $pComponent->{''} . $pComponent->{'DDLINK'},
    Save file and upload changes to site. You should now only see the product name in the cart.
    The standard caveat applies for Perl file customisation. In case you wish to revert to the unmodified version, you can find them in C:\ProgramFiles\ActinicV8\Original folder

    Hope this helps.
    Krithika Chandrasekar
    SellerDeck

    sigpic

    E-commerce software by SellerDeck

    Comment

    Working...
    X