Forum Replies Created
-
AuthorPosts
-
SteveKeymasterThis is a known bug > . Though Add-mores save data correctly, we are still working on presentation.
SteveKeymaster@r.cespa– Piklist doesn’t create the default taxonomy meta boxes that WordPress has, so this might not work the way you want. Right now converted existing terms to a checkbox or radio button list is the way to go.
SteveKeymaster@kjprince– Please switch to a WordPress default theme and let us know if you the problem has gone away.
SteveKeymasterI don’t see this. Can you post screenshots?
SteveKeymaster@r.cespa– Are you trying to save a taxonomy from the edit posts screens, or the edit taxonomy screen? Do you have any code you can post?
May 14, 2014 at 10:58 am in reply to: How to get metabox data from the form before to save a new post? #1720
SteveKeymaster@kattagami– This fix is just in another branch in our repo. It will be in the next major version of Piklist.
SteveKeymaster@achowell– From our user guide:
For most situations you do not have to define “scope”. Piklist will do it automatically for you.
Piklist allows you to mix-and-match field types within a form. So, one form can have fields that save information as post_meta, while other fields save to a taxonomy. Scope is what determines where the field data is saved. If you don’t set the scope parameter then it will default to where the field is used. For example, if you are creating a metabox, then scope will automatically be set to post_meta.
SteveKeymasterWell, that’s embarrassing. Just updated to 0.9.3.3 and included that file.
SteveKeymaster@achowell– You should be able to place any code you want in the main plugin file. Not sure if it’s a copy/paste error but the
add_custom_role()function is not closed.
SteveKeymaster
@jason is correct. Remove the scope parameter and it should work fine. For most situations you should not have to define scope and let Piklist automatically set it.
SteveKeymasterList Table is not fully flushed out yet. We’ve included it in demos so you can play with it. Once it’s completed, documentation will go up.
SteveKeymaster@kattagami– This is not possible… but it’s an awesome idea. We’ll put it on our list.
SteveKeymasterYup… you found a pretty ugly bug. You can make all the fields the same width by setting
'columns' => 12,in the text field. As for the space between, we’re going to have to work on that.May 1, 2014 at 8:48 pm in reply to: How to get metabox data from the form before to save a new post? #1689
SteveKeymaster@kattagami– You’re really close! Take a look at the piklist filter you updated,
wp_insert_post_data. The conditional we have in there specifically says not to only update the title if empty($data[‘post_title’]). Copy this function, rename it, and place it in your plugin/theme. Then change that conditional. It will work. -
AuthorPosts