VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: eicherlist on March 21, 2014, 08:27:54 AM

Title: disable header and footer in productdetail-pdf
Post by: eicherlist on March 21, 2014, 08:27:54 AM
How to disable the header and footer in productdetail-pdf?

I enabled the in Configuration/Shopfront the option "Show PDF-Icon" (2. Option from top)



VM-Version: 2.0.26d
Joomla Version: 2.5.19
PHP 5.3.3-7+squeeze13

Thanks for any hints
Regards eicherlist

[attachment cleanup by admin]
Title: Re: disable header and footer in productdetail-pdf
Post by: K&K media production on March 23, 2014, 11:13:33 AM
Only with core hack. It is the same like the other thing with image in header.

go to components/com_virtuemart/helpers/vmpdf.php

around line 57 you find

$pdf->AddPage();

add this two lines above

$pdf->SetPrintHeader(false);
$pdf->SetPrintFooter(false);