Forum Replies Created
-
AuthorPosts
-
September 12, 2015 at 11:55 pm in reply to: Demos: profile 'default' workflow tab missing info #4314
SteveKeymaster@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?
SteveKeymaster@txhorselady– If you increase the priority on init it will work:
add_action('init', 'gender_insert_terms', 99);September 9, 2015 at 9:19 pm in reply to: Piklist Widgets don't work in SiteOrigin Page Builder #4306
SteveKeymasterFinally 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.
September 9, 2015 at 9:18 pm in reply to: Compatibility problem between Piklist's widgets and SiteOrigin Page Builder #4305
SteveKeymasterFinally 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.
SteveKeymaster@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') ) )September 8, 2015 at 1:01 pm in reply to: performance drop with lots of conditional statements #4292
SteveKeymaster@pionect– Got your code and was able to reproduce. Working on a fix for the next version of Piklist.
SteveKeymaster@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.
SteveKeymaster@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.
SteveKeymasterWas this every resolved?
September 1, 2015 at 2:43 pm in reply to: Editor field in repeatable group does not appear when clicking plus button #4283
SteveKeymaster@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', ), ), ));
SteveKeymasterThis is outside the scope of Piklist. There might be a plugin for that or you can manipulate the $menu global.
SteveKeymasterGlad that worked for you.
There is no map option or plugin. I believe we said we “might” build it in the future.
SteveKeymaster@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
SteveKeymasterTry removing the
scopeparameter on all fields. Piklist can figure it out.
SteveKeymasterTry removing the editor from the workflow and see if that fixes it.
-
AuthorPosts