Forum Replies Created

Viewing 15 posts - 2,776 through 2,790 (of 2,964 total)
  • Author
    Posts
  • in reply to: Set PikList to use https:// #706
    Steve
    Keymaster

    @web doctor– What is the IE error?

    in reply to: I would like to contribute to piklist #701
    Steve
    Keymaster

    @lobsterman– That would be great. Thank you so much. Please email an svn patch to contribute at piklist dot com.

    in reply to: add field to taxonomy #700
    Steve
    Keymaster

    Taxonomy fields are supported!  Here’s the documentation.

    in reply to: Set PikList to use https:// #696
    Steve
    Keymaster

    Good catch.

    Please change all instances of:

    WP_CONTENT_URL  to  content_url()

    WP_PLUGIN_URL  to  plugins_url()

    That should fix the issue… let me know.

    We’ll release the changes in the next version.

    in reply to: Set PikList to use https:// #693
    Steve
    Keymaster

    Hey John– What references are you talking about?  I believe the only HTTP references are external.

    in reply to: Post submission tutorial #691
    Steve
    Keymaster

    Currently, we do not. The best way to stay up to date is the email list.

    in reply to: Post submission tutorial #689
    Steve
    Keymaster

    @studioleland– This is not currently supported. When we finalize frontend form validation we will make this available. To stay up-to-date make sure you sign up for email updates on the home page.

    in reply to: Taxonomies, custom post statuses, and wp_tag_cloud() #688
    Steve
    Keymaster

    @james_MC–  This looks good.  Just curious though… why didn’t you use a slightly modified version of the default WordPress _update_post_term_count.

    If you remove the hard coded references to “publish” and pass an array of post statuses it will work as well.

    in reply to: wp-helpers 'breaks' after plugin install #685
    Steve
    Keymaster

    This should be fixed.  Please verify.

    in reply to: Removing jquery-ui.smoothness.css from front-end #683
    Steve
    Keymaster

    In class-piklist-form.php, we enqueue the style:
    wp_enqueue_style('jquery-ui-core');
    to remove, add this to your functions.php file:
    wp_dequeue_style('jquery-ui-core');

    If you want to remove it on the frontend only, something like this should work (untested):
    function my_scripts()
    {
    wp_dequeue_style('jquery-ui-core');
    }
    add_action('wp_enqueue_scripts','my_scripts',99);

    in reply to: Lock field on multiple post status #681
    Steve
    Keymaster

    John– You definitely found a bug. I believe you have to register your statuses with Piklist for this to work.   Within your TICKET CPT, add the register post status code.  It can be an exact duplicate of the WordPress defaults.  Try adding this when you register the TICKET CPT.  You can see the full format here.


    ,'status' => array(
    'draft' => array(
    'label' => 'Draft'
    )
    ,'auto-draft' => array(
    'label' => 'auto-draft'
    )
    ,'pending' => array(
    'label' => 'Pending'
    )
    ,'future' => array(
    'label' => 'Scheduled'
    )
    ,'publish' => array(
    'label' => 'Published'
    )
    ,'private' => array(
    'label' => 'Private'
    )
    ,'trash' => array(
    'label' => 'Trash'
    )
    ,'inherit' => array(
    'label' => 'inherit'
    )
    )

    Let us know if this works.

     

     

    in reply to: Taxonomies, custom post statuses, and wp_tag_cloud() #678
    Steve
    Keymaster

    @James_Mc– This is interesting.  Please let us know when you have a good example.

    in reply to: Lock field on multiple post status #677
    Steve
    Keymaster

    @johnmcalester–  I updated this tutorial to explain how to show values on a group or range of post statuses.  Let me know if you need further clarification.

    Yes, a field can be set to always read-only by including all post statuses in the range.

    in reply to: Custom Post Type Relationships #676
    Steve
    Keymaster

    Hi David– We have some basic internal code working, but we need to make it Piklist ready (and easy to use).  Unfortunately, there are a few other items we need to take care of first. Sorry.

    in reply to: Integrate PikList into Theme WITHOUT using the plugin. #671
    Steve
    Keymaster

    @sebascar– You can include Piklist in your plugin or theme just like any other plugin. You would want to require_once piklist.php  from your main plugin file or your theme’s functions.php file.

    However, this really is not recommended.

    By doing this, your users will not be able to upgrade Piklist in the future.  A better way is to include the “Piklist Checker” code in your theme or plugin.  This code checks if Piklist is installed and if not, will notify the user.

    You can see how it works by checking our our WordPress Helpers plugin. Try activating it without Piklist.

    The latest version of Piklist Checker can always be found here.

Viewing 15 posts - 2,776 through 2,790 (of 2,964 total)