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.
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!
The actual form is on /freshwebdesign.ca/yogacara/?page_id=184 If you can help me get this working… i will be really grateful.
Try upgrading to the latest version of that slideshow plugin.
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.