Hi,
I’m trying to rewrite this code
<div class="post_payment_order_number">
<span class="post_payment_order_number_title"><?php echo vmText::_ ('COM_VIRTUEMART_ORDER_NUMBER'); ?> </span>
<?php echo $viewData["order_number"]; ?>
</div>
in to a page with PHP context. The code in this page is build up with HTML inside an PHP.
The first and second line is ok have I solved
echo '<div class="post_payment_payment_name">';
echo '<span class="post_payment_payment_name_title">' .vmText::_ ('VMPAYMENT_STANDARD_PAYMENT_INFO').'</span>';
but how do I write this code:
<?php echo $viewData['displayTotalInPaymentCurrency']; ?>.
I tried this:
echo $viewData["payment_name"];
and this
echo '<div>'$viewData['payment_name']'</div>';
Can some help?