From ba6b6c9d486d4d02d8fb4b941f60fdb703ac60fc Mon Sep 17 00:00:00 2001 From: Gareth Bissland <5170216+gbissland@users.noreply.github.com> Date: Tue, 1 Oct 2024 07:12:03 +1300 Subject: [PATCH] Update generatepress-bb-color-palettes.php --- generatepress-bb-color-palettes.php | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/generatepress-bb-color-palettes.php b/generatepress-bb-color-palettes.php index ac38b9e..d76709c 100644 --- a/generatepress-bb-color-palettes.php +++ b/generatepress-bb-color-palettes.php @@ -1,11 +1,11 @@ get( 'Name' ) || 'generatepress' === $theme->get( 'Template' ) ) { + if ( 'GeneratePress' === $theme->get( 'Name' ) || 'generatepress' === $theme->get_template() ) { return true; } @@ -48,10 +48,12 @@ function generate_custom_global_colors_css( $global_colors ) { // Check if there are any global colors to process if ( ! empty( $global_colors ) ) { + $css_variables = array(); foreach ( (array) $global_colors as $key => $data ) { // Add each color as a CSS variable with the custom prefix for Beaver Builder - $custom_css .= '--wp--preset--color--' . $data['slug'] . ':' . $data['color'] . ';'; + $css_variables[] = '--wp--preset--color--' . $data['slug'] . ':' . $data['color'] . ';'; } + $custom_css .= implode( "\n", $css_variables ); } // Close the root selector @@ -80,8 +82,11 @@ function generate_enqueue_custom_inline_styles() { // Generate the custom global colors CSS for Beaver Builder $custom_global_colors_css = generate_custom_global_colors_css( $global_colors ); - // Add the custom CSS as inline styles, attached to the 'generate-style' handle - wp_add_inline_style( 'generate-style', $custom_global_colors_css ); + // Check if the 'generate-style' handle exists + if ( wp_style_is( 'generate-style', 'enqueued' ) ) { + // Add the custom CSS as inline styles, attached to the 'generate-style' handle + wp_add_inline_style( 'generate-style', $custom_global_colors_css ); + } } // Hook the function to enqueue custom styles after the theme styles are loaded