Cannot disable button in front-end for joomla 3.1.5?

5.7k Views Asked by At

I'm having issues removing this button icon from my joomla site.

enter image description here

I went to the article options and selected Hide/no for all the options and yet this icon does not dissappear. The full site looks as follows.

enter image description here

Does anyone know how to remove this icon? Can someone kindly assist?

When you click on the button you get the following options.

enter image description here

2

There are 2 best solutions below

0
On

I was searched for a solution for the same issue you had when I found your question. The solution I took was a template overwrite, which removed the edit button for me. You need to change the com_content/article/default.php file and change the line:

$canEdit = $params->get('access-edit');

to

$canEdit = false;

A more detailed explanation can be found in the source here. This solved the issue for me.

0
On

These links are all control in Global Configuration > Article Options. If you have them set to off, then you need to LOG OUT of the admin and then look at your page. They will be gone at that point.