Hello everybody, when I print the pdf detail order I don't have the detail of vendor exactly on the footer of the page, in fact I have the "vendor_letter_html" just under the detail of order(under Total). I need a code maybe to change the line in red...
defined('_JEXEC') or die('Restricted access');
JHTML::stylesheet('vmpanels.css', JURI::root().'components/com_virtuemart/assets/css/');
if($this->print){
?>
<body onload="javascript:print();">
<?php echo $this->vendor->vendor_letter_header_html; ?>
<td align="right"> </td>
<h1><?php echo JText::_('COM_VIRTUEMART_ACC_ORDER_INFO'); ?></h1>
<div class='spaceStyle'>
<?php
echo $this->loadTemplate('order');
?>
</div>
<div class='spaceStyle'>
<?php
echo $this->loadTemplate('items');
?>
</div>
<div>
<?php echo $this->vendor->vendor_letter_footer_html ; ?>
</div>
</body>
<?php
Letter Foot is customisable in Shop/Invoices in VM2.0.24