APRESS SUPPORT Forums Apress Theme How to fix the Visual Composer Design Option Tab Missing In Theme

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #84
    Apress Support
    Keymaster

    Visual Composer’s Design Option can be enabled by modifying the Theme’s function file.

    1- Edit the Theme’s function file ( apress/functions.php )
    2- Go to line number 71
    3- Comment the – vc_set_as_theme(true)

    /*
    Visual Composer theme integration
    */

    if ( class_exists( ‘Vc_Manager’, false ) ) {

    if ( function_exists( ‘vc_set_as_theme’ ) ) {
    add_action( ‘vc_before_init’, ‘apress_vc_set_as_theme’ );
    function apress_vc_set_as_theme() {
    // vc_set_as_theme(true);
    }
    }
    }

    Thanks
    Apress Team

Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.