Page 1 of 1

PDF link shows on all pages without the icon

Posted: 05 Jan 2012, 21:03
by cwmavontuur
I installed Phoca PDF, and it is working fine.
But:

It shows the Icon on pages where the option "Print Icon" is set to "Show"
On all the other pages it shows a text-link ( PDF ) :? This link is working perfect but I do not want a link nor an icon on these pages.

Anyone a solution?

Regards,

Christian

And a great 2012!!! 8)

Re: PDF link shows on all pages without the icon

Posted: 05 Jan 2012, 21:14
by cwmavontuur
This is not a Bump but the solution to my own problem!

I solved this by a little change in default.php:
I placed the PDF link inside the if statement "$params->get('show_print_icon')".

Code: Select all

                <?php if ($params->get('show_print_icon')) : ?>
                    <?php echo $phocaPDF; ?>
                    <li class="print-icon">
                        <?php echo JHtml::_('icon.print_popup', $this->item, $params); ?>
                    </li>
                <?php endif; ?>
:D

Re: PDF link shows on all pages without the icon

Posted: 09 Jan 2012, 19:50
by Jan
Ok