We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First, I added an image field in the repeater control.
After some days, I add a new field to the same repeater control. The field appears in Customizer. However, it does not save the value.
I see this problem a long time ago.
Have any solution?
Thank you!
Kirki Customizer Framework plugin - v3.1.5
theme_mods
Kirki::add_config( 'apccollective_theme', array( 'capability' => 'edit_theme_options', 'option_type' => 'theme_mod', ) ); $wp_customize->add_section( 'section_clients', array( 'priority' => 24, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => esc_html__( 'Section Clients' ), 'description' => '', ) ); Kirki::add_field( 'apccollective_theme', array( 'type' => 'repeater', 'label' => esc_attr__( 'Item' ), 'section' => 'section_clients', 'priority' => 12, 'settings' => 'client_items', 'default' => array( ), 'row_label' => array( 'type' => 'field', 'value' => esc_attr__('Item' ), //'field' => 'name', ), 'fields' => array( // old file 'client_logo' => array( 'type' => 'image', 'label' => esc_attr__( 'Image' ), 'default' => '', ), // new field 'client_url' => array( 'type' => 'link', 'label' => esc_attr__( 'Link'), 'default' => '#', ), ) ) );
The text was updated successfully, but these errors were encountered:
I'm also getting this same bug.
Likely a duplicate of #1540
Sorry, something went wrong.
No branches or pull requests
Issue description:
First, I added an image field in the repeater control.
After some days, I add a new field to the same repeater control. The field appears in Customizer. However, it does not save the value.
I see this problem a long time ago.
Have any solution?
Thank you!
Version used:
Kirki Customizer Framework plugin - v3.1.5
Using theme_mods or options?
theme_mods
Code to reproduce the issue (config + field(s))
The text was updated successfully, but these errors were encountered: