add_setting('amaz_store_divide_woo_cross_sell', array( 'sanitize_callback' => 'amaz_store_sanitize_text', )); $wp_customize->add_control( new amaz_store_Misc_Control( $wp_customize, 'amaz_store_divide_woo_cross_sell', array( 'section' => 'amaz-store-woo-cart-page', 'type' => 'custom_message', 'description' => wp_kses_post('Cross Sell Product','amaz-store' ), 'priority' => 2, ))); // cross sell product column if ( class_exists( 'amaz_store_WP_Customizer_Range_Value_Control' ) ){ $wp_customize->add_setting( 'amaz_store_cross_num_col_shw', array( 'sanitize_callback' => 'amaz_store_sanitize_range_value', 'default' => '2', ) ); $wp_customize->add_control( new amaz_store_WP_Customizer_Range_Value_Control( $wp_customize, 'amaz_store_cross_num_col_shw', array( 'label' => __( 'Number Of Column To Show', 'amaz-store' ), 'section' => 'amaz-store-woo-cart-page', 'type' => 'range-value', 'input_attr' => array( 'min' => 1, 'max' => 3, 'step' => 1, ), ) ) ); // no.of product to show $wp_customize->add_setting( 'amaz_store_cross_num_product_shw', array( 'sanitize_callback' => 'amaz_store_sanitize_range_value', 'default' => '4', ) ); $wp_customize->add_control( new amaz_store_WP_Customizer_Range_Value_Control( $wp_customize, 'amaz_store_cross_num_product_shw', array( 'label' => __( 'Number Of Product To Show', 'amaz-store' ), 'section' => 'amaz-store-woo-cart-page', 'type' => 'range-value', 'input_attr' => array( 'min' => 1, 'max' => 100, 'step' => 1, ), ) ) ); } /****************/ // doc link /****************/ $wp_customize->add_setting('amaz_store_cart_link_more', array( 'sanitize_callback' => 'amaz_store_sanitize_text', )); $wp_customize->add_control(new amaz_store_Misc_Control( $wp_customize, 'amaz_store_cart_link_more', array( 'section' => 'amaz-store-woo-cart-page', 'type' => 'doc-link', 'url' => 'https://themehunk.com/docs/amaz-store/#cart-page', 'description' => esc_html__( 'To know more go with this', 'amaz-store' ), 'priority' =>100, )));