add_section( new ALAGU_WP_Customize_Section( $wp_customize, 'woocommerce-product-single-page-default-section', array( 'title' => esc_html__('Default Settings', 'alagu'), 'panel' => 'woocommerce-product-single-page-section', 'priority' => 25, ) ) ); do_action( 'alagu-woo-single-product-breadcrumb-before-pro-settings' ); /** * Option : Enable Breadcrumb */ $wp_customize->add_setting( ALAGU_THEME_SETTINGS . '[dt-single-product-enable-breadcrumb]', array( 'default' => alagu_get_option( 'dt-single-product-enable-breadcrumb' ), 'type' => 'option', 'sanitize_callback' => array( 'ALAGU_Customizer_Sanitizes', 'sanitize_tweek' ), ) ); $wp_customize->add_control( new ALAGU_Customize_Control_Switch( $wp_customize, ALAGU_THEME_SETTINGS . '[dt-single-product-enable-breadcrumb]', array( 'type' => 'dt-switch', 'label' => esc_html__( 'Enable Breadcrumb', 'alagu'), 'section' => 'woocommerce-product-single-page-default-section', 'priority' => 50, 'choices' => array( 'on' => esc_attr__( 'Yes', 'alagu' ), 'off' => esc_attr__( 'No', 'alagu' ) ) ) ) ); /** * Option : Sticky Add to Cart */ $wp_customize->add_setting( ALAGU_THEME_SETTINGS . '[dt-single-product-addtocart-sticky]', array( 'default' => alagu_get_option( 'dt-single-product-addtocart-sticky' ), 'type' => 'option', 'sanitize_callback' => array( 'ALAGU_Customizer_Sanitizes', 'sanitize_tweek' ), ) ); $wp_customize->add_control( new ALAGU_Customize_Control_Switch( $wp_customize, ALAGU_THEME_SETTINGS . '[dt-single-product-addtocart-sticky]', array( 'type' => 'dt-switch', 'label' => esc_html__( 'Sticky Add to Cart', 'alagu'), 'section' => 'woocommerce-product-single-page-default-section', 'priority' => 100, 'choices' => array( 'on' => esc_attr__( 'Yes', 'alagu' ), 'off' => esc_attr__( 'No', 'alagu' ) ) ) ) ); if ( ! defined( 'ALAGU_PRO_VER' ) ) { /** * Divider : Separator 1 */ $wp_customize->add_control( new ALAGU_Customize_Control_Separator( $wp_customize, ALAGU_THEME_SETTINGS . '[dt-single-product-pro-separator]', array( 'type' => 'dt-separator', 'section' => 'woocommerce-product-single-page-default-section', 'settings' => array(), 'priority' => 999, 'description' => '

' . __( 'More Options Available in Alagu Pro!', 'alagu' ) . '

' . __( 'Learn More', 'alagu' ) . '', ) ) ); } do_action( 'alagu-woo-single-product-sticky-add-to-cart-after-pro-settings' );