Looking to NOT display order item & order history in tabs - front end order view

Started by rustle, January 26, 2017, 16:31:50 PM

Previous topic - Next topic

rustle

Hi Guys
I need help with calling  the order item & order history in separate div's as opposed to the current tab system... is this possible?

I can see the call for the tabs in the front end, but I am unsure of the syntax to call both the order items & order hisrtory separately

Please help fellow virtuemarters 8)

<div class="spaceStyle vm-orders-items">
   <?php

      $tabarray = array();

      $tabarray['items'] = 'COM_VIRTUEMART_ORDER_ITEM';
      $tabarray['history'] = 'COM_VIRTUEMART_ORDER_HISTORY';
               
      shopFunctionsF::buildTabs ( $this, $tabarray); ?>
               
</div>

rustle


rustle

SOLVED

To call the  order history in the front end
<?php echo $this->loadTemplate('history'); ?>

To call the  order items in the front end
<?php echo $this->loadTemplate('items'); ?>

To call the order the front end
<?php echo $this->loadTemplate('order'); ?>