If you feel more comfortable using WPBakery's Visual Composer, instead of the Vamtam Drag & Drop builder, please check the instructions below:


>>>>>>>>>>>>>>>>>>>>>>>>>

The code replacement below will prevent our editor from being enabled by default. If you still need to use it for some reason - for example, if you want to use the elements that come with the theme - you can still enable it by clicking on the VamTam tab next to Visual/Text.


If you edit vamtam-editor/editor-tpl.php, you will find this line:

<?php $status = get_post_meta( $post->ID, '_wpv_ed_js_status', true ) ?>


Replace it with:

<?php $status = false ?>




>>>>>>>>>>>>>>>>>>>>>>>>>

The code replacement below will disable our editor for all newly created pages. You can still enable it by clicking on its button, should you wish to do so.


Please edit vamtam-editor/editor-tpl.php and replace this line:

<input type="hidden" id="wpv_ed_js_status" name="_wpv_ed_js_status" value="<?php echo esc_attr( empty($status) ? 'true' : $status ) ?>" />


with:

<input type="hidden" id="wpv_ed_js_status" name="_wpv_ed_js_status" value="<?php echo esc_attr( empty($status) ? 'false' : $status ) ?>" />