Viewing 3 replies - 16 through 18 (of 18 total)
  • i can’t register on the forums… keeps giving me an error.

    captcha is not case sensitive. Use common letters.

    For those of you having issues with this plugin, the problem is that the jquery sortable plugin is not enqueued and needs to be. Find the plugin php file:
    woocommerce-checkout-manager.php

    and on line 1393, replace the enqueue script with these lines:

    if(!wp_script_is('jquery-ui-sortable', 'queue')){
         wp_enqueue_script('jquery-ui-sortable');
    }
    wp_enqueue_script( 'script_wccs', plugins_url( 'script_wccs.js', __FILE__ ), array( 'jquery' ), '1.2', true );

    Basically, I just enqueued jquery’s sortable plugin if it wasn’t already and then I placed the plugin developer’s script in the footer (just to sort out any potential placement issues).

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Adding custom fields won't work’ is closed to new replies.