Forum Replies Created
-
AuthorPosts
-
SteveKeymaster@vayu– Is the default WordPress editor visible as well? If so, you can’t have both. Let us know what post type this is for and we can help you better.
SteveKeymaster@beades48– Welcome to the Piklist community!
Please post your field code here so we can help you better.
SteveKeymaster@intrepidrealist– Did this work for you?
August 23, 2016 at 11:42 am in reply to: File upload preview and Add More limit in front-end forms #7231
SteveKeymasterWe decided to implement server-side validation first because it’s way more secure than javascript validation. We plan on implementing both in the future.
SteveKeymaster@jrcreative– Check out the VALIDATION tab in the Demos. We have a required
filefield there.
SteveKeymasterIt should be fixed now. The new page is: https://piklist.com/learn/type/file-structure/
Thanks for letting us know!
SteveKeymasterCurrently, not available with Piklist… sorry.
SteveKeymasterYou can’t allow WordPress to generate the standard taxonomy meta-boxes AND create fields with them as well. You are essentially duplicating inputs which conflict.
Use
'meta_box_cb' => falsewhen creating the taxonomy to stop the creation of default meta-boxes.
SteveKeymaster
SteveKeymaster@chrisatoddball– Glad you love Piklist!
If you have a few minutes would you mind leaving a review on WordPress.org? It really helps the project.
Thanks!
SteveKeymasterThis seems to be an issue with
groupadd_morefields only. Let us know if you see it in just simple add_mores, and then post your field here.August 23, 2016 at 11:03 am in reply to: Feature Request: Option for meta to show in a REST-API response #7223
SteveKeymasterSorry all– we’re still in the process of organizing it. I just added a list of the “types” of documentation to the sidebar. Should make it a little easier to find what you need >
SteveKeymaster@chrisatoddball– Welcome to the Piklist Community!
The settings page is registered with a filter. Place this code in your plugin or themes
functions.phpfile:function my_remove_filters(){ remove_filter('piklist_admin_pages', array('piklist_setting', 'admin_pages')); } add_action( 'after_setup_theme', 'my_remove_filters' );
SteveKeymaster@intrepidrealist– Welcome to the Piklist Community!
Piklist can certainly help build the screens you need, but you probably want to use role and capabilities to control which user has access to certain screens.
-
AuthorPosts