Problem:
Hide Fields and Views and Access buttons in front-end editor.
Solution:
Add this code in your theme’s or child theme’s functions.php file:
function remove_toolset_buttons(){ if(!is_admin()){ add_filter( 'toolset_editor_add_form_buttons', '__return_false' ); add_filter( 'toolset_editor_add_access_button', '__return_false'); } } add_action( 'init', 'remove_toolset_buttons' );
In above code, replace 999 with your View ID.
This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.
Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
- | 12:00 – 17:00 | 12:00 – 17:00 | 12:00 – 17:00 | 12:00 – 17:00 | 12:00 – 17:00 | - |
- | 18:00 – 21:00 | 18:00 – 21:00 | 18:00 – 21:00 | 18:00 – 21:00 | 18:00 – 21:00 | - |
Supporter timezone: Asia/Karachi (GMT+05:00)