Ad blocker detected: Our website is made possible by displaying online advertisements to our visitors. Please consider supporting us by disabling your ad blocker on our website.
And didn't work for me WITH Gantry, without Gantry it seems to work fine and generate PDF's no problem. If you anyone has found a way to get it to work WITH Gantry please reply with the steps.
I've got it working with a RocketTheme template that requires gantry.
Steps as follows:
Within the template, update the following files:
/joomla/3.2/com_content/featured/default_item.php
/joomla/3.2/com_content/article/default.php
/joomla/3.2/com_content/category/blog_item.php
update them following instructions for updating earlier versions of joomla as follows:
$phocaPDF = false;
if (JPluginHelper::isEnabled('phocapdf', 'content')) {
include_once(JPATH_ADMINISTRATOR.DS.'components'.DS.'com_phocapdf'
.DS.'helpers'.DS.'phocapdf.php');
$phocaPDF = PhocaPDFHelper::getPhocaPDFContentIcon($this->item,
$params);
}
You will then need to make changes to /administrator/components/com_phocapdf/helpers/phocapdf.php as follows:
Change
if ($params->get('show_icons')) {
$text = JHTML::_('image','components/com_phocapdf/assets/images/pdf_button.png', JText::_('PLG_PHOCAPDF_CONTENT_PDF'));
to
if ($params->get('show_icons')) { $text = JText::_('PLG_PHOCAPDF_CONTENT_PDF');
I was able to find com_content in the following location:
/templates/gantry/html/com_content
which displayed featured, article and category folders but the php scripts in each above had minimal info (none that resembles what you said)
Double checking that this is for gantry 4.1.26
PS. This is a fresh install of Joomla with only Gantry and Phoca installed, so I do not believe there are any issues conflicting with other modules/components.
Hi, this means, you have the files in template part which then override the standard output - but even in this case the files in com_content should not be missed there