Server IP : 192.158.238.246 / Your IP : 3.137.162.63 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/jenniferflocom/public_html/wp-content/themes/open-shop/customizer/section/woo/ |
Upload File : |
<?php if ( ! class_exists( 'WooCommerce' ) ){ return; } /***************/ // Cart /***************/ // cross sell product divider $wp_customize->add_setting('open_shop_divide_woo_cross_sell', array( 'sanitize_callback' => 'open_shop_sanitize_text', )); $wp_customize->add_control( new Open_Shop_Misc_Control( $wp_customize, 'open_shop_divide_woo_cross_sell', array( 'section' => 'open-shop-woo-cart-page', 'type' => 'custom_message', 'description' => wp_kses_post('Cross Sell Product','open-shop' ), 'priority' => 2, ))); // cross sell product column if ( class_exists( 'Open_Shop_WP_Customizer_Range_Value_Control' ) ){ $wp_customize->add_setting( 'open_shop_cross_num_col_shw', array( 'sanitize_callback' => 'open_shop_sanitize_range_value', 'default' => '2', ) ); $wp_customize->add_control( new Open_Shop_WP_Customizer_Range_Value_Control( $wp_customize, 'open_shop_cross_num_col_shw', array( 'label' => __( 'Number Of Column To Show', 'open-shop' ), 'section' => 'open-shop-woo-cart-page', 'type' => 'range-value', 'input_attr' => array( 'min' => 1, 'max' => 3, 'step' => 1, ), ) ) ); // no.of product to show $wp_customize->add_setting( 'open_shop_cross_num_product_shw', array( 'sanitize_callback' => 'open_shop_sanitize_range_value', 'default' => '4', ) ); $wp_customize->add_control( new Open_Shop_WP_Customizer_Range_Value_Control( $wp_customize, 'open_shop_cross_num_product_shw', array( 'label' => __( 'Number Of Product To Show', 'open-shop' ), 'section' => 'open-shop-woo-cart-page', 'type' => 'range-value', 'input_attr' => array( 'min' => 1, 'max' => 100, 'step' => 1, ), ) ) ); } /****************/ // doc link /****************/ $wp_customize->add_setting('open_shop_cart_link_more', array( 'sanitize_callback' => 'open_shop_sanitize_text', )); $wp_customize->add_control(new Open_Shop_Misc_Control( $wp_customize, 'open_shop_cart_link_more', array( 'section' => 'open-shop-woo-cart-page', 'type' => 'doc-link', 'url' => 'https://themehunk.com/docs/open-shop/#cart-page', 'description' => esc_html__( 'To know more go with this', 'open-shop' ), 'priority' =>100, )));