Forum Replies Created
-
AuthorPosts
-
SteveKeymaster@thor– Try adding this to your form file:
piklist('field', array( 'type' => 'hidden' ,'scope' => 'user' ,'field' => 'ID' ,'value' => $user_id //pass the id here ));
SteveKeymasterActually, please try Beta 4 and let me know if it fixes your issue:
https://github.com/piklist/piklist/releases/tag/0.10-beta.4
SteveKeymasterActually, please try Beta 4 and let me know if it fixes your issue:
https://github.com/piklist/piklist/releases/tag/0.10-beta.4
SteveKeymasterI suggest you use our latest beta. This will be the next version on wordpress.org:
https://github.com/piklist/piklist/releases/tag/0.10-beta.3
SteveKeymasterI suggest you use our latest beta. This will be the next version on wordpress.org:
https://github.com/piklist/piklist/releases/tag/0.10-beta.3
SteveKeymasterWe’re working on this fix. In the meantime you can install a previous version of Piklist from the bottom of this page:
https://wordpress.org/plugins/piklist/advanced/
SteveKeymasterWe’re working on this fix. In the meantime you can install a previous version of Piklist from the bottom of this page:
https://wordpress.org/plugins/piklist/advanced/April 24, 2018 at 1:29 pm in reply to: piklist_save_field-{scope} seems to have changed in 0.10 #8869
SteveKeymaster@johnvanham– Can you please post this as an issue on github? We’d like to keep this support forum for what’s on wp.org.
Thanks
SteveKeymasterLooks like the PHP 7 updates we added broke checkboxes. Just pushed out 0.9.9.17, which temporarily reverts those changes.
SteveKeymasterGreat. Closing ticket.
SteveKeymaster@thor– Try running it from
wp_head:add_action( 'wp_head', 'remove_piklist_love' ); function remove_piklist_love() { remove_action('wp_footer', array('piklist_theme', 'piklist_love'), 1000); }
@cyclissmo–remove_action()must be called inside a function and cannot be called directly in your plugin or theme:
https://codex.wordpress.org/Function_Reference/remove_action#Example
SteveKeymaster@thor– You can use the WordPress function
remove_actionadd_action( 'admin_head', 'remove_piklist_love' ); function remove_piklist_love() { remove_action('wp_footer', array('piklist_theme', 'piklist_love'), 1000); }
SteveKeymasterGreat news!
-
AuthorPosts