*/
function boxwp_upgrade_to_pro($wp_customize) {
$wp_customize->add_section( 'sc_boxwp_upgrade', array( 'title' => esc_html__( 'Upgrade to Pro Version', 'boxwp' ), 'priority' => 400 ) );
$wp_customize->add_setting( 'boxwp_options[upgrade_text]', array( 'default' => '', 'sanitize_callback' => '__return_false', ) );
$wp_customize->add_control( new BoxWP_Customize_Static_Text_Control( $wp_customize, 'boxwp_upgrade_text_control', array(
'label' => esc_html__( 'BoxWP Pro', 'boxwp' ),
'section' => 'sc_boxwp_upgrade',
'settings' => 'boxwp_options[upgrade_text]',
'description' => esc_html__( 'Do you enjoy BoxWP? Upgrade to BoxWP Pro now and get:', 'boxwp' ).
'
' .
'- ' . esc_html__( 'Color Options', 'boxwp' ) . '
' .
'- ' . esc_html__( 'Font Options', 'boxwp' ) . '
' .
'- ' . esc_html__( 'Layout Options', 'boxwp' ) . '
' .
'- ' . esc_html__( 'News Ticker', 'boxwp' ) . '
' .
'- ' . esc_html__( 'Custom Page Templates', 'boxwp' ) . '
' .
'- ' . esc_html__( 'Custom Post Templates', 'boxwp' ) . '
' .
'- ' . esc_html__( 'Posts Grid-Layout Styles (2/3/4 Columns)', 'boxwp' ) . '
' .
'- ' . esc_html__( 'Posts Grid-Thumbnails Styles (Horizontal/Square/Vertical/Auto Height)', 'boxwp' ) . '
' .
'- ' . esc_html__( 'Featured Posts Widgets with Layout Styles (2/3/4 Columns) and Thumbnail Styles (Horizontal/Square/Vertical/Auto Height) : These widgets displays recent/popular/random posts or posts from a given category or tag.', 'boxwp' ) . '
' .
'- ' . esc_html__( '1/2/3/4 Columns Footer', 'boxwp' ) . '
' .
'- ' . esc_html__( 'Tabbed Widget', 'boxwp' ) . '
' .
'- ' . esc_html__( 'Social Profiles Widget and About Me Widget', 'boxwp' ) . '
' .
'- ' . esc_html__( '2 Header Layouts (full-width header or header+728x90 ad)', 'boxwp' ) . '
' .
'- ' . esc_html__( 'Post Summaries/Posts Share Buttons', 'boxwp' ) . '
' .
'- ' . esc_html__( 'Related Posts with Thumbnails', 'boxwp' ) . '
' .
'- ' . esc_html__( 'Author Bio Box with Social Buttons', 'boxwp' ) . '
' .
'- ' . esc_html__( 'Sticky Menu/Sticky Sidebars with enable/disable capability', 'boxwp' ) . '
' .
'- ' . esc_html__( 'WooCommerce Support', 'boxwp' ) . '
' .
'- ' . esc_html__( 'Built-in Contact Form', 'boxwp' ) . '
' .
'- ' . esc_html__( 'Search Engine Optimized', 'boxwp' ) . '
' .
'- ' . esc_html__( 'More Customizer options', 'boxwp' ) . '
' .
'- ' . esc_html__( 'More Features...', 'boxwp' ) . '
' .
'
'.
' ' . esc_html__( 'Upgrade To BoxWP PRO', 'boxwp' ) . ''
) ) );
}