Forum Replies Created

Viewing 15 posts - 2,626 through 2,640 (of 2,964 total)
  • Author
    Posts
  • in reply to: Using Demos #1190
    Steve
    Keymaster

    It looks like you have a file in your meta-boxes directory that has no “TITLE“.

    Delete it or add a title to fix.

    in reply to: [bug] add_more not working in settings. #1185
    Steve
    Keymaster

    @marcus– household appliance replacement is on the roadmap. 😉


    @nabil_kadimi
    – Nice! This will be fixed in the next version.

    in reply to: get_terms('custom_tax') is error #1184
    Steve
    Keymaster

    You were also using the wrong function for labels. It should be:

    ,'labels' => piklist('taxonomy_labels', 'custom Category')

    in reply to: get_terms('custom_tax') is error #1183
    Steve
    Keymaster

    @kenget_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.

    in reply to: Metaboxes on the public side. #1182
    Steve
    Keymaster

    @marcus– Drop us a note with the contact form.

    in reply to: [bug] add_more not working in settings. #1175
    Steve
    Keymaster

    Marcus, once again you solved a bug!

    Apparently, disableSelection has been depreciated because it causes problems.

    Great find. Updated in next release.

    in reply to: Using Demos #1171
    Steve
    Keymaster

    Try registering with the standard WordPress function register_post_type. Let us know if that helps.

    in reply to: [bug] add_more not working in settings. #1170
    Steve
    Keymaster

    It looks like it’s only Firefox. What browser are you using?

    in reply to: Using Demos #1165
    Steve
    Keymaster

    When you registered the Post Type, did you add the “supports” parameter, with “title” set?

    in reply to: Using Demos #1162
    Steve
    Keymaster

    Piklist 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?

    in reply to: Plugins Dir renamed: WP_PLUGIN_URL #1160
    Steve
    Keymaster

    Hey 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.

    in reply to: Plugins Dir renamed: WP_PLUGIN_URL #1158
    Steve
    Keymaster

    Thanks, 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.

    in reply to: Category metaboxes not saving #1156
    Steve
    Keymaster

    Great… enjoy! Closing ticket.

    in reply to: Category metaboxes not saving #1154
    Steve
    Keymaster

    Looks like a typo in the documentation. Remove the SCOPE parameter and try again.

    in reply to: New post with tabs #1150
    Steve
    Keymaster

    Nice job! Instead of editing your Workflow header file, can you try this:

    -Open /parts/shared/admin-workflow.php
    -Look for the if ($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.

Viewing 15 posts - 2,626 through 2,640 (of 2,964 total)