3

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

K D
  • 115
  • 1
  • 3
  • 12
  • It show any subitem? Or just do not show options? – Emerson Rocha Aug 04 '13 at 18:49
  • It shows an edit option. I uploaded a screen shot of it. – K D Aug 04 '13 at 18:56
  • 2
    Well first, it is only going to show for those users who have edit rights. Keep that in mind, a guest will never see that unless you add other things to it such as print. It's very hard to style that differently but it can be done using a layout override. YOu can see that the beez template does this. – Elin Aug 04 '13 at 21:07
  • possible duplicate of [how to turn off frontend 'edit module' button Joomla 3.2.2](http://stackoverflow.com/questions/21865020/how-to-turn-off-frontend-edit-module-button-joomla-3-2-2) – BastianW Nov 13 '14 at 13:37

2 Answers2

1

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.

BastianW
  • 2,628
  • 7
  • 29
  • 38
0

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.

Joe Conlin
  • 5,976
  • 5
  • 25
  • 35