Announcement

Collapse
No announcement yet.

Adding space breaks in the shopping cart page

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

    Adding space breaks in the shopping cart page

    Hi There,

    I have a products that has 4 different choices, once you add it to your basket is there anyway you can tidy up the way in which is its shows for example:

    It looks like this below in the moment in the shopping cart

    Plex 200 Exhibition Systems
    Fabric Colours - Loop Nylon: 1. Sungold, Front Runner: = Not Selected, Prelude: = Not Selected, Polyweave: = Not Selected

    But I would like it to be laid out like this below so it looks like a list.

    Plex 200 Exhibition Systems
    Fabric Colours - Loop Nylon: 1. Sungold
    Front Runner: = Not Selected
    Prelude: = Not Selected
    Polyweave: = Not Selected

    I dont know where to add a carriage return, please can anyone help?

    Thanks

    Angi
    christopherpiperwines.co.uk
    skatewarehouse.co.uk
    progrow.co.uk
    cheeksandcherries.co.uk

    #2
    Edit ActinicOrder.pm (in your Site folder - back it up first).
    Look for the 2 lines
    Code:
    			$ProdTable .= ProductLineHTML($pComponent->{'REFERENCE'},
    													$pComponent->{'NAME'} . $pComponent->{'DDLINK'},
    Replace them with
    Code:
    			my $newlinefix = $pComponent->{'NAME'};
    			$newlinefix =~ s/,| - /<br>/g;		# Replace " - " and "," with <br>
    			$ProdTable .= ProductLineHTML($pComponent->{'REFERENCE'},
    													$newlinefix . $pComponent->{'DDLINK'},
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment

    Working...
    X