File: /var/www/html/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
)
) ) );