-
AuthorPosts
-
December 2, 2014 at 2:40 pm #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 AnswerDecember 2, 2014 at 9:32 pm #361779Hi 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,
ElliottDecember 3, 2014 at 12:52 am #361885This reply has been marked as private.December 3, 2014 at 1:43 am #361898This reply has been marked as private.December 3, 2014 at 6:59 pm #362374Hey!
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,
ElliottDecember 3, 2014 at 8:01 pm #362433This reply has been marked as private.December 3, 2014 at 8:09 pm #362439Hi!
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,
YigitDecember 3, 2014 at 8:50 pm #362469This reply has been marked as private.December 3, 2014 at 9:04 pm #362475This reply has been marked as private.December 4, 2014 at 6:04 pm #363059Hey!
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,
ElliottDecember 5, 2014 at 9:23 am #363464This reply has been marked as private.December 5, 2014 at 5:21 pm #363694Hi!
We are going to need FTP access if you would like us to take a look.
Cheers!
YigitJuly 27, 2015 at 1:25 pm #479049Hi, 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!
July 28, 2015 at 3:30 pm #479761Hi!
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,
ElliottJuly 29, 2015 at 9:42 am #480090Ok, 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!
July 29, 2015 at 12:50 pm #480162Hi!
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,
YigitJuly 29, 2015 at 3:05 pm #480266Hi, thanks, but that doesn’t seem to make any change… Alas
Thanks for your help!
DavidJuly 29, 2015 at 3:09 pm #480276Hey!
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,
YigitJuly 29, 2015 at 3:12 pm #480281That worked perfectly, thanks! ; )
-
AuthorPosts
- The topic ‘Disable page builder on enfold’ is closed to new replies.