Forum Replies Created
-
AuthorPosts
-
SteveKeymaster@pers– Conditionals are currently getting a rewrite. Your code will work afterwards. Unfortunately, it’s taking a bit longer than we wanted.
SteveKeymaster@anderly– nice job!
To make it easier to find these in our forums, we will start tagging them “community plugin“.
SteveKeymaster@anderly– This definitely looks interesting. Instead of changing the core Piklist code you can create a plugin that adds your new field. Check out this forums posts from users that have created their own fields:
http://piklist.com/support/topic/new-field-type-switch/
http://piklist.com/support/topic/field-type-slider/
SteveKeymaster@pers– Just a little trick. If you want to keep all your lists absolutely the same, you can define the array first:
$choices = array(
'option1' => 'Document Title'
, 'option2' => 'Site URL'
, 'option3' => 'Site Title'
, 'option4' => 'Page number'
);
And then include $choices in the field array:
'choices' => $choices
Makes it easier to manage all three lists.
SteveKeymaster@pers– You can’t embed the same field (checkbox_nested_select) three times. Create three separate fields. Fields, embedded or not, can only be used once per form.
SteveKeymasterThat’s the first time we’ve heard of this issue. Can you try another browser and let us know if you still get the error?
SteveKeymaster@edbury– Please send us your WordPress and PHP versions. You can email it to us via our contact form.
SteveKeymasterI still don’t 100% understsand… but here’s an idea:
-Create a generic Top Level menu that has no content (we do this with Piklist).
- When admin’s log in, the CPT will be the first item in the Top Level.
- When non-admin’s log in, the other page will be the first.
Thoughts?
SteveKeymaster@ahale– Thank you for emailing us your screenshot. We updated the Getting Started guide with the new images.
SteveKeymasterDo you mean change: edit.php?post_type=piklist_demo ?
SteveKeymaster@johnmcalester– This is definitely something on our list. But until we put it together, this is how we would do it.
SteveKeymaster@jchamb– sorry for the late reply.
If you use two different files/sections with Piklist then the description will be placed nicely for each section.
SteveKeymaster@johnmcalester– Glad we could help. Wrote the tutorial here.
Also HTML has the readonly attribute, just not as flexible as on_post_status. But this would work:
,'attributes' => array(
'class' => 'small-text'
,'readonly' => 'readonly'
) -
AuthorPosts