Shopping Cart

  • Posts: 32
  • Thank you received: 0
11 years 1 month ago #151567

Hi there,

Just a quick question - in the first stage of the checkout process i need to show the shopping cart without the shipping costs because the customer selects his/her shipping methods later in the process. However, after clicking next on the cart page, and after selecting his/her shipping methods, i would then like to display a page that shows what products the customer has ordered together with the shipping costs for that order. I tried to use the "cart status" view for this, but because i had modified the "cart" view to remove the shipping costs, it doesnt then show the shipping costs on the "cart status" view. It must be happening because they are calling on the same file? If so whats my options for perhaps creating a custom view in the checkout process where i can show this information?

Thanks in advance

Please Log in or Create an account to join the conversation.

  • Posts: 13201
  • Thank you received: 2322
11 years 1 month ago #151608

Hi,

So you will have to edit the view "checkout / cart", add if conditions on the current step if it's equal to "1" hide the prices, else display them.

<?php 
if($this->step == 1){
    // hide the prices
}else{
  // show the prices
}
It require some PHP knowledges.

Please Log in or Create an account to join the conversation.

Time to create page: 0.062 seconds
Powered by Kunena Forum