Forum Replies Created
-
AuthorPosts
-
SteveKeymasterIt looks like you have a file in your meta-boxes directory that has no “TITLE“.
Delete it or add a title to fix.
SteveKeymaster@marcus– household appliance replacement is on the roadmap. 😉
@nabil_kadimi– Nice! This will be fixed in the next version.
SteveKeymasterYou were also using the wrong function for labels. It should be:
,'labels' => piklist('taxonomy_labels', 'custom Category')
SteveKeymaster@ken–
get_terms()will only show the default WordPress taxonomies unless you hook it to init or after:function show_custom_tax() { $terms = get_terms('custom_tax', array( 'hide_empty' => false )); print_r($terms); } add_action('init','show_custom_tax');This is not a Piklist “thing”, it’s a WordPress “thing”. Try registering your custom tax using
register_taxonomy()and you’ll get the same results.
SteveKeymaster@marcus– Drop us a note with the contact form.
SteveKeymasterMarcus, once again you solved a bug!
Apparently, disableSelection has been depreciated because it causes problems.
Great find. Updated in next release.
SteveKeymaster
SteveKeymasterIt looks like it’s only Firefox. What browser are you using?
SteveKeymasterWhen you registered the Post Type, did you add the “supports” parameter, with “title” set?
SteveKeymasterPiklist Demos is a great way to see how many of our features work. Once you find something you like, you can copy/paste the code into your own project.
What do you mean you can’t add titles?
SteveKeymasterHey Marcus–
The issue with using the WP_PLUGIN_URL constant is that it doesn’t respect HTTPS.
Try using the
piklist::$urls['piklist']function instead:$plugins['piklist_shortcode'] = piklist::$urls['piklist'] . '/parts/js/piklist-tinymce-shortcode.js';We tested locally and it seems to work great.
SteveKeymasterThanks, Marcus. Both will be replaced with
content_url()in the next release. Glady you enjoy using Piklist. Please let us know how you are using it.
SteveKeymasterGreat… enjoy! Closing ticket.
SteveKeymasterLooks like a typo in the documentation. Remove the SCOPE parameter and try again.
SteveKeymasterNice job! Instead of editing your Workflow header file, can you try this:
-Open
/parts/shared/admin-workflow.php
-Look for theif ($url_arguments['post'])conditional, and add your $pagenow code there, so it looks like this:if ($url_arguments['post']) { unset($url['page']); $url['action'] = 'edit'; $pagenow = 'post.php'; }Let us know if that works. Thanks for the help. Without your solution, this would have taken a lot longer to fix.
-
AuthorPosts