From 58aabcc9c7122d3e7e2181d59cc0be48f80f7ecc Mon Sep 17 00:00:00 2001 From: nomadics9 Date: Thu, 3 Apr 2025 16:28:46 +0300 Subject: [PATCH] single product page max height --- themes/oont-themev2/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/oont-themev2/functions.php b/themes/oont-themev2/functions.php index 819766e6f..b40430061 100644 --- a/themes/oont-themev2/functions.php +++ b/themes/oont-themev2/functions.php @@ -254,7 +254,7 @@ add_shortcode('product_image_slider', 'product_image_slider_shortcode'); function enqueue_slider_assets() { - wp_enqueue_style('product-slider-style', get_stylesheet_directory_uri() . '/assets/css/product-slider.css',[],CHILD_THEME_OONT_THEME_VERSION,all); + wp_enqueue_style('product-slider-style', get_stylesheet_directory_uri() . '/assets/css/product-slider.css',[],CHILD_THEME_OONT_THEME_VERSION,'all'); wp_enqueue_script('product-slider-script', get_stylesheet_directory_uri() . '/assets/js/product-slider.js', ['jquery'], null, true); } add_action('wp_enqueue_scripts', 'enqueue_slider_assets');