The Check/Money Order option is working fine.
The price amount is being properly displayed in the paypal IPN checkout page"Step 3 of 3 - Order Confirmation".
But when click to check out. In the paypal window its showing 0.0
i.e. the hidden data (price) being sent is showing zero.
The code shows like
Code:
$optionsTrans = array(
'currency_code' => $my_currency,
'paypal_order_id' => $paypal_order_id,
//'invoice' => '',
'item_name' => MODULE_PAYMENT_PAYPAL_PURCHASE_DECRIPTION_TITLE,
'item_number' => 'Store Receipt',
//'num_cart_items' => sizeof($order->products),
'upload' => sizeof($order->products),
'amount' => number_format($this->transaction_amount, $currencies->get_decimal_places($my_currency)),
'shipping' => '0.00',
);
Will the change of variable affect the price??