Basically I'm trying to add product name and custom field in the order history view.
Looking in the viewsorderstmpldetails_items.php I can see that order_item_name; ?> shows the product name
coming from the orderdetails array in viewsordersview.html.php
here it calls the model function(getMyOrderDetails which is in orders model)
$orderDetails = $orderModel ->getMyOrderDetails();
I've tried to replicate this for the list view, but it doesn't recognise the indexes in this statement $orderbt = $orderDetails['details']['BT'];
does anyone know where these indexes are coming from, or even what information should be contained in the 'details' or 'BT' indexes??
Or am I going about this the right way?
Versions are:Joomla 3.6.2 and Virtuemart 3.0.16
