Forum Replies Created

Viewing 15 posts - 1,546 through 1,560 (of 2,964 total)
  • Author
    Posts
  • in reply to: Demos: profile 'default' workflow tab missing info #4314
    Steve
    Keymaster

    @okeanos– It must be something additional. I tested a French install and everything worked as expected. Do you have any localization plugins activated as well?

    in reply to: Insert Terms Into Custom Taxonomy #4313
    Steve
    Keymaster

    @txhorselady– If you increase the priority on init it will work:

    add_action('init', 'gender_insert_terms', 99);
    
    in reply to: Piklist Widgets don't work in SiteOrigin Page Builder #4306
    Steve
    Keymaster

    Finally had a chance to look at this. It doesn’t look like Page Builder is doing things the WordPress way, so we won’t be able to support using Piklist Widgets.

    Steve
    Keymaster

    Finally had a chance to look at this. It doesn’t look like Page Builder is doing things the WordPress way, so we won’t be able to support using Piklist Widgets.

    in reply to: How to implement an optgroup? #4303
    Steve
    Keymaster

    @pionect– We implemented in the next beta, which will hopefully be released this week.

    Format will be:

    ,'choices' => array(
      'Group 1' => array(
        'first' => __('First Choice', 'piklist-demo')
        ,'second' => __('Second Choice', 'piklist-demo')
        ,'third' => __('Third Choice', 'piklist-demo')
      )
      ,'Group 2' => array(
        'first' => __('First Choice', 'piklist-demo')
        ,'second' => __('Second Choice', 'piklist-demo')
        ,'third' => __('Third Choice', 'piklist-demo')
      )
    )
    
    in reply to: performance drop with lots of conditional statements #4292
    Steve
    Keymaster

    @pionect– Got your code and was able to reproduce. Working on a fix for the next version of Piklist.

    in reply to: Will piklist always be free? #4289
    Steve
    Keymaster

    @dsilvadarius– Pikilst will ALWAYS be free. We do plan on selling plugins and add-ons built on Piklist, but everything you currently have… and more… will always be free.

    in reply to: Is Piklist production ready? #4287
    Steve
    Keymaster

    @dsilvadarius– Welcome to the Piklist community!

    Piklist is safe to use in a Production site. The main reason for the “beta” tag is that some features may change, or the way you implement them way change. We will provide you with notice when that happens.

    in reply to: Default workflow tab not working correctly #4284
    Steve
    Keymaster

    Was this every resolved?

    Steve
    Keymaster

    @oskarcafe– Welcome to the Piklist community!

    There are some known issues with advanced fields like Editor and File upload, in Grouped Add-mores. You may want to try changing the Editor to a textarea.

    Or you can try ungrouping the fields. This code will save subheader and subbody as separate meta keys. If you go this route please check your database so you can see how the data has been saved.

    piklist('field', array(
      'type'     => 'group',
      //'field'    => 'content-blocks',  // REMOVING THIS PARAMETER
      'label'    => 'Content blocks',
      'add_more' => true,
      'fields' => array(
        array(
          'type'  => 'text',
          'field' => 'subheader',
          'label' => 'Subheader',
        ),
        array(
          'type'  => 'editor',
          'field' => 'subbody',
          'label' => 'Enter some contents here',
        ),
      ),
    ));
    
    in reply to: Add Cusotm Menu Item #4279
    Steve
    Keymaster

    This is outside the scope of Piklist. There might be a plugin for that or you can manipulate the $menu global.

    in reply to: Blank plugin title is not showing #4278
    Steve
    Keymaster

    Glad that worked for you.

    There is no map option or plugin. I believe we said we “might” build it in the future.

    in reply to: Blank plugin title is not showing #4274
    Steve
    Keymaster

    @davud37ni– Welcome to the Piklist community!

    Since Piklist does everything the WordPress way you can use WordPress parameters and rules.

    You need to define TITLE within SUPPORTS. Check out the SUPPORTS parameter:
    https://codex.wordpress.org/Function_Reference/register_post_type

    in reply to: Text area Duplication #4271
    Steve
    Keymaster

    Try removing the scope parameter on all fields. Piklist can figure it out.

    in reply to: Default workflow tab not working correctly #4270
    Steve
    Keymaster

    Try removing the editor from the workflow and see if that fixes it.

Viewing 15 posts - 1,546 through 1,560 (of 2,964 total)