• Hi, I’ve found that the CF7 form validation won’t work if are using Conditional Fields PRO. The plugin only checks for the free version, what causes the validation error on the Conditional Fields PRO version which uses a different folder. I’ve made this modification in dnd-upload-cf7.php to make it work:
    replaced this:
    if( in_array('cf7-conditional-fields/contact-form-7-conditional-fields.php', get_option('active_plugins') ) ){

    to this
    if( in_array('cf7-conditional-fields/contact-form-7-conditional-fields.php', get_option('active_plugins') ) || in_array('contact-form-7-conditional-fields-pro/contact-form-7-conditional-fields.php', get_option('active_plugins') )){

    I don’t know if is the best solution, but that fixed the problem.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Fix for Conditional Fields PRO’ is closed to new replies.