Server IP : 162.213.251.212 / Your IP : 3.133.157.202 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/allssztx/bestvalleywater.com/wp-content/themes/woodmart/inc/ |
Upload File : |
<?php use Elementor\Plugin; if ( ! function_exists( 'woodmart_get_owl_atts' ) ) { function woodmart_get_owl_atts() { _deprecated_function( 'woodmart_get_owl_atts', '7.3', 'woodmart_get_carousel_atts' ); return woodmart_get_carousel_atts(); } } if ( ! function_exists( 'woodmart_get_owl_attributes' ) ) { function woodmart_get_owl_attributes( $atts = array(), $witout_init = false ) { _deprecated_function( 'woodmart_get_owl_attributes', '7.3', 'woodmart_get_carousel_attributes' ); return woodmart_get_carousel_attributes( $atts ); } } // **********************************************************************// // Woodmart Owl Items Per Slide // **********************************************************************// if ( ! function_exists( 'woodmart_owl_items_per_slide' ) ) { function woodmart_owl_items_per_slide( $slides_per_view, $hide = array(), $post_type = false, $location = false, $custom_sizes = false ) { _deprecated_function( 'woodmart_owl_items_per_slide', '7.3' ); $items = woodmart_get_owl_items_numbers( $slides_per_view, $post_type, $custom_sizes ); $classes = ''; if ( woodmart_get_opt( 'thums_position' ) == 'centered' && $location == 'main-gallery' ) { $items['desktop'] = $items['tablet'] = $items['mobile'] = 2; } if ( ! in_array( 'lg', $hide ) ) { $classes .= 'owl-items-lg-' . $items['desktop']; } if ( ! in_array( 'md', $hide ) ) { $classes .= ' owl-items-md-' . $items['tablet_landscape']; } if ( ! in_array( 'sm', $hide ) ) { $classes .= ' owl-items-sm-' . $items['tablet']; } if ( ! in_array( 'xs', $hide ) ) { $classes .= ' owl-items-xs-' . $items['mobile']; } return $classes; } } // **********************************************************************// // Woodmart Get Owl Items Numbers // **********************************************************************// if ( ! function_exists( 'woodmart_get_owl_items_numbers' ) ) { function woodmart_get_owl_items_numbers( $slides_per_view, $post_type = false, $custom_sizes = false ) { _deprecated_function( 'woodmart_get_owl_items_numbers', '7.3' ); $items = woodmart_get_col_sizes( $slides_per_view ); if ( $post_type == 'product' ) { if ( 'auto' !== woodmart_get_opt( 'products_columns_tablet' ) && ! empty( $mobile_columns ) ) { $items['tablet'] = woodmart_get_opt( 'products_columns_tablet' ); } $items['mobile'] = woodmart_get_opt( 'products_columns_mobile' ); } if ( $items['desktop'] == 1 ) { $items['mobile'] = 1; } if ( $custom_sizes && is_array( $custom_sizes ) ) { $auto_columns = woodmart_get_col_sizes( $custom_sizes['desktop'] ); if ( empty( $custom_sizes['tablet'] ) || 'auto' === $custom_sizes['tablet'] ) { $custom_sizes['tablet'] = $auto_columns['tablet']; } if ( empty( $custom_sizes['mobile'] ) || 'auto' === $custom_sizes['mobile'] ) { $custom_sizes['mobile'] = $auto_columns['mobile']; } return $custom_sizes; } return $items; } } if ( ! function_exists( 'woodmart_elementor_get_content_css' ) ) { /** * Retrieve builder content css. * * @since 1.0.0 * * @param integer $id The post ID. * * @return string */ function woodmart_elementor_get_content_css( $id ) { _deprecated_function( 'woodmart_elementor_get_content_css', '7.3' ); if ( ! woodmart_is_elementor_installed() ) { return ''; } $post = new Elementor\Core\Files\CSS\Post( $id ); $meta = $post->get_meta(); $content = ''; if ( Plugin::$instance->experiments->is_feature_active( 'additional_custom_breakpoints' ) ) { $content = $post->get_content(); } ob_start(); if ( $post::CSS_STATUS_FILE === $meta['status'] && apply_filters( 'woodmart_elementor_content_file_css', true ) && ! woodmart_is_woo_ajax() ) { ?> <link rel="stylesheet" id="elementor-post-<?php echo esc_attr( $id ); ?>-css" href="<?php echo esc_url( $post->get_url() ); ?>" type="text/css" media="all"> <?php } else { if ( ! $content ) { $content = $post->get_content(); } echo '<style>' . $content . '</style>'; Plugin::$instance->frontend->print_fonts_links(); } return ob_get_clean(); } }