Forum Replies Created

Viewing 15 posts - 2,056 through 2,070 (of 2,964 total)
  • Author
    Posts
  • in reply to: Validation broken? #2970
    Steve
    Keymaster

    @jason– Did you verify your regular expression is working properly?

    in reply to: Anchor button doesn't work for editor inside of group #2961
    Steve
    Keymaster

    @jason– What am I looking for to duplicate the issue? I add hyphens in the field name… now, what should happen… or not happen?

    in reply to: Various problems with workflows in 0.9.4.21 #2960
    Steve
    Keymaster

    @jonian– This sounds correct. Once you publish a post, the page is post.php, which is why Advanced and SEO are showing.

    If I’m still not getting it, a screencast would be great if possible.

    in reply to: Piklist Checker Doesn't Seem to Be Working #2958
    Steve
    Keymaster

    @blair2004– Try downloading WP Helpers v1.6.0… you beat us to the download. It should be working fine.

    in reply to: Piklist Checker Doesn't Seem to Be Working #2955
    Steve
    Keymaster

    for plugins you can install like you used to:

    add_action('init', 'my_init_function');
    function my_init_function()
    {
      if(is_admin())
      {
       include_once('path-to-file/class-piklist-checker.php');
     
       if (!piklist_checker::check(__FILE__))
       {
         return;
       }
      }
    }
    
    in reply to: Piklist Checker Doesn't Seem to Be Working #2953
    Steve
    Keymaster

    We just updated the Piklist Checker to v0.6.0, and you can grab it here >

    The documentation has been updated to support theme integration.

    You will need to pass an extra argument, theme, after __FILE__ :

    add_action('init', 'my_init_function');
    function my_init_function()
    {
      if(is_admin())
      {
       include_once('path-to-file/class-piklist-checker.php');
     
       if (!piklist_checker::check(__FILE__, 'theme'))
       {
         return;
       }
      }
    }
    

    Let us know if you still have issues.

    in reply to: WorkFlow Tab only if the post isn't draft anymore #2952
    Steve
    Keymaster

    This should be fixed in v0.9.4.22. Let me know if you still have issues.

    in reply to: Various problems with workflows in 0.9.4.21 #2951
    Steve
    Keymaster

    @jonian– This should be fixed in v0.9.4.22. Let me know if you still have issues.

    in reply to: Anchor button doesn't work for editor inside of group #2942
    Steve
    Keymaster

    @jason– Appreciate you investigating the issue. It’s a bit tough to follow in your posts. Can you specify what the issue is and how to resolve?

    in reply to: Anchor button doesn't work for editor inside of group #2934
    Steve
    Keymaster

    @jason– Could you test with the wp_editor function directly? Would like to know if this is a WordPress or Piklist bug.

    in reply to: Translate tab names in comments header #2931
    Steve
    Keymaster

    @countryipblocks– I don’t think they are translatable. We’re still working on ideas for this. Any suggestions would be appreciated.

    in reply to: Anchor button doesn't work for editor inside of group #2929
    Steve
    Keymaster

    @jason– Try upgrading to v0.9.4.21. I think that fixes the issue.

    in reply to: Feature Request: Simplified Editor #2928
    Steve
    Keymaster

    @jason– Currently Piklist supports the wp_editor function and all it’s parameters.

    You may want to try some or all of these:
    'tinymce' => false
    'teeny' => true
    'media_buttons' => false

    in reply to: add_more in add_more #2927
    Steve
    Keymaster

    I think this was a combination of errors in Pikist and in your field code.

    Try upgrading to v0.9.4.21 and then use this code:

      piklist('field', array(
        'type' => 'group'
        ,'label' => __('Blok')
        ,'field' => 'Blok'
        ,'add_more' => true
        ,'fields' => array(
          array(
            'type' => 'text'
            ,'field'    => 'blok_titel'
            ,'label'    => 'Blok Titel'
            ,'columns' => 12
            ,'required' => true
            ,'attributes' => array(
              'class' => 'large-text'
            )
          )
          ,array(
            'type' => 'textarea'
            ,'field'   => 'blok_introtext'
            ,'label'   => 'Blok introtext'
            ,'columns' => 12
            ,'attributes' => array(
              'class' => 'large-text'
            )
          )
          ,array(
            'type' => 'textarea'
            ,'field'   => 'blok_outtrotext'
            ,'label'   => 'Blok outrotext'
            ,'columns' => 12
            ,'attributes' => array(
              'class' => 'large-text'
            )
          )
          ,array(
            'type' => 'group'
            ,'field' => 'vraag-group'
            ,'add_more' => true
            ,'fields' => array(
              array(
                'type' => 'select'
                ,'field' => 'vraag'
                ,'label' => 'vraag'
                ,'columns' => 12
                ,'choices' => array( 0 => "Selecteer..." ) + piklist(
                    get_posts(
                       array(
                        'post_type'      => 'post'
                        ,'posts_per_page' => '-1'
                        ,'orderby'        => 'title'
                        ,'order'          => 'ASC'
                       )
                       ,'objects'
                     )
                     ,array(
                       'ID'
                       ,'post_title'
                     )
                )
              )
            )
          )
          ,array(
            'type'    => 'file'
            ,'field'   => 'blok_image'
            ,'label'   => __( 'Image', 'piklist-demo' )
            ,'options' => array(
              'modal_title' => __( 'Add File(s)', 'piklist-demo' )
              ,'button'      => __( 'Add', 'piklist-demo' )
            )
          )
        )
      ));
    

    I essentially pulled the code from Piklist Demos > Advanced > Content Section (Grouped).

    Let me know if that works for you.

    in reply to: WorkFlow Tab only if the post isn't draft anymore #2926
    Steve
    Keymaster

    @Darlan ten Caten– We decided that New didn’t really work for Workflow tabs since Workflows can actually be anywhere in WordPress. Instead we extended the Page attribute to work for individual tabs.

    To only show a tab once the post is created, use:
    Page: post.php

    Documentation has been updated to reflect this new feature >

    You will need to upgrade to Piklist v0.9.4.21 to enable this.

Viewing 15 posts - 2,056 through 2,070 (of 2,964 total)