Sameer Mahant
Forum Replies Created
-
The plug-in v1.0.9 is not working because the ‘datepicker.css‘ is missing in the plug-in folder.
If you are comfortable with using debug tool provided by your browser, you can open the console and see the error in console.To get WCK plug-in version 1.0.9 with WordPress v3.9, you have to manually comment line numbers 599 and 600 in the following file:
“/wp-content/plugins/wck-custom-fields-and-custom-post-types-creator/wordpress-creation-kit-api/wordpress-creation-kit.php”
Current code:
————-//datepicker wp_enqueue_script('jquery-ui-datepicker'); wp_enqueue_style( 'jquery-style', plugins_url( '/assets/datepicker/datepicker.css', __FILE__ ) );Modified code:
————–//datepicker // wp_enqueue_script('jquery-ui-datepicker'); // wp_enqueue_style( 'jquery-style', plugins_url( '/assets/datepicker/datepicker.css', __FILE__ ) );This is a temporary workaround to get plug-in working.
I hope the issue will get fixed with next release of the plug-in.
The plug-in v1.0.9 is not working because the ‘datepicker.css‘ is missing in the plug-in folder.
If you are comfortable with using debug tool provided by your browser, you can open the console and see the error in console.To get WCK plug-in version 1.0.9 with WordPress v3.9, you have to manually comment line numbers 599 and 600 in the following file:
“/wp-content/plugins/wck-custom-fields-and-custom-post-types-creator/wordpress-creation-kit-api/wordpress-creation-kit.php”
Current code:
————-//datepicker wp_enqueue_script('jquery-ui-datepicker'); wp_enqueue_style( 'jquery-style', plugins_url( '/assets/datepicker/datepicker.css', __FILE__ ) );Modified code:
————–//datepicker // wp_enqueue_script('jquery-ui-datepicker'); // wp_enqueue_style( 'jquery-style', plugins_url( '/assets/datepicker/datepicker.css', __FILE__ ) );This is a temporary workaround to get plug-in working.
I hope the issue will get fixed with next release of the plug-in.