Hi Nicolas
Thanks for your answer and the link.
Actually, I have set a confirmation page at the end.
Unfortunately, it just shows the shipping and payment chosen.
<span id="hikashop_checkout_status">
<?php
$array=array();
if(!empty($this->shipping_data)){
$array[]= JText::sprintf('HIKASHOP_SHIPPING_METHOD_CHOSEN',$this->shipping_data->shipping_name);
}
if(!empty($this->payment_data)){
$array[]= JText::sprintf('HIKASHOP_PAYMENT_METHOD_CHOSEN',$this->payment_data->payment_name);
}
echo implode('<br/>',$array);
?>
</span>
In usual online-stores, you get a final confirmation page where ALL DETAILS are listed again.
- Billing Address
- Delievery Adress
- Cart
- Shipping
- Payment
- and Confirm Button
How can i do this??