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
wpColorPickerL10n is deprecated in WP 5.5 (erk!) and Titan throws undefined variable in js\wp-color-picker-alpha.js
wpColorPickerL10n
js\wp-color-picker-alpha.js
Workaround (via previous /wp-includes/script-loader.php):
/wp-includes/script-loader.php
add_action( 'wp_print_scripts', 'titan_color_picker_translation_fix', 11 ); function titan_color_picker_translation_fix() { $wp_scripts = wp_scripts(); $wp_scripts->localize( 'wp-color-picker', 'wpColorPickerL10n', array( 'clear' => __( 'Clear' ), 'clearAriaLabel' => __( 'Clear color' ), 'defaultString' => __( 'Default' ), 'defaultAriaLabel' => __( 'Select default color' ), 'pick' => __( 'Select Color' ), 'defaultLabel' => __( 'Color value' ), ) ); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
wpColorPickerL10n
is deprecated in WP 5.5 (erk!) and Titan throws undefined variable injs\wp-color-picker-alpha.js
Workaround (via previous
/wp-includes/script-loader.php
):The text was updated successfully, but these errors were encountered: