Forum Replies Created
-
AuthorPosts
-
SteveKeymaster@sajonara– Piklist is so seamlessly integrated with WordPress, that I guess that’s one issue we never realized…sometimes you don’t know which parts are WordPress, and which are Piklist! 😉
Closing this ticket.
SteveKeymaster@sajonara– These parameters you are mentioning are standard WordPress functions. Labels are words that appear in the admin. The menu_icon is the url to the icon to be used for this menu. It doesn’t make sense for menu_icon to be in the labels array.
To see everything that you can include, please refer to the WordPress codex for the register_post_type function.
January 13, 2016 at 11:17 pm in reply to: Post to Post Relationships – Displaying a list of related posts in your theme #5590
SteveKeymasterThe best part of Piklist is that you can use standard WordPress functions to access your data… which also means that any standard WordPress tutorial will also work for you.
Here’s a good tutorial on a few ways to display Post Content. The last three will work for you.
January 13, 2016 at 11:12 pm in reply to: I need help creating reusable content blocks and showing them on the frontend #5589
SteveKeymaster@pwwwpwww– You can access the Piklist data using standard WordPress functions. Try this:
global $wp_query; $postid = $wp_query->post->ID; echo get_post_meta($postid, 'Your-Custom-Field', true); wp_reset_query();
SteveKeymasterIf you register the post type using the standard WordPress way does the archive work?
Also, did you try refreshing your permalink by visiting the SETTINGS > PERMALINK page?
January 13, 2016 at 8:16 pm in reply to: Validation rule or required parameter on a hidden field #5585
SteveKeymasterThis is a bug and will be addressed in a future release.
January 12, 2016 at 11:26 am in reply to: Variable-type of 'request_value' and 'value' in $fields of piklist_save_field #5576
SteveKeymasterCan you confirm that if you remove the
attributesarray everything works normal?January 12, 2016 at 11:07 am in reply to: Help Icon not shown on front end form when not logged in #5575
SteveKeymaster@hirschbrat– Whoops! I missed that..sorry. 😉
Ok, you found a small bug that we’ll get fixed. WordPress only loads Dashicons when you’re logged in, and the “?” is a dashicon. Here’s a temporary solution:
- Add this to your theme css:
.dashicons-editor-help:before { content: "\f223"; } - Add this to your plugin or theme’s functions.php file:
add_action( 'wp_enqueue_scripts', 'my_dashicons' ); function my_dashicons() { wp_enqueue_style( 'dashicons' ); }
January 12, 2016 at 10:51 am in reply to: Variable-type of 'request_value' and 'value' in $fields of piklist_save_field #5573
SteveKeymasterAnd can you post your function thats hooking into
piklist_save_field?
SteveKeymaster@sajonara– Piklist creates regular fields, so you can use any autocomplete code you find.
January 12, 2016 at 10:23 am in reply to: Help Icon not shown on front end form when not logged in #5567
SteveKeymaster@hirschbrat— You’re code is working for me. Guessing your theme or another plugin is conflicting with it.
See attached screenshot.
Attachments:
You must be logged in to view attached files.
SteveKeymaster@bubdev– Can you email your plugin to [email protected] ? It will be easier for us to debug if we can see the full code.
January 12, 2016 at 10:13 am in reply to: Variable-type of 'request_value' and 'value' in $fields of piklist_save_field #5565
SteveKeymasterThanks for the details. Which version of Piklist are you using?
SteveKeymasterWhich version of Piklist are you using?
January 11, 2016 at 5:15 pm in reply to: Help Icon not shown on front end form when not logged in #5556
SteveKeymaster@hirschbrat– Which version of Piklist are you using? Also, can you post your form code here.
- Add this to your theme css:
-
AuthorPosts