How to remove Joomla edit button from listing detail page

From JReviews Documentation
Revision as of 20:46, 4 November 2009 by Jreviews (Talk | contribs) (Created page with 'You need to edit Joomla's com_content template file: *\components\com_content\views\article\tmpl\default.php And delete this: <source lang="php"> <?php if ($canEdit) : ?> <td al…')

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

You need to edit Joomla's com_content template file:

  • \components\com_content\views\article\tmpl\default.php

And delete this:

<?php if ($canEdit) : ?>
<td align="right" width="100%" class="buttonheading">
	<?php echo JHTML::_('icon.edit', $this->article, $this->params, $this->access); ?>
</td>
<?php endif; ?>
 
 
 
 
[[Category:JReviews]]
[[Category:Listing Detail Page]]
[[Category:Joomla]]