Forum Replies Created

Viewing 15 posts - 31 through 45 (of 122 total)
  • Author
    Posts
  • in reply to: Activating Piklist slows site down considerably #2984
    Kevin
    Keymaster
    This reply has been marked as private.
    in reply to: Can't remove file with the file field #2979
    Kevin
    Keymaster

    This is fixed in the upcoming release later today.

    Thanks,

    Kevin

    in reply to: Activating Piklist slows site down considerably #2978
    Kevin
    Keymaster

    @egamipeaks

    Can you tell us a little more about your DB? How many posts records and meta records are there? Are you doing any major meta queries (3 or more meta queries in a query? Seeing your queries jump from 100 to 1600 makes me think you have some big ones)? We have spent some considerable time updating our query enhancements for the upcoming version and if your interested we can send a beta copy your way to see if it resolves the issues.

    Thanks,

    Kevin

    in reply to: Using Yoast with Piklist #2212
    Kevin
    Keymaster

    @tuckerjoenz

    Of course 🙂 You will have to move your content from the post meta field to the post_content for anything already created, however for the field you just need to specify the scope and change the field name like so…

    
    piklist('field', array(
      'type' => 'editor'
      ,'scope' => 'post'
      ,'field' => 'post_content'
      ,'label' => 'Add Story'
      ,'description' => 'Stories of Impact'
      ,'options' => array (
        'media_buttons' => true
        ,'teeny' => true
        ,'textarea_rows' => 5
        ,'drag_drop_upload' => true
      )
    ));
    
    in reply to: Fields multiply after save #2208
    Kevin
    Keymaster

    HA 🙂 Not a problem, let us know if you need anything else.

    in reply to: Fields multiply after save #2206
    Kevin
    Keymaster

    @tuckerjoenz-

    Thats a odd one 🙂 You have two problems with the code you posted.

    1. Remove add_action( ‘save_post’, ‘partners_post_type’ ); from functions.php, you just need add_filter(‘piklist_post_types’, ‘partners_post_type’); to register a new post type.
    2. All of your fields have the same name so you are saving all of the data to one field (‘field’ => ‘text_class_regular’) and then when they render each field pulls that data and displays it, making it appear that it saved multiple times. Always make sure to give unique names to all fields.
    in reply to: Editor row option not working #2190
    Kevin
    Keymaster

    @Jason-

    We will look into this, it may be a WordPress issue.

    Thanks

    in reply to: Breaking more stuff — adding fields to existing add_more #2184
    Kevin
    Keymaster

    @jason-

    Thanks for the field information, I will see what we can do. Really its only serialized groups that have this issue and its not all of the time, it depends on the new field being added (we actually improved support for this in 0.9.4). While we consider this an edge case we will of course make every effort in the next release or so to see if we can make this even better.

    Thanks

    Kevin

    in reply to: New Conditional Bug… YAAAY! #2182
    Kevin
    Keymaster

    You guys rock, always pushing the new feature as soon as it comes out 🙂 We have added this to our very small but current issue list and should have it resolved in the next release which is planned for sometime next week.

    Thanks again for reporting this and being so thorough, the gifs rock!

    Kevin

    in reply to: Server-side Validation #2181
    Kevin
    Keymaster

    @diegoliv-

    First, thanks for the email, we will get back to you on the other items soon. As for your question, of course 🙂

    So we include server side validation because its more secure and reliable, however you can add any client side improvements pretty easily. When defining the field just assign and classes or data attributes in the attributes parameter and you can use those to target those fields for the library of your choice. If you have one in mind and would like us to help you get started just let us know, we are here to help.

    Thanks,

    Kevin

    PS We have already had users use this method to make select fields use the Chzn dropdowns and it was pretty easy.

    in reply to: Piklist adds CSS to frontend theme #2173
    Kevin
    Keymaster

    @cyclissmo-

    We have already taken care of this in the next release which will be out in a few days. Thanks for posting!

    Kevin

    in reply to: Google Map #2125
    Kevin
    Keymaster

    @bicho44

    What are the core features for such a field and how should they work. This would be a great place to get that discussion rolling. What kinds of things do you feel are necessary for such a field?

    On a related note, in the coming weeks we will start to show people how to create their own fields easily with Piklist so stay tuned!

    Thanks,

    Kevin

    Kevin
    Keymaster

    That’s what we are here for 🙂

    You are exactly right. We know in a Piklist plugin we can control all folder and file names, however to avoid collisions in the theme we put this stuff in a piklist directory in the theme.

    Thanks,

    Kevin

    Kevin
    Keymaster

    @ianmuscot

    You are so close 🙂 In your plugin folder create a parts directory and meta-boxes inside of that for your meta boxes. So to be clear, if your plugin is named piklist-test and your meta box file is named meta-box-test.php the path should be

    piklist-test/parts/meta-boxes/meta-box-test.php

    Let us know how it goes.

    Thanks,

    Kevin

    PS On your field definition the position attribute is rarely needed as the system handles it for you.

    in reply to: Radio field returns array instead of string #2082
    Kevin
    Keymaster

    @exacks44

    How are you loading data into $my_plugin_settings is what I need to know. Are you using get_post_meta or the piklist function or something else?

    Thanks,

    Kevin

Viewing 15 posts - 31 through 45 (of 122 total)