I am trying to add tracking number service into my VM shop. I made tracking_number column into SQL table virtuemart_products, now on orders/details page i want to show (using the API) route of that shipping. I dont know php very well so i can't do that alone, i have something like that:
$params = array(
'mode' => 'package',
'courier' => 'DHL',
'package' => 'HERE I NEED TO WRITE PACKAGE NUMBER FROM MYSQL',
'output' => 'xml',
'detailed' => true,
);
I have no idea how can i put the value from mySql into that array() Anybody can help?
up
For the product? you sell unique products? I doubt it.
You must use the plugin table for that and learn how to use the plugin tables.
virtuemart_orders, my mistake sorry :/