Support

Account

Home Forums ACF PRO acf-vc Still Requires ACF Reply To: acf-vc Still Requires ACF

  • 		function showAdminMessages()
    		{
    			if ( !is_plugin_active( 'js_composer/js_composer.php' ) and  !is_plugin_active( 'advanced-custom-fields-pro/acf.php' )) {
    				showMessage("ACF-VC Integrator require both WP Bakery Visual Composer and Advanced Custom Fields plugins installed and activated.", true);				
    			} elseif ( !is_plugin_active( 'js_composer/js_composer.php' ) ) {
    				showMessage("ACF-VC Integrator require WP Bakery Visual Composer plugin installed and activated.", true);			
    			} elseif ( !is_plugin_active( 'advanced-custom-fields-pro/acf.php' ) ) {
    				showMessage("ACF-VC Integrator require Advanced Custom Fields plugin installed and activated.", true);		
    			}	
    		}
    		add_action('admin_notices', 'showAdminMessages');

    I edited the path in file: acf-vc-integrator/acf-vc-integrator.php

    From “advanced-custom-fields/acf.php” TO “advanced-custom-fields-pro/acf.php”

    I checked other files as well, it didn’t calls anything else from anywhere else. Hope they fix it in next version. My plugin is working fine without any error as for now. I’ll see if this Integration of ACF with Visual Composer is working good, I’ll update here. Cheers!

    === UPDATE ===
    The plugin is working, but VC by default is showing ACF Custom Fields, so I think no need to use ACF-VC Plugin.