Forum Replies Created
-
AuthorPosts
-
SteveKeymaster@kircer– your site is looking for an old file. Please make sure you delete all the old Piklist files and then upgrade again.
SteveKeymasterThis reply has been marked as private.
SteveKeymasterThis reply has been marked as private.
SteveKeymaster@4michaelcoleman– Probably not for a while. I don’t believe Calypso supports all the customization options available through Piklist.
SteveKeymaster@visualtricks– We’ll look into fixing this.
In the meantime, you can “ungroup” this group field by removing:
,'field' => 'group_test'Using that field saves everything into an array. By removing it the individual keys are saved independently, but the layout remains.
You will have to retrieve the data separately, but the
valueshould work.Example:
$fritto_1_ita = get_post_meta(get_the_ID(), 'fritto_1_ita', true);
SteveKeymaster@morganrt– Can you zip up your plugin/theme and email to [email protected]? Happy to take a look.
SteveKeymaster@visualtricks– Can you post the entire group field here?
SteveKeymaster@semwangajoshua– Great! If it’s working with the default theme, then something in your custom theme is causing issues.
Suggest you comment out parts of your theme to try and find the offending code.
SteveKeymaster@upside– can you email your plugin to [email protected] Happy to take a look.
SteveKeymaster@semwangajoshua– If the demos aren’t disabling then I don’t need your project files. Are you running the version of jQuery that comes with WordPress or another version? What version of WordPress are you running? Did you try the default WordPress theme?
SteveKeymasterGlad I can help.
Piklist is designed to be flexible. We also built it so you can query on most fields… which is why we save repeater data as multiple lines in the db.
Closing ticket.
SteveKeymaster@jacotheron– Welcome to the Piklist community!
If you use a simple repeater, not a group, then the data is saved as individual meta rows.
This is an example taken from the built-in demos:
piklist('field', array( 'type' => 'datepicker' ,'field' => 'demo_add_more_date' ,'label' => __('Date Picker', 'piklist-demo') ,'add_more' => true ));
SteveKeymaster@hughc– Come code made it in, but we are still working on making Piklist even more compatible with the customizer.
SteveKeymaster@tonnykeuken– This is fixed in the next major version.
Posting your fix here for other:
In the “piklist” plugin folder go to: plugins/piklist/parts/fields/hidden.php, and change the line (6):
from: value=””
to: value=”
SteveKeymaster -
AuthorPosts