Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Matthew Muro

    (@mmuro)

    Without a link, there’s not much I can do to debug.

    The most common issue is when a theme overrides the jQuery being included on the page by VFB.

    Thread Starter freshweb

    (@freshweb)

    my test site is freshwebdesign.ca/yogacara. I am trying a couple of other forms but I really liked how VFB was layout. Would love to use your plugin. Thanks!

    Thread Starter freshweb

    (@freshweb)

    The actual form is on /freshwebdesign.ca/yogacara/?page_id=184 If you can help me get this working… i will be really grateful.

    Plugin Author Matthew Muro

    (@mmuro)

    Try upgrading to the latest version of that slideshow plugin.

    Thread Starter freshweb

    (@freshweb)

    fixed it by adding the following to functions.php

    add_action( 'template_redirect', 'mysite_dequeue_script', 99 );
    function mysite_dequeue_script() {
    	if( !is_front_page() ) return;
    	wp_dequeue_script( 'jquery-form-validation' );
    	wp_dequeue_script( 'jquery-ui-core ' );
    	wp_dequeue_script( 'visual-form-builder-validation' );
    	wp_dequeue_script( 'visual-form-builder-quicktags' );
    	wp_dequeue_script( 'visual-form-builder-metadata' );

    Now I can use your cool plugin.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘[Plugin: Visual Form Builder] Plugin conflicts with slider’ is closed to new replies.