Happy Easter!
There's a post on the v7 forum about editing/removing the component quantity in the shopping cart.
Works fine in v8. My question is, from which part of the script (or even which script) does the quantity value for products/components in the cart grid come from on Checkout Pages 0, 1, 2 etc.?
My reason for asking is that I've included a style and padding for the product/component quantity directly in the script as quoted above but it's not working on the checkout pages!
Thanks!
There's a post on the v7 forum about editing/removing the component quantity in the shopping cart.
This can be done by editing the Perl script ActinicOrder.pm.
- Locate the file ActinicOrder.pm in the site folder.
- Edit the file using a text editor such as Notepad.
- Search for…
$pComponent->{'QUANTITY'},
- There are two occurrences, only change the first. The second is used to display the component quantity when the Component is set to appear as a separate product.
- replace the line with...
$pComponent->{' '},
- Save and exit.
- Update the site (Web | Update Website).
- Locate the file ActinicOrder.pm in the site folder.
- Edit the file using a text editor such as Notepad.
- Search for…
$pComponent->{'QUANTITY'},
- There are two occurrences, only change the first. The second is used to display the component quantity when the Component is set to appear as a separate product.
- replace the line with...
$pComponent->{' '},
- Save and exit.
- Update the site (Web | Update Website).
My reason for asking is that I've included a style and padding for the product/component quantity directly in the script as quoted above but it's not working on the checkout pages!
Thanks!
Comment