add_section( 'newsletter_settings', array( 'title' => __( 'Newsletter Settings', 'blossom-floral-pro' ), 'priority' => 60, 'panel' => 'frontpage_settings', ) ); if( is_btnw_activated() ){ /** Enable Newsletter Section */ $wp_customize->add_setting( 'ed_newsletter', array( 'default' => false, 'sanitize_callback' => 'blossom_floral_pro_sanitize_checkbox' ) ); $wp_customize->add_control( new Blossom_Floral_Pro_Toggle_Control( $wp_customize, 'ed_newsletter', array( 'section' => 'newsletter_settings', 'label' => __( 'Newsletter Section', 'blossom-floral-pro' ), 'description' => __( 'Enable to show Newsletter Section', 'blossom-floral-pro' ), ) ) ); /** Newsletter Shortcode */ $wp_customize->add_setting( 'newsletter_shortcode', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', ) ); $wp_customize->add_control( 'newsletter_shortcode', array( 'type' => 'text', 'section' => 'newsletter_settings', 'label' => __( 'Newsletter Shortcode', 'blossom-floral-pro' ), 'description' => __( 'Enter the BlossomThemes Email Newsletters Shortcode. Ex. [BTEN id="356"]', 'blossom-floral-pro' ), ) ); $wp_customize->add_setting( 'newsletter_image', array( 'default' => get_template_directory_uri() . '/images/newsletter-section-img.png', 'sanitize_callback' => 'blossom_floral_pro_sanitize_image', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'newsletter_image', array( 'label' => __( 'Primary Image', 'blossom-floral-pro' ), 'description'=> __( 'Choose image to be displayed beside the newsletter. The recommended size for image is 570px by 570px in JPG format.', 'blossom-floral-pro' ), 'section' => 'newsletter_settings', ) ) ); $wp_customize->add_setting( 'newsletter_bg_image', array( 'default' => get_template_directory_uri() . '/images/newslettersection-bg.png', 'sanitize_callback' => 'blossom_floral_pro_sanitize_image', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'newsletter_bg_image', array( 'label' => __( 'Background Image', 'blossom-floral-pro' ), 'description'=> __( 'Choose background Image of your choice. The recommended size for image is 1920px by 854px in JPG format.', 'blossom-floral-pro' ), 'section' => 'newsletter_settings', ) ) ); } else { $wp_customize->add_setting( 'newsletter_recommend', array( 'sanitize_callback' => 'wp_kses_post', ) ); $wp_customize->add_control( new Blossom_Floral_Pro_Plugin_Recommend_Control( $wp_customize, 'newsletter_recommend', array( 'section' => 'newsletter_settings', 'label' => __( 'Newsletter Shortcode', 'blossom-floral-pro' ), 'capability' => 'install_plugins', 'plugin_slug' => 'blossomthemes-email-newsletter',//This is the slug of recommended plugin. 'description' => sprintf( __( 'Please install and activate the recommended plugin %1$sBlossomThemes Email Newsletter%2$s. After that option related with this section will be visible.', 'blossom-floral-pro' ), '', '' ), ) ) ); } } add_action( 'customize_register', 'blossom_floral_pro_customize_register_frontpage_newsletter' );