Hello
I install the component and the plugin phoca pdf on te template telline iii. If I remplaece the file /web/j17/templates/ja_teline_iii/html/com_content/article/default.php with the file from phoca the icon appears but I loose the template format on the tile icons etc..
they have another solution but I can find the place for copy the code.
there is the solution from phoca:
Edit the following file (if your template overrides Joomla! content files, you need to edit this file in your template’s folder):
components/com_content/views/article/tmpl/default.php
line cca 34
FROM:
<?php if ($params->get(‘access-edit’) || $params->get(
‘show_print_icon’) || $params->get(‘show_email_icon’)) : ?>
<ul class=”actions”>
<?php if (!$this->print) : ?>
TO:
<?php
$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);
}
?>
<?php if ($params->get(‘access-edit’) || $params->get(
‘show_print_icon’) || $params->get(‘show_email_icon’) || $phocaPDF)
: ?>
<ul class=”actions”>
<?php echo $phocaPDF; ?>
<?php if (!$this->print) : ?>
could you help me
thank