Hi Everyone
I used $included_files = get_included_files();
to get the list of all the files which are getting called on the current page.
this is the sequence
public_html/includes/classes/order_total.php
includes/languages/english/modules/order_total/ot_subtotal.php
public_html/includes/modules/order_total/ot_subtotal.php
public_html/includes/languages/english/modules/order_total/ot_shipping.php
public_html/includes/modules/order_total/ot_shipping.php
public_html/includes/languages/english/modules/order_total/ot_coupon.php
public_html/includes/modules/order_total/ot_coupon.php
public_html/includes/languages/english/modules/order_total/ot_tax.php
public_html/includes/modules/order_total/ot_tax.php
I went to public_html/includes/modules/order_total/ot_tax.php and pasted this code at the start and end to track the values of $order->info['tax_groups'] (inside function process())
I am not getting any value for $orderCode:function process() global $order, $currencies; //Added Code echo "START"; print_r($order); echo "END"; //Added Code
Where might $order be loosing the value?



