Viewing 3 replies - 1 through 3 (of 3 total)
  • me too, can’t add entry after update

    Sameer Mahant

    (@sameer-mahant)

    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.

    Plugin Author Cristian Antohe

    (@sareiodata)

    This bug is confirmed and will get fixed as soon as possible.

    I personally don’t know why Custom Post Types pages aren’t loading (since we have a 404 on a css file), but we shouldn’t have included the datepicker css in the free version so it will be fixed as soon as possible.

    Also, feel free to make the changes Sameer Mahant mentioned as the same fix will be applied in the next version.

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

The topic ‘Custom Post Types Not Working’ is closed to new replies.