Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #361442

    Hello,
    I bought 2 times this template , please help me , I want to disable web page builder . I also agree to pay for this service . It is possible ?
    Waiting for Answer

    #361779

    Hi buscofen89!

    I’m not sure why you would want to disable that but you can do so by adding this to the bottom of your functions.php file.

    add_filter( 'avf_builder_boxes', 'enfold_customization_remove_builder' );
    function enfold_customization_remove_builder( $b ) {
    	$b[0]['page'] = array();
    	return $b;
    }

    Best regards,
    Elliott

    #361885
    This reply has been marked as private.
    #361898
    This reply has been marked as private.
    #362374

    Hey!

    Add this around line 17 in your functions.php file.

    add_theme_support('avia_disable_import_export');
    

    And try commenting out line 288 in /enfold/config-templatebuilder/avia-template-builder/php/template-builder.class.php.

    //new avia_tinyMCE_button($tiny);
    

    Regards,
    Elliott

    #362433
    This reply has been marked as private.
    #362439

    Hi!

    Please go to Enfold/framework/css folder and open avia_admin.css file and following code into it

    .avia_section_header.goto_theme_update {
    display: none!important;
    }

    Regards,
    Yigit

    #362469
    This reply has been marked as private.
    #362475
    This reply has been marked as private.
    #363059

    Hey!

    Yigit’s code is working fine on my XAMPP setup. Try adding it to the top of the file like so.

    .avia_section_header.goto_theme_update {
    display: none!important;
    }
    
    #avia_options_page textarea, #avia_options_page input[type="text"], #avia_options_page input[type="password"], #avia_options_page input[type="file"], #avia_options_page input[type="button"], #avia_options_page input[type="submit"], #avia_options_page input[type="reset"], #avia_options_page select , .avia_select_unify{
    border-color: #E2EAED;
    }

    Regards,
    Elliott

    #363464
    This reply has been marked as private.
    #363694

    Hi!

    We are going to need FTP access if you would like us to take a look.

    Cheers!
    Yigit

    #479049

    Hi, I’m looking to disable the avia builder, the code snippet in functions.php worked, but I’m also looking to disable any pre-made layout for the posts page (how to get rid of the titles, the share buttons, the comments section etc…, and to make it take the full width ?

    Thanks for your help!

    #479761

    Hi!

    You can disable most of those elements in Dashboard > Enfold > Blog Layout.

    For the comments just uncheck the “Allow comments” on the post or if you want it done on all posts then you can turn off comments in Dashboard > Settings > Reading.

    For the title try changing line 143 in the /enfold/includes/loop-index.php file from this.

    echo $title;
    

    To this.

    if ( !is_single() ) { echo $title; }
    

    And you can change the layout for each post with the “Sidebar settings” option when editing the post.

    Regards,
    Elliott

    #480090

    Ok, thanks, but it seems that I can’t make the layout to take the full width of the page (see link); any idea how to correct that? Thanks!

    #480162

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #top .fullsize .template-blog .post .entry-content-wrapper > *, #top .fullsize .template-blog .post .entry-content-wrapper {
    max-width: 100%; 
    }

    Regards,
    Yigit

    #480266

    Hi, thanks, but that doesn’t seem to make any change… Alas
    Thanks for your help!
    David

    #480276

    Hey!

    Please try adding !important rule as following

    #top .fullsize .template-blog .post .entry-content-wrapper > *, #top .fullsize .template-blog .post .entry-content-wrapper {
    max-width: 100% !important; 
    }

    Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field

    Regards,
    Yigit

    #480281

    That worked perfectly, thanks! ; )

Viewing 19 posts - 1 through 19 (of 19 total)
  • The topic ‘Disable page builder on enfold’ is closed to new replies.