HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.30
System: Linux iZj6c1151k3ad370bosnmsZ 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64
User: root (0)
PHP: 7.4.30
Disabled: NONE
Upload Files
File: /var/www/html/test01.amberconcept/wp-content/themes/zeen-child/functions.php20210208
<?php
/**
 * Zeen Child Theme functions and definitions.
 */
function zeen_child_enqueue_styles() {
wp_enqueue_style( 'zeen-child-style' , get_stylesheet_directory_uri() . '/style.css', array( 'zeen-style' ), ZEEN_VERSION );
}
add_action(  'wp_enqueue_scripts', 'zeen_child_enqueue_styles' );

/**--Spreads min&max page*/
	add_action('wp_footer', 'settap_number_field', 99);
function settap_number_field() {
 if(is_single()) {
     ?>
        <script type="text/javascript">
         (function($) {
         $("#msspreads, #mmspreads, #mlspreads").attr({
              "max" : 45,
              "min" : 15
           });
         $("#fsspreads, #fmspreads, #flspreads").attr({
              "max" : 40,
              "min" : 10
           });
         })(jQuery, window, document)
        </script>

     <?php
 }
} 
/**--*/

// Declare WooCommerce support.
 add_theme_support( 'woocommerce', apply_filters( 'storefront_woocommerce_args', array(
   'single_image_width' => 416,
   'thumbnail_image_width' => 324,
   'product_grid' => array(
   'default_columns' => 3,
   'default_rows' => 4,
   'min_columns' => 1,
   'max_columns' => 6,
   'min_rows' => 1
   )
) ) );