Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #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?

    http://www.andrebrito.com.br

    #761597

    Hey 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 Torvik

    #761612

    I 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.

    #761623

    Hi,

    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 Torvik

    #761669

    I inserted this code in CSS CUSTOM and nothing has changed.

    #762687

    Hi,

    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

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.