I am trying to add a pdf icon and function to our full product listing in the category / default view.
I have tried both of these with no success yet:
<?php
$link = 'index.php?option=com_virtuemart&view=category&virtuemart_category_id=0';
echo $this->linkIcon($link . '&format=pdf', 'COM_VIRTUEMART_PDF', 'pdf_button', 'pdf_button_enable', false);
?>
<?php
$link = 'index.php?option=com_virtuemart&view=category';
echo $this->linkIcon($link . '&format=pdf', 'COM_VIRTUEMART_PDF', 'pdf_button', 'pdf_button_enable', false);
?>
it doesn't break but just looks like a regular page.
any suggestions?