Forum Replies Created
-
AuthorPosts
-
SteveKeymaster@kattagami– We really appreciate your support of Piklist.
Closing ticket.
SteveKeymaster@davisdp– Welcome to the Piklist community!
If I’m reading your post correctly, you understand admin forms, but not front end forms:
-The current version of Piklist is really for building fields in the WordPress admin. The next version of Piklist will make frontend forms possible… and as easy as the backend ones.If I’m wrong, and you want to learn about backend forms:
-Read our Getting Started post. If you don’t understand something on the post, or you think we can explain something better, please let us know.
-Check out the Piklist built-in Demos. You can easily use this code in your own project.To use WP_Query to retrieve data:
-Piklist stores everything the standard WordPress way. In “most” cases the fields you create will be storing “meta”: post_meta, user_meta and term_meta. You can use the WP_Query meta query to find the right posts to display.
-To display your data you will probably use functions like get_post_meta. This post explains how to display data (towards the end of the post)Please feel free to post as many questions as you want. We strive to provide the best support for any plugin.
SteveKeymaster@fmalinge– WordPress automatically assigns a unique identifier to each post… the Post ID.
SteveKeymasterMy pleasure…
closing ticket.
SteveKeymasterThis can definitely be done by Piklist! In fact, sample code is already in the built-in demos:
–Activate the demos
-Go to: Add New Demo
-Click on the “Advanced” Tab.
-The field “Content Section (Grouped)” is pulling in Post Titles to a dropdown.The code is located in:
wp-content/plugins/piklist/add-ons/piklist-demos/parts/meta-boxes/field-add-more.php
Let us know if that helps.
SteveKeymasterSorry for the late reply.
You can do this with the beta, which I believe you have.
Here’s a very simple example. This code will disable any meta-box with the name “Text Fields”.
function my_disable_metabox($part_data, $folder) { if (isset($part_data['title']) && $part_data['title'] == 'Text Fields') { return; } return $part_data; } add_filter('piklist_part_add','my_disable_metabox', 10, 2);
SteveKeymaster@irene– I know it’s a bit of a shock, but Piklist can’t do everything. 😉
This one requires some css:
body.post_type-YOUR-POST-TYPE a.add-new-h2 { display: none; }
SteveKeymaster@mbnoimi– Piklist is not designed so you can write a standalone plugin. It is designed to be installed as a plugin, and essentially help your plugin work. You can read why we do this here >
SteveKeymaster@mbnoimi– The official repository is not public yet. Once we hit v1.0, we will make it available on Github. If you want to get involved with the project, please read this page.
Thanks!
SteveKeymaster@poxtron– Welcome to the Piklist community!
You were definitely correct about removing the Dashboard Widgets… they weren’t working as expected.
Just released v1.7.0 which should fix that issue, and has a new feature… add Featured Posts to list tables.
Enjoy!
SteveKeymasterGlad it worked! That’s one of my favorite Piklist filters… so awesome.
Closing this ticket.
SteveKeymaster@vgrch– If you have it showing once, you can easily copy the code to each meta box… however, you will have to change the field name on each. You can’t have the same field name more than once per form.
SteveKeymaster@gospelnerd– It’s working fine for me… permalink is user_login-time.
-Make sure all other custom code is disabled.
-Disable ‘title’ in your supports parameter when registering post type.
-Save your permalink structure again… just to flush them.Let me know if that helps.
SteveKeymasterGreat. Closing ticket
-
AuthorPosts