Hello, this is the content of the file components/com_virtuemart/themes/ja-zeolite/templates/checkout
[PHP]
<?php
if( !defined( ‘_VALID_MOS’ ) && !defined( ‘_JEXEC’ ) ) die( ‘Direct Access to ‘.basename(__FILE__).’ is not allowed.’ );
ps_checkout::show_checkout_bar();
echo $basket_html;
$varname = ‘PHPSHOP_CHECKOUT_MSG_’ . CHECK_OUT_GET_PAYMENT_METHOD;
echo ‘<h4>’. $VM_LANG->_($varname) . ‘</h4>’;
echo ps_checkout::list_payment_methods( $payment_method_id );
?>
[/PHP]
this (1) echo $basket_html; is responding for the basket with the products.
this (2) echo ps_checkout::list_payment_methods( $payment_method_id ); is responding for the payment methods.
if i put code (2) above code (1) it looks however i want but it does not work. So what should i do to make it work?