PDA

View Full Version : Cart Status Customization


SatinRose
November 4th, 2003, 02:48 PM
How do I make it so that the cart total does not show up? I want to change the wording of the text about the Checkout button. I know this is sort of in the Cart Options Main in the content containers, but not exactly what I need to modify.

Jamie
November 4th, 2003, 02:52 PM
Hi,

The content within that nav box is controlled by the template file cart_options.php:


<!--
Template file: cart_options
This file controls the look of the Cart Options section of the cart,
which appears when you have at least 1 item in the cart, and displays the "checkout" button
-->
<?=$Cart_Message?>
<br>
<a href="<?=$Checkout_HREF?>">
<?=$Checkout_Image?>
</a>
<br>


The message displayed is controlled by the <?=$Cart_Message?> text, so if you need to remove the order amount, if you will have to remove that text entirely, and replace with your own. The checkout button is controlled by the <a> tag.

Thanks,
Jamie