-
AuthorPosts
-
March 15, 2017 at 6:45 pm #761559
Personally, my client wants to update the information on the site alone without our help. What better way should I leave the system in wordpress for it to use?
Is it common for the Enfold theme to be used this way? How do I let him create new galleries, new posts? Is it safe for us developers to let the client update information on the site?
March 15, 2017 at 8:25 pm #761597Hey mleite1,
You can use the User Role Editor – https://wordpress.org/plugins/user-role-editor/ – to enable or disable certain parts of WordPress.
It’s not a big deal to do it for your customer, ensure you only enable him to edit Pages, Posts, Media (content); not settings/theme options.
It’s safe to edit posts/pages since WordPress has a Revision System that allows you go back and undo changes without problems.
Best regards,
John TorvikMarch 15, 2017 at 8:41 pm #761612I want to hide the AVIA LAYOUT BUILDER. That is the problem. As regards to hiding items from WP I use CUSTOMIZE.
My question is: Has Enfold been developed for end-user, CLIENT or developer? Will my client have difficulties? I’m afraid.
March 15, 2017 at 9:27 pm #761623Hi,
Actually, the Enfold was developed for the developers, but you can customize what will or won`t be showed. To hide the Page builder,for example, you need to use this custom code:
add_action( 'admin_print_styles', 'enfold_customization_admin', 10 ); function enfold_customization_admin() { echo '<style type = "text/css">'; echo '#avia-builder-button { display: none; }'; echo '</style>'; }
So, you can ask me how to disable other parts of the theme and I`ll help you :)
Best regards,
John TorvikMarch 15, 2017 at 11:10 pm #761669I inserted this code in CSS CUSTOM and nothing has changed.
March 17, 2017 at 7:48 pm #762687Hi,
You need to add this code in your functions.php – but I recommend that you use a child theme. To learn how to use the child theme, see this video: http://kriesi.at/documentation/enfold/using-a-child-theme/
Best regards,
John Torvik -
AuthorPosts
- You must be logged in to reply to this topic.