Hi,
Is it at all possible to have information for the user in 'order history' as follows:
current role : subscribed date : expires date : total (amount) : view link
I found
$name = db_result(db_query('SELECT name FROM {users} WHERE uid = %d', $uid));
$title = t('%username\'s order history', array('%username' => $name));
$header = array(
array('data' => t('ID'), 'field' => 'st.txnid', 'sort' => 'desc'),
array('data' => t('payment status'), 'field' => 'st.payment_status'),
array('data' => t('workflow'), 'field' => 'st.workflow'),
array('data' => t('total'), 'field' => 'st.gross'),
array('data' => t('created'), 'field' => 'st.payment_date'),
array('data' => t('expired'), 'field' => 'st.duedate'),
t('items ordered'),
t('operations')
);Is it possible to change in the store.module or is it perhaps a theming issue that I have to add in template.php?
Look so forward to any assistance and happy to pay for any help.
Lilian