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
When I tried to add 1 element of typography control (font-size or so), the CSS generates all available styles:
It is replaced my default text color from the main CSS file to #ffffff, that is not ok:
Also, I got this error and no auto-reload working:
3.0.4 release
theme_mods
Kirki::add_config('test', array( 'capability' => 'edit_theme_options', 'option_type' => 'theme_mod', )); Kirki::add_section('typography', array( 'title' => esc_html__('Typography', 'test'), 'priority' => 11 )); Kirki::add_field('test', array( 'type' => 'typography', 'settings' => 'typography_html', 'label' => esc_attr__('HTML', 'test'), 'section' => 'typography', 'default' => array( 'font-size' => '15px' ), 'priority' => 10, 'output' => array( array( 'element' => 'html', ), ), 'transport' => 'auto' ));
The text was updated successfully, but these errors were encountered:
fixes #1423
f41f7d2
Fixed, can you please test using the development branch from this repository?
Sorry, something went wrong.
With the latest commits from the master branch it is working ok. With code from the develop branch - nothing changed.
master
develop
Thank you.
Yeah, I just pushed the commits to the wrong branch... fixing that as we speak. 👍
Glad it works now. Relieved actually... 😄
No branches or pull requests
Issue description:
When I tried to add 1 element of typography control (font-size or so), the CSS generates all available styles:
It is replaced my default text color from the main CSS file to #ffffff, that is not ok:
Also, I got this error and no auto-reload working:
Version used:
3.0.4 release
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: