Is it possible to hide common buttons ?

kouros91

Member
Hi. I would like to have only my php and js buttons near each row and not at the position for several rows.
Is it possible to hide buttons at the top ? Cause my php routine runs for one row only .
Hide :
upload_2017-2-4_0-10-3.png

show:
upload_2017-2-4_0-9-29.png
 

Attachments

  • upload_2017-2-4_0-5-37.png
    upload_2017-2-4_0-5-37.png
    17.2 KB · Views: 130
  • upload_2017-2-4_0-6-24.png
    upload_2017-2-4_0-6-24.png
    19.6 KB · Views: 114
  • upload_2017-2-4_0-7-17.png
    upload_2017-2-4_0-7-17.png
    30.5 KB · Views: 122
  • upload_2017-2-4_0-8-16.png
    upload_2017-2-4_0-8-16.png
    30.9 KB · Views: 118
You could probably hide it with CSS, in a custom CSS file (see wiki):

#listform_16_com_fabrik_16 th.fabrik_actions .fabrik_action {
display: none;
}

Replace listform_16_com_fabrik_16 with the actual ID of your list's form, you may have to inspect your page. Or just replace 16 with the numeric id of your list (if this is a normal component display of the list, not a content plugin or module).

-- hugh
 
Ok . thank you. But is it possible to select php plugin buttons i would like to display on the common bar buttons ?
 
hi,

I have the same issue. I just want to remove the actions from the list. Now I am confused with this:
"Or just replace 16 with the numeric id of your list"
How would the code be to just hide the actions from the list?
 
Code:
#listform_2_com_fabrik_2 th.fabrik_actions  {
display: none;
}
(without the last .fabri_action)
 
That's it!!!
Thanks you!
maybe it would be a good improve to have this settings in fabriks Joomla GUI.
You can just control it with the access rights - and they work for forms and tables the same way.
 
oh wait - it doesn't work for logged in users.
you can log in here
161121/anmelden
with vendor14 / vendor14

here's the list
161121/vendors
 
Same class but td selector
#listform_2_com_fabrik_2 td.fabrik_actions {
display: none;
}

Keep in mind that hiding something via CSS or JS is never a security means. Everybody who knows how to can make it visible again and use it.
 
thanks, that's it!
I just want to make it a little harder for a user to delete his account whenever he browses other users ;)
 
We are in need of some funding.
More details.

Thank you.

Members online

Back
Top