Sindbad~EG File Manager
<?php
/**
* Big Patterns Theme Customizer
*
* @package Big_Bob
*/
/**
* Add postMessage support for site title and description for the Theme Customizer.
*
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
*/
function big_bob_customize_register( $wp_customize ) {
//You have to update the widgets panel this way or it throws a warning;
$bb_widgets_section = (object) $wp_customize->get_panel( 'widgets' );
$bb_widgets_section->title = __( 'Sidebar and Footer Blocks', 'big-patterns' );
$wp_customize->get_setting( 'header_textcolor' )->transport = 'refresh';
$wp_customize->get_control('header_textcolor')->description = __('This controls the color of the title (not the logo).', "big-patterns");
$wp_customize->get_control('header_textcolor')->priority = -1;
$wp_customize->get_control('header_textcolor')->label = __('Title Color', 'big-patterns');
$wp_customize->get_section( 'header_image' )->title = __('Homepage Header Media', 'big-patterns');
$wp_customize->get_section( 'header_image' )->priority = '150';
$wp_customize->get_setting( 'header_image' )->transport = 'refresh';
$wp_customize->get_section( 'header_image' )->description = __("The big-patterns theme is designed to maximize the size of any header image
or header video while minimizing distortion regardless of the screen size or the header media's dimensions.
<u> You should feel free to utilize horizontally or vertically or squarely defined images or videos.</u>
If you choose both an image and a video, the image will load first then the video will replace it. Header media is only displayed
on your homepage.", "big-patterns");
$wp_customize->get_setting( 'header_video' )->transport = 'refresh';
$wp_customize->get_setting( 'external_header_video' )->transport = 'refresh';
$wp_customize->get_setting( 'custom_logo' )->transport = 'refresh';
$wp_customize->get_control( 'display_header_text' )->description = __('This only affects the logo if it is displayed below the navbar.
Turning this off usually looks best when <u>Center Navbar</u> has been switched on.', "big-patterns");
$wp_customize->get_control('display_header_text')->section = 'big_bob_navigation';
$wp_customize->get_control( 'background_color' )->description = __('Black or a dark color works best when the theme is in the default
setting. White or a light color works best when the theme is in bright mode.', "big-patterns");
$wp_customize->get_control('background_color')->priority = '-3';
$wp_customize->get_control( 'external_header_video' )->description = __("YouTube adds extra negative space to its videos,
so your background color may include black in the header. You should also be aware that some browsers do not support
YouTube's autoplay feature, so it is recommended that you set the <u>Set Header Media to Background</u> control in the
<u>Header Media Options</u>section to OFF.", "big-patterns");
$wp_customize->get_control( 'external_header_video' )->label = __("Use a YouTube URL", "big-patterns");
$wp_customize->add_setting('big_bob_preloader', array(
'default' => 'On',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_preloader', array(
'label' => __('Preloader for Featured and Header Media', 'big-patterns'),
'section' => 'title_tagline',
'settings' => 'big_bob_preloader',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 0,
'description' => __('This turns the prelaoder on and off when featured and header media needs to be loaded.', 'big-patterns'),
));
$wp_customize->add_setting('big_bob_title_below_nav', array(
'default' => 'Off',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit_Big_Small',
));
$wp_customize->add_control('big_bob_title_below_nav', array(
'label' => __('Title Below Nav', 'big-patterns'),
'section' => 'big_bob_navigation',
'settings' => 'big_bob_title_below_nav',
'type' => 'radio',
'choices' => array(
'Big' => __('Big', 'big-patterns'),
'Small' => __('Small', 'big-patterns'),
'Logo Below Nav' => __('Logo Below Nav', 'big-patterns'),
'Big Tagline Only' => __('Big Tagline Only', 'big-patterns'),
'Small Tagline Only' => __('Small Tagline Only', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 50,
'description' => __('This removes the title and tagline from the navbar, and
sets the title and tagline below the navbar on the homepage. You may want to turn on
<u>Center Navbar</u> in the <u>Navigation</u> section.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_title_below_nav', array(
'render_callback' => 'big_bob_turn_on_big_description, big_bob_add_bright',
) );
$wp_customize->add_setting('big_bob_foreground_color_NF', array(
'default' => '#eeee22',
'transport' => 'refresh',
'sanitize_callback' => 'sanitize_hex_color_no_hash',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'big_bob_foreground_color_NF', array(
'label' => __('Navbar and Footer Foreground Color', 'big-patterns'),
'section' => 'colors',
'settings' => 'big_bob_foreground_color_NF',
'priority' => -5,
'description' => __('This will change the color behind the text in the navbar and footer.', 'big-patterns'),
)));
$wp_customize->selective_refresh->add_partial( 'big_bob_foreground_color_NF', array(
'render_callback' => 'big_bob_add_bright',
) );
$wp_customize->add_setting('big_bob_link_color_NF', array(
'default' => '#000000',
'transport' => 'refresh',
'sanitize_callback' => 'sanitize_hex_color_no_hash',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'big_bob_link_color_NF', array(
'label' => __('Navbar and Footer Link Color', 'big-patterns'),
'section' => 'colors',
'settings' => 'big_bob_link_color_NF',
'priority' => -5,
'description' => __('This will change the color behind the text in the navbar and footer.', 'big-patterns'),
)));
$wp_customize->selective_refresh->add_partial( 'big_bob_link_color_NF', array(
'render_callback' => 'big_bob_add_bright',
) );
$wp_customize->add_setting('big_bob_link_hover_color_NF', array(
'default' => '#ffffff',
'transport' => 'refresh',
'sanitize_callback' => 'sanitize_hex_color_no_hash',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'big_bob_link_hover_color_NF', array(
'label' => __('Navbar and Footer Link Hover Color', 'big-patterns'),
'section' => 'colors',
'settings' => 'big_bob_link_hover_color_NF',
'priority' => -5,
'description' => __('This will change the color behind the text in the navbar and footer.', 'big-patterns'),
)));
$wp_customize->selective_refresh->add_partial( 'big_bob_link_hover_color_NF', array(
'render_callback' => 'big_bob_add_bright',
) );
$wp_customize->add_setting('big_bob_text_color_NF', array(
'default' => '#000000',
'transport' => 'refresh',
'sanitize_callback' => 'sanitize_hex_color_no_hash',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'big_bob_text_color_NF', array(
'label' => __('Navbar and Footer Text and Border Color', 'big-patterns'),
'section' => 'colors',
'settings' => 'big_bob_text_color_NF',
'priority' => -5,
'description' => __('This will change the color behind the text in the navbar and footer.', 'big-patterns'),
)));
$wp_customize->selective_refresh->add_partial( 'big_bob_text_color_NF', array(
'render_callback' => 'big_bob_add_bright',
) );
$wp_customize->add_setting('big_bob_foreground_color', array(
'default' => '#000000',
'transport' => 'refresh',
'sanitize_callback' => 'sanitize_hex_color_no_hash',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'big_bob_foreground_color', array(
'label' => __('Body and Sidebar Foreground Color', 'big-patterns'),
'section' => 'colors',
'settings' => 'big_bob_foreground_color',
'priority' => -5,
'description' => __('This will change the color behind the text in the body and sidebar.', 'big-patterns'),
)));
$wp_customize->selective_refresh->add_partial( 'big_bob_foreground_color', array(
'render_callback' => 'big_bob_add_bright',
) );
$wp_customize->add_setting('big_bob_background_color', array(
'default' => '#000000',
'transport' => 'refresh',
'sanitize_callback' => 'sanitize_hex_color_no_hash',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'big_bob_background_color', array(
'label' => __('Background Color', 'big-patterns'),
'section' => 'colors',
'settings' => 'big_bob_background_color',
'priority' => -5,
'description' => __('This will change the color behind everything.', 'big-patterns'),
)));
$wp_customize->selective_refresh->add_partial( 'big_bob_background_color', array(
'render_callback' => 'big_bob_add_bright',
) );
$wp_customize->add_setting('big_bob_text_color', array(
'default' => '#ffffff',
'transport' => 'refresh',
'sanitize_callback' => 'sanitize_hex_color_no_hash',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'big_bob_text_color', array(
'label' => __('Body Text and Border Color', 'big-patterns'),
'section' => 'colors',
'settings' => 'big_bob_text_color',
'priority' => -5,
'description' => __('This will change the color of the text (not links) and the borders
surrounding the lower sections of the site.', 'big-patterns'),
)));
$wp_customize->selective_refresh->add_partial( 'big_bob_text_color', array(
'render_callback' => 'big_bob_add_bright',
) );
$wp_customize->add_setting( 'big_bob_range_home_nav_ti', array(
'default' => '10',
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'transport' => 'refresh',
'sanitize_callback' => 'bb_wpse_intval',
) );
$wp_customize->add_control( 'big_bob_range_home_nav_ti', array(
'type' => 'range',
'section' => 'colors',
'label' => __( 'Home Navbar and Footer Opacity', 'big-patterns' ),
'description' => '',
'priority' => 0,
'input_attrs' => array(
'min' => 0,
'max' => 10,
'step' => 1,
),
'description' => __('This is the opacity for foreground color at the top of the page
for your homepage.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_range_home_nav_ti', array(
'render_callback' => 'big_bob_add_bright',
) );
$wp_customize->add_setting( 'big_bob_range_nav_ti', array(
'default' => '10',
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'transport' => 'refresh',
'sanitize_callback' => 'bb_wpse_intval',
) );
$wp_customize->add_control( 'big_bob_range_nav_ti', array(
'type' => 'range',
'priority' => 10,
'section' => 'colors',
'label' => __( 'Navbar and Footer Opacity', 'big-patterns' ),
'description' => '',
'priority' => 0,
'input_attrs' => array(
'min' => 0,
'max' => 10,
'step' => 1,
),
'description' => __('This is the opacity for foreground color at the top of the page
for the rest of your pages.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_range_nav_ti', array(
'render_callback' => 'big_bob_add_bright',
) );
$wp_customize->add_setting( 'big_bob_range_sn', array(
'default' => '10',
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'transport' => 'refresh',
'sanitize_callback' => 'bb_wpse_intval',
) );
$wp_customize->add_control( 'big_bob_range_sn', array(
'type' => 'range',
'section' => 'colors',
'label' => __( 'Scrolled Navbar Opacity', 'big-patterns' ),
'description' => '',
'priority' => 0,
'input_attrs' => array(
'min' => 0,
'max' => 10,
'step' => 1,
),
'description' => __('This is the opacity for the navbar after it has scrolled down the screen.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_range_sn', array(
'render_callback' => 'big_bob_add_bright',
) );
$wp_customize->add_setting( 'big_bob_range_sb', array(
'default' => '10',
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'transport' => 'refresh',
'sanitize_callback' => 'bb_wpse_intval',
) );
$wp_customize->add_control( 'big_bob_range_sb', array(
'type' => 'range',
'section' => 'colors',
'label' => __( 'Body Opacity', 'big-patterns' ),
'description' => '',
'priority' => 0,
'input_attrs' => array(
'min' => 0,
'max' => 10,
'step' => 1,
),
'description' => __('This is the opacity for foreground color for the body, sidebar, and footer.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_range_sb', array(
'render_callback' => 'big_bob_add_bright',
) );
$wp_customize->add_setting( 'big_bob_range_tile_large_screen', array(
'default' => '170',
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'transport' => 'refresh',
'sanitize_callback' => 'bb_wpse_intval',
) );
$wp_customize->add_control( 'big_bob_range_tile_large_screen', array(
'type' => 'range',
'section' => 'big_bob_body_style',
'label' => __( 'Space from Top for Tiled Page Body on Large Screens', 'big-patterns' ),
'priority' => -3,
'input_attrs' => array(
'min' => 0,
'max' => 300,
'step' => 10,
),
'description' => __('This sets the distance between the body of a tiled page (post style) and the top of the page
on large screens.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_range_tile_large_screen', array(
'render_callback' => 'big_bob_measure_tile_from_top',
) );
$wp_customize->add_setting( 'big_bob_range_tile_tablet', array(
'default' => '130',
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'transport' => 'refresh',
'sanitize_callback' => 'bb_wpse_intval',
) );
$wp_customize->add_control( 'big_bob_range_tile_tablet', array(
'type' => 'range',
'section' => 'big_bob_body_style',
'label' => __( 'Space from Top for Tiled Page Body on Tablets', 'big-patterns' ),
'priority' => -3,
'input_attrs' => array(
'min' => 0,
'max' => 300,
'step' => 10,
),
'description' => __('This sets the distance between the body of a tiled page (post style) the top of the page
on tablet sized screens.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_range_tile_tablet', array(
'render_callback' => 'big_bob_measure_tile_from_top',
) );
$wp_customize->add_setting( 'big_bob_range_tile_phone', array(
'default' => '150',
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'transport' => 'refresh',
'sanitize_callback' => 'bb_wpse_intval',
) );
$wp_customize->add_control( 'big_bob_range_tile_phone', array(
'type' => 'range',
'section' => 'big_bob_body_style',
'label' => __( 'Space from Top for Tiled Page Body on Phones', 'big-patterns' ),
'priority' => -3,
'input_attrs' => array(
'min' => 0,
'max' => 300,
'step' => 10,
),
'description' => __('This sets the distance between the body of a tiled page (post style) and the top of the page
on phone sized screens.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_range_tile_phone', array(
'render_callback' => 'big_bob_measure_tile_from_top',
) );
$wp_customize->add_setting( 'big_bob_range_wide_large_screen', array(
'default' => '190',
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'transport' => 'refresh',
'sanitize_callback' => 'bb_wpse_intval',
) );
$wp_customize->add_control( 'big_bob_range_wide_large_screen', array(
'type' => 'range',
'section' => 'big_bob_body_style',
'label' => __( "Space from Top for Big Page Body on Large Screens", 'big-patterns' ),
'priority' => -1,
'input_attrs' => array(
'min' => 0,
'max' => 300,
'step' => 10,
),
'description' => __("The <u>Big Page</u> control must be on. This only affects <b>Big Pages</b>.
This sets the distance between the body of a big page and the top of the page
on large screens.", 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_range_wide_large_screen', array(
'render_callback' => 'big_bob_turn_on_wide_when_centered',
) );
$wp_customize->add_setting( 'big_bob_range_wide_tablet', array(
'default' => '160',
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'transport' => 'refresh',
'sanitize_callback' => 'bb_wpse_intval',
) );
$wp_customize->add_control( 'big_bob_range_wide_tablet', array(
'type' => 'range',
'section' => 'big_bob_body_style',
'label' => __( 'Space from Top for Big Page Body on Tablets', 'big-patterns' ),
'priority' => -1,
'input_attrs' => array(
'min' => 0,
'max' => 300,
'step' => 10,
),
'description' => __('The <u>Big Page</u> control must be on. This only affects <b>Big Pages</b>.
This sets the distance between the body of a big page and the top of the page
on tablet sized screens.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_range_wide_tablet', array(
'render_callback' => 'big_bob_turn_on_wide_when_centered',
) );
$wp_customize->add_setting( 'big_bob_range_wide_phone', array(
'default' => '180',
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'transport' => 'refresh',
'sanitize_callback' => 'bb_wpse_intval',
) );
$wp_customize->add_control( 'big_bob_range_wide_phone', array(
'type' => 'range',
'section' => 'big_bob_body_style',
'label' => __( 'Space from Top for Big Page Body on Phones', 'big-patterns' ),
'priority' => -1,
'input_attrs' => array(
'min' => 0,
'max' => 300,
'step' => 10,
),
'description' => __('The <u>Big Page</u> control must be on. This only affects <b>Big Pages</b>.
This sets the distance between the body of a big page and the top of the page
on phone sized screens.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_range_wide_phone', array(
'render_callback' => 'big_bob_turn_on_wide_when_centered',
) );
function bb_wpse_intval( $value ) {
return (int) $value;
}
$wp_customize->add_setting('big_bob_background_shadow', array(
'default' => 'On',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_background_shadow', array(
'label' => 'Shadow Halo',
'section' => 'colors',
'settings' => 'big_bob_background_shadow',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 0,
'description' => __('This creates a shadow effect around the different sections of your site and changes the style of shadow effect
behind the hamburger menu site title.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_background_shadow', array(
'render_callback' => 'big_bob_add_shadow',
) );
$wp_customize->add_setting('big_bob_borders', array(
'default' => 'On',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_borders', array(
'label' => 'Borders',
'section' => 'colors',
'settings' => 'big_bob_borders',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 0,
'description' => __('This will add borders that are the same color as the text.
The borders will be added around the body, sidebar, and footer.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_borders', array(
'render_callback' => 'big_bob_add_bright, big_bob_set_nav',
) );
$wp_customize->add_setting('big_bob_title_shadow', array(
'default' => 'Off',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_title_shadow', array(
'label' => 'Title Shadow',
'section' => 'colors',
'settings' => 'big_bob_title_shadow',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 0,
'description' => __('This will add or remove a shadow from behind the title if a title is displayed in the navbar.
There is no shadow effect available if a logo is displayed.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_title_shadow', array(
'render_callback' => 'big_bob_add_shadow',
) );
$wp_customize->add_setting('big_bob_link_color', array(
'default' => '#eeee22',
'transport' => 'postMessage',
'sanitize_callback' => 'sanitize_hex_color_no_hash',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'big_bob_link_color', array(
'label' => __('Link Color', 'big-patterns'),
'section' => 'colors',
'settings' => 'big_bob_link_color',
'priority' => -1,
'description' => __('This will change the color of all the links.', 'big-patterns'),
)));
$wp_customize->selective_refresh->add_partial( 'big_bob_link_color', array(
'render_callback' => 'big_bob_customizer_css',
) );
$wp_customize->add_setting('big_bob_link_hover_color', array(
'default' => '#1e73be',
'transport' => 'refresh',
'sanitize_callback' => 'sanitize_hex_color_no_hash',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'big_bob_link_hover_color', array(
'label' => __('Link Hover Color', 'big-patterns'),
'section' => 'colors',
'settings' => 'big_bob_link_hover_color',
'priority' => -1,
'description' => __('This will change the hover color of all the links.', 'big-patterns'),
)));
$wp_customize->selective_refresh->add_partial( 'big_bob_link_hover_color', array(
'render_callback' => 'big_bob_customizer_css',
) );
$wp_customize->add_setting('big_bob_media_to_background', array(
'default' => 'Off',
'transport' => 'postMessage',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_media_to_background', array(
'label' => __('Set Header Media to Background', 'big-patterns'),
'section' => 'header_image',
'settings' => 'big_bob_media_to_background',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 0,
'description' => __('Turning this on will cause the header media to stay in place and the text to scroll over the top of the media.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_media_to_background', array(
'render_callback' => 'big_bob_media_in_background',
) );
$wp_customize->add_setting('big_bob_video_on_phone', array(
'default' => 'On',
'transport' => 'postMessage',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_video_on_phone', array(
'label' => __('Show Header Video On Mobile', 'big-patterns'),
'section' => 'header_image',
'settings' => 'big_bob_video_on_phone',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 0,
'description' => __('Turns off the video for mobile devices with small screen sizes (a width of less than 1050 pixels).
The item loaded (image or video) is based on the width when the site loads.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_video_on_phone', array(
'render_callback' => 'big_bob_video_for_phone',
) );
$wp_customize->add_setting('big_bob_big_header_image', array(
'default' => 'Off',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_big_header_image', array(
'label' => 'Big Header Image',
'section' => 'header_image',
'settings' => 'big_bob_big_header_image',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 0,
'description' => __('Fills the header image across the entire screen.', 'big-patterns'),
));
$wp_customize->add_setting('big_bob_big_background_copy', array(
'default' => 'On',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_big_background_copy', array(
'label' => 'Big Background Image',
'section' => 'big_bob_background_video',
'settings' => 'big_bob_big_background_copy',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 0,
'description' => __('This transforms the background image so that it expands across the entire screen and is centered. However, depending
on the window size, some of the image may be cut off.', 'big-patterns'),
));
$wp_customize->add_setting('big_bob_background_header_space', array(
'default' => 'Off',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_background_header_space', array(
'label' => 'Homepage Header Space',
'section' => 'big_bob_background_video',
'settings' => 'big_bob_background_header_space',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 0,
'description' => __('This pushes the body down the height of the screen on the hompepage
when the <u>Title Below Nav</u> contorl in the Navigation section is switched off.', 'big-patterns'),
));
$wp_customize->add_setting('big_bob_image_over_video', array(
'default' => 'Off',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_image_over_video', array(
'label' => 'Image Over Video',
'section' => 'big_bob_background_video',
'settings' => 'big_bob_image_over_video',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 0,
'description' => __('This places the bacground image over the background video.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_image_over_video', array(
'render_callback' => 'big_bob_is_image_over_video',
) );
$wp_customize->add_section('big_bob_navigation', array(
'title' => __('Navigation', 'big-patterns'),
'priority' => 30,
));
$wp_customize->add_setting('big_bob_sticky_sidebar', array(
'default' => 'On',
'transport' => 'postMessage',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_sticky_sidebar', array(
'label' => __('Sticky Sidebar', 'big-patterns'),
'section' => 'big_bob_navigation',
'settings' => 'big_bob_sticky_sidebar',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 110,
'description' => __('If a sidebar is being used, and a reduced sidebar is shorter than the body,
then turning this on will cause the sidebar to shrink in size if it is big
and become its own window with its own scrollbar, and it will stick into position when you scroll down the screen.
This feature is not available on all browsers.', 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_sticky_sidebar', array(
'render_callback' => 'big_bob_sidebar_is_sticky',
) );
$wp_customize->selective_refresh->add_partial( 'big_bob_sticky_navbar_on_mobile', array(
'render_callback' => 'big_bob_phone_is_sticky',
) );
$wp_customize->add_setting('big_bob_sticky_navbar_on_mobile', array(
'default' => 'Off',
'transport' => 'postMessage',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_sticky_navbar_on_mobile', array(
'label' => __('Sticky Title On Mobile', 'big-patterns'),
'section' => 'big_bob_navigation',
'settings' => 'big_bob_sticky_navbar_on_mobile',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 110,
'description' => __('Turning this off will remove most of the navbar (except the menu button) when scrolling down mobile screens
(screens with a width less than 1065px). If you do not have a title in the navbar, then only the menu button is
dsiplayed regarless of the status of this control.', 'big-patterns'),
));
$wp_customize->add_section('big_bob_body_style', array(
'title' => __('Layout', 'big-patterns'),
'priority' => 30,
));
$wp_customize->add_setting('big_bob_highlight_feature_image', array(
'default' => 'Featured Images Only',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFeatured',
));
$wp_customize->add_control('big_bob_highlight_feature_image', array(
'label' => __('Header Space for Featured Media', 'big-patterns'),
'section' => 'big_bob_body_style',
'settings' => 'big_bob_highlight_feature_image',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Featured Images Only' => __('Featured Images Only', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 10,
'description' => __("This will move the text down the width of the screen on single pages and posts
so that feaured and background images and videos receive more exposure. If you find this control confusing, then
it is best to leave it in the <u>Featured Images Only</u> position.", 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_highlight_feature_image', array(
'render_callback' => 'big_bob_turn_on_highlighted_featured_image',
) );
$wp_customize->add_setting('big_bob_page_titles', array(
'default' => 'Featured Images Only',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFeatured',
));
$wp_customize->add_control('big_bob_page_titles', array(
'label' => __('Page Titles', 'big-patterns'),
'section' => 'big_bob_body_style',
'settings' => 'big_bob_page_titles',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Featured Images Only' => __('Featured Images Only', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 10,
'description' => __("This controls whether page titles are displayed on pages (not posts).
The <u>Featured Images Only</u> option is designed to show a title only when the featured image takes up the
entire page. This can be controlled witn the header space control. If you find this control confusing, then
it is best to leave it in the <u>Featured Images Only</u> position.", 'big-patterns'),
));
$wp_customize->add_setting('big_bob_wide_when_centered', array(
'default' => 'Off',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_wide_when_centered', array(
'label' => __('Big Pages', 'big-patterns'),
'section' => 'big_bob_body_style',
'settings' => 'big_bob_wide_when_centered',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => -2,
'description' => __("This will widen the width of the body to the full width of the screen
and bring the page closer to the top if there is no header or featured media on pages (not posts) when the
sidebar isn't present. Note that bringing the page close to the top can be offset by the
<u>Page Titles</u> control and the <u>Header Space for Featured Media</u>. If you get confused, then it is
best to reset both controls to <u>Featured Images Only</u>.", 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_wide_when_centered', array(
'render_callback' => 'big_bob_turn_on_wide_when_centered',
) );
$wp_customize->add_setting('big_bob_excerpt_mode', array(
'default' => 'Off',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_excerpt_mode', array(
'label' => __('Excerpt Mode', 'big-patterns'),
'section' => 'big_bob_body_style',
'settings' => 'big_bob_excerpt_mode',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 0,
'description' => __("This will turrn off excerpt mode for the post and archive results pages, but it will leave it on
for the search results page.", 'big-patterns'),
));
$wp_customize->add_setting('big_bob_fearued_post_page', array(
'default' => 'Off',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_fearued_post_page', array(
'label' => __('Post Page Featured Image', 'big-patterns'),
'section' => 'big_bob_body_style',
'settings' => 'big_bob_fearued_post_page',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 0,
'description' => __("This will show your featured images on your posts and archive pages.", 'big-patterns'),
));
$wp_customize->add_setting('big_bob_rounded_corners', array(
'default' => 'On',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_rounded_corners', array(
'label' => __('Rounded Corners', 'big-patterns'),
'section' => 'big_bob_body_style',
'settings' => 'big_bob_rounded_corners',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => -1,
'description' => __("This will create rounded corners for groups, images, and some other blocks.", 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_rounded_corners', array(
'render_callback' => 'big_bob_round_out_corners',
) );
$wp_customize->add_setting('big_bob_blog_sidebar_only', array(
'default' => 'Off',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit_home',
));
$wp_customize->add_control('big_bob_blog_sidebar_only', array(
'label' => __('No Sidebar for Static Pages', 'big-patterns'),
'section' => 'big_bob_body_style',
'settings' => 'big_bob_blog_sidebar_only',
'type' => 'radio',
'choices' => array(
'Home Only' => __('Home Only', 'big-patterns'),
'Except Home' => __('Except Home', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => -1,
'description' => __("You have two kinds of sidebars. One pair can be used in pages. Thee other pair can be used in posts.
You can use this radio button to control which pages your page sidebars appear on. Note that if
you choose <u>Home Only</u> or <u>Except Home</u>, your homepage must be defined as a static page in <u>Homepage Settings</u>.", 'big-patterns'),
));
$wp_customize->add_section('big_bob_background_video', array(
'title' => __('Background Media', 'big-patterns'),
'priority' => 90,
'description' => __('You can use this section to set mobile friendly background images and videos
into different areas of your site, inlcluding area not covered by header media and featured media.', 'big-patterns'),
));
$wp_customize->add_setting('big_bob_background_image_media', array(
'type' => 'theme_mod',
'sanitize_callback' => 'absint'
));
$wp_customize->add_control(new WP_Customize_Media_Control($wp_customize, 'big_bob_background_image_media', array(
'section' => 'big_bob_background_video',
'settings' => 'big_bob_background_image_media',
'label' => __('Load a Background Image.', 'big-patterns'),
'mime_type' => 'image',
'priority' => -1,
'description' => __('The background image has been designed to be mobile friendly.
It will serve as your default background image. It will be replaced on your homepage
if you use header media or on pages that have added a featured image or on
pages set as <i>Big Pages</i> in the <u>Layout</u> section.', 'big-patterns'),
)));
$wp_customize->add_setting('big_bob_background_video_media', array(
'type' => 'theme_mod',
'sanitize_callback' => 'absint'
));
$wp_customize->add_control(new WP_Customize_Media_Control($wp_customize, 'big_bob_background_video_media', array(
'section' => 'big_bob_background_video',
'settings' => 'big_bob_background_video_media',
'label' => __('Load a Background Video.', 'big-patterns'),
'mime_type' => 'video',
'priority' => 0,
'description' => __('The background video has been designed to be mobile friendly.
It will serve as your default background video. It will be replaced on your homepage
if you use header media or on pages that have added a featured image or on
pages set as <i>Big Pages</i> in the <u>Layout</u> section.', 'big-patterns'),
)));
$wp_customize->add_setting('big_bob_show_footer', array(
'default' => 'On',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit_Att',
));
$wp_customize->add_control('big_bob_show_footer', array(
'label' => __('Show Footer', 'big-patterns'),
'section' => 'big_bob_body_style',
'settings' => 'big_bob_show_footer',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Remove Attribution Only' => __('Remove Attribution Only', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 100,
'description' => __("Turning this off will completely remove the footer and the back to top button.", 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_show_footer', array(
'render_callback' => 'big_bob_show_footer_on',
) );
// Add section.
$wp_customize->add_section( 'big_bob_fonts' , array(
'title' => __('Typography','big-patterns'),
'priority' => 50,
'description' => __("You can use this to update the default fonts using the fonts
from the google fonts api (https://fonts.google.com/). If you want to add a new font,
then you need to use the exact letter casing and spacing. You should be able to achieve this
by copying and pasting the name of the font directly from the google fonts site.
Because the Google font library is so large, you will
find that some fonts are more compatible than others. If you delete all of the
font names then your fonts will be set to default and will be hosted locally.", 'big-patterns'),
) );
// Add settings
$wp_customize->add_setting( 'big_bob_fonts_main_title', array(
'default' => __( 'Syncopate', 'big-patterns' ),
'sanitize_callback' => 'wp_filter_nohtml_kses',
) );
$wp_customize->add_control( new WP_Customize_Control(
$wp_customize,
'big_bob_fonts_main_title',
array(
'label' => __( 'Title', 'big-patterns' ),
'section' => 'big_bob_fonts',
'settings' => 'big_bob_fonts_main_title',
'type' => 'text',
'description' => __("If this is left blank, then headings will used as the title font.", 'big-patterns'),
)
)
);
$wp_customize->selective_refresh->add_partial( 'big_bob_fonts_main_title', array(
'render_callback' => 'big_bob_change_fonts_main_title',
) );
// Add settings
$wp_customize->add_setting( 'big_bob_fonts_title', array(
'default' => __( 'IBM Plex Mono', 'big-patterns' ),
'sanitize_callback' => 'wp_filter_nohtml_kses',
) );
$wp_customize->add_control( new WP_Customize_Control(
$wp_customize,
'big_bob_fonts_title',
array(
'label' => __( 'Headings', 'big-patterns' ),
'section' => 'big_bob_fonts',
'settings' => 'big_bob_fonts_title',
'type' => 'text',
)
)
);
$wp_customize->selective_refresh->add_partial( 'big_bob_fonts_title', array(
'render_callback' => 'big_bob_change_fonts_title',
) );
// Add settings
$wp_customize->add_setting( 'big_bob_fonts_paragraph', array(
'default' => __( 'IBM Plex Mono', 'big-patterns' ),
'sanitize_callback' => 'wp_filter_nohtml_kses',
) );
$wp_customize->add_control( new WP_Customize_Control(
$wp_customize,
'big_bob_fonts_paragraph',
array(
'label' => __( 'Paragraph', 'big-patterns' ),
'section' => 'big_bob_fonts',
'settings' => 'big_bob_fonts_paragraph',
'type' => 'text',
)
)
);
$wp_customize->selective_refresh->add_partial( 'big_bob_fonts_paragraph', array(
'render_callback' => 'big_bob_change_fonts_paragraph',
) );
// Add settings
$wp_customize->add_setting( 'big_bob_fonts_misc', array(
'default' => __( 'Syncopate', 'big-patterns' ),
'sanitize_callback' => 'wp_filter_nohtml_kses',
) );
$wp_customize->add_control( new WP_Customize_Control(
$wp_customize,
'big_bob_fonts_misc',
array(
'label' => __( 'Menus and Miscellaneous', 'big-patterns' ),
'section' => 'big_bob_fonts',
'settings' => 'big_bob_fonts_misc',
'type' => 'text',
)
)
);
$wp_customize->selective_refresh->add_partial( 'big_bob_fonts_misc', array(
'render_callback' => 'big_bob_change_fonts_misc',
) );
$wp_customize->add_setting('big_bob_center_nav', array(
'default' => 'On',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_center_nav', array(
'label' => __('Center Navbar', 'big-patterns'),
'section' => 'big_bob_navigation',
'settings' => 'big_bob_center_nav',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 90,
'description' => __("This will center the contents of the navbar on wide screens and remove the tagline from the navbar
if it is being shown.", 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_center_nav', array(
'render_callback' => 'big_bob_set_nav',
) );
$wp_customize->add_setting('big_bob_menu_size', array(
'default' => 'Medium',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMenuSize',
));
$wp_customize->add_control('big_bob_menu_size', array(
'label' => __('Menu Size', 'big-patterns'),
'section' => 'big_bob_navigation',
'settings' => 'big_bob_menu_size',
'type' => 'radio',
'choices' => array(
'Small' => __('Small', 'big-patterns'),
'Medium' => __('Medium', 'big-patterns'),
'Large' => __('Large', 'big-patterns'),
),
'priority' => 100,
'description' => __("This will change the size of the menu items in your navbar.", 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_menu_size', array(
'render_callback' => 'big_bob_set_nav',
) );
$wp_customize->add_setting('big_bob_menu_spacing', array(
'default' => 'Large',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMenuSize',
));
$wp_customize->add_control('big_bob_menu_spacing', array(
'label' => __('Menu Spacing', 'big-patterns'),
'section' => 'big_bob_navigation',
'settings' => 'big_bob_menu_spacing',
'type' => 'radio',
'choices' => array(
'Small' => __('Small', 'big-patterns'),
'Medium' => __('Medium', 'big-patterns'),
'Large' => __('Large', 'big-patterns'),
),
'priority' => 100,
'description' => __("This will change the spacing between your menu items.", 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_menu_spacing', array(
'render_callback' => 'big_bob_set_nav',
) );
$wp_customize->add_setting('big_bob_underline_menu', array(
'default' => 'On',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_underline_menu', array(
'label' => __('Underline Current Page', 'big-patterns'),
'section' => 'big_bob_navigation',
'settings' => 'big_bob_underline_menu',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 90,
'description' => __("This will underline the current page in the main navigation menu.
It may be helpful to turn this off if you are creating a one page website.", 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_underline_menu', array(
'render_callback' => 'big_bob_set_underline',
) );
$wp_customize->add_setting('big_bob_center_nav_with_tagline', array(
'default' => 'Off',
'transport' => 'refresh',
'sanitize_callback' => 'big_bob_checkMediaFit',
));
$wp_customize->add_control('big_bob_center_nav_with_tagline', array(
'label' => __('Add Tagline When Title is in Navbar', 'big-patterns'),
'section' => 'big_bob_navigation',
'settings' => 'big_bob_center_nav_with_tagline',
'type' => 'radio',
'choices' => array(
'On' => __('On', 'big-patterns'),
'Off' => __('Off', 'big-patterns'),
),
'priority' => 90,
'description' => __("This will set the tagline in the under the title if the title is set into the
navbar.", 'big-patterns'),
));
$wp_customize->selective_refresh->add_partial( 'big_bob_center_nav_with_tagline', array(
'render_callback' => 'big_bob_set_nav',
) );
function big_bob_checkMenuSize($input) {
$valid = array(
'Small' => 'Small',
'Medium' => 'Medium',
'Large' => 'Large',
);
if (array_key_exists($input, $valid)) {
return $input;
} else {
return '';
}
}
function big_bob_checkMediaFit_Att($input) {
$valid = array(
'On' => 'On',
'Remove Attribution Only' => 'Remove Attribution Only',
'Off' => 'Off',
);
if (array_key_exists($input, $valid)) {
return $input;
} else {
return '';
}
}
function big_bob_checkMediaFeatured($input) {
$valid = array(
'On' => 'On',
'Featured Images Only' => 'Featured Images Only',
'Off' => 'Off',
);
if (array_key_exists($input, $valid)) {
return $input;
} else {
return '';
}
}
function big_bob_checkMediaFit($input) {
$valid = array(
'On' => 'On',
'Off' => 'Off',
);
if (array_key_exists($input, $valid)) {
return $input;
} else {
return '';
}
}
function big_bob_checkMediaFit_Big_Small($input) {
$valid = array(
'Big' => 'Big',
'Small' => 'Small',
'Logo Below Nav' => 'Logo Below Nav',
'Big Tagline Only' => 'Big Tagline Only',
'Small Tagline Only' => 'Small Tagline Only',
'Off' => 'Off',
);
if (array_key_exists($input, $valid)) {
return $input;
} else {
return '';
}
}
function big_bob_checkMediaFit_home($input) {
$valid = array(
'Home Only' => 'Home Only',
'Except Home' => 'Except Home',
'Off' => 'Off',
);
if (array_key_exists($input, $valid)) {
return $input;
} else {
return '';
}
}
}
add_action( 'customize_register', 'big_bob_customize_register' );
/**
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
*/
function big_bob_customize_preview_js() {
wp_enqueue_script( 'big-bob-customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20151215', true );
}
add_action( 'customize_preview_init', 'big_bob_customize_preview_js' );
add_action('wp_head', 'big_bob_customizer_css');
function big_bob_customizer_css()
{
$bb_link = get_theme_mod('big_bob_link_color', '#eeee22');
$bb_link = str_replace("#", "", $bb_link);
$bb_link_hover = get_theme_mod('big_bob_link_hover_color', '#1e73be');
$bb_link_hover = str_replace("#", "", $bb_link_hover);
?>
<style type="text/css">
a, a:focus, a:active, a:visited {
color: #<?php echo esc_attr($bb_link); ?>;
}
#bb-back-to-top {
color: #<?php echo esc_attr($bb_link); ?> !important;
}
.nav-menu li a:hover, .site-title a:hover, .bb-site-title a:hover, a:hover {
color: #<?php echo esc_attr($bb_link_hover); ?> !important;
}
</style>
<?php
}
add_action('wp_head', 'big_bob_round_out_corners');
function big_bob_round_out_corners() {
if (get_theme_mod('big_bob_rounded_corners', "On") == "On") {
?>
<style type="text/css">
.wp-block-media-text,
.wp-block-media-text__media,
.wp-block-group,
.wp-block-media-text img,
.wp-block-columns .wp-block-image img,
.wp-block-image:not(.is-style-rounded) img,
.wp-block-image img,
.blocks-gallery-item img,
.gallery-icon img,
p img,
.wp-caption img,
.wp-block-column,
.wp-block-cover,
.wp-block-cover img,
.wp-block-video,
.wp-block-video video,
.wp-block-media-text__media,
.wp-block-media-text__media video,
.wp-block-cover__background,
.wp-block-cover__gradient-background {
border-radius: 25px;
}
.bb-cover-with-images img {
border-radius: 25px !important;
}
.wp-block-cover__background,
.wp-block-cover__video-background,
.wp-block-cover__image-background {
border-radius: 20px;
}
@media screen and (max-width: 1064px) {
#bb-popout {
border-radius: 5px;
}
}
.main-navigation,
.site-footer,
.page .entry-content.bb-aligncenterstyle,
.page .entry-header.bb-aligncenterstyle,
.page .bb-aligncenterstyle.bb-wide-footer,
.page .comments-area.bb-aligncenterstyle {
border-radius: 15px;
}
.bb-aligncenterstyle,
.bb-alignleftstyle,
.bb-alignrightstyle,
.bb-back-to-top,
#bb-scroll-down,
.bb-page-or-post-title,
.home .site-branding,
.posts-navigation, .post-navigation, .pagination {
border-radius: 5px;
}
</style>
<?php
}
}
add_action('wp_head', 'big_bob_underline_menu');
function big_bob_underline_menu() {
if (get_theme_mod('big_bob_underline_menu', "On") == "Off") {
?>
<style type="text/css">
.nav-menu .current_page_item,
.nav-menu .current-menu-item {
text-decoration: none;
}
</style>
<?php
}
}
//big_bob_set_nav
add_action('wp_head', 'big_bob_set_nav');
function big_bob_set_nav() {
if (get_theme_mod('big_bob_center_nav', "On") == "On") {
?>
<style type="text/css">
@media screen and (min-width: 1065px) {
#site-navigation ul {
transition: 1200ms ease;
margin: 0px;
margin-bottom: 10px;
}
#site-navigation.scrolled ul {
transition: 1200ms ease;
}
.custom-logo-link,
.bb-site-title-top {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
margin-bottom: 10px !important;
margin-top: 10px!important;
padding-right: 0px
}
.bb-site-title-top {
font-size: 45px !important;
}
.bb-site-description-top {
display: none;
}
.main-navigation ul{
justify-content: center;
}
.nav-menu, .custom-logo-link {
float: none;
padding: 0px !important;
}
<?php
if ((has_custom_logo() && (get_theme_mod( 'big_bob_title_below_nav', 'Off' ) != 'Logo Below Nav')) || (display_header_text() && (get_theme_mod( 'big_bob_title_below_nav', 'Off' ) == 'Off'))) {
?>
@media screen and (min-width: 1065px) {
#site-navigation.scrolled {
top: -80px;
}
}
<?php
if (get_theme_mod( 'big_bob_borders', 'On' ) == 'On') {
?>
@media screen and (min-width: 1065px) {
#site-navigation.scrolled {
top: -87px;
}
}
<?php
}
} else {
?>
#site-navigation {
padding-top: 10px;
}
<?php
}
?>
}
</style>
<?php
if ((get_theme_mod('big_bob_menu_size', "Medium") == "Medium") || (get_theme_mod('big_bob_menu_size', "Medium") == "Large")) {
?>
<style type="text/css">
@media screen and (min-width: 1065px) {
#site-navigation ul {
font-size: 23px;
}
#site-navigation.scrolled ul {
font-size: 18px;
}
.no-results .bb-sideStick,
.search-results .bb-sideStick,
.error404 .bb-sideStick,
.search-no-results .bb-sideStick{
top: 150px;
}
}
</style>
<?php
if (get_theme_mod('big_bob_menu_size', "Medium") == "Large") {
?>
<style type="text/css">
@media screen and (min-width: 1065px) {
#site-navigation ul {
font-size: 30px;
}
}
</style>
<?php
}
if ( ( !(has_post_thumbnail() && (get_theme_mod( 'big_bob_highlight_feature_image', 'Featured Images Only' ) == 'Featured Images Only')) || (get_theme_mod( 'big_bob_highlight_feature_image', 'Featured Images Only' ) == 'Off')) && !is_front_page() && (is_page() || is_single()) ) {
?>
<style type="text/css">
@media screen and (min-width: 1065px) {
.page .bb-sideStick,
.single .bb-sideStick{
top: 150px;
}
}
</style>
<?php
}
}
//Add the tagline back
$big_bob_description = get_bloginfo( 'description', 'display' );
if ((get_theme_mod( 'big_bob_center_nav_with_tagline', 'Off' ) == 'On') && !has_custom_logo() && $big_bob_description) {
?>
<style type="text/css">
@media screen and (min-width: 1065px) {
.bb-site-title-top {
font-size: 30px !important;
margin-top: 0px !important;
margin-bottom: 5px !important;
}
.bb-site-description-top {
font-size: 15px !important;
display: block;
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
padding-right: 0px;
}
}
</style>
<?php
big_bob_change_fonts_title();
}
} else {//not centered
?>
<style type="text/css">
@media screen and (min-width: 1065px) {
#site-navigation ul {
margin-bottom: 0px;
transition: 1200ms ease;
}
#site-navigation.scrolled ul {
transition: 1200ms ease;
}
#site-navigation.scrolled .custom-logo-link {
padding-top: 10px;
padding-bottom: 10px;
transition: 1200ms ease;
}
#site-navigation .custom-logo-link {
padding-top: 25px;
padding-bottom: 25px;
transition: 1200ms ease;
}
}
</style>
<?php
if (get_theme_mod('big_bob_menu_size', "Medium") == "Small") {
$big_bob_description = get_bloginfo( 'description', 'display' );
if ($big_bob_description && !has_custom_logo()) {
?>
<style type="text/css">
@media screen and (min-width: 1065px) {
#site-navigation.scrolled ul {
margin-top: -15px !important;
}
#site-navigation.scrolled ul ul {
margin-top: 0px !important;
}
}
</style>
<?php
} else {
?>
<style type="text/css">
@media screen and (min-width: 1065px) {
#site-navigation.scrolled ul {
margin-top: -12px !important;
}
#site-navigation.scrolled ul ul {
margin-top: 0px !important;
}
}
</style>
<?php
}
} else if (get_theme_mod('big_bob_menu_size', "Medium") == "Medium") {
?>
<style type="text/css">
@media screen and (min-width: 1065px) {
#site-navigation ul {
margin-top: -4px !important;
font-size: 23px;
}
#site-navigation.scrolled ul {
font-size: 18px;
}
#site-navigation.scrolled ul ul {
margin-top: 0px !important;
}
}
</style>
<?php
$big_bob_description = get_bloginfo( 'description', 'display' );
if ($big_bob_description && !has_custom_logo()) {
?>
<style type="text/css">
@media screen and (min-width: 1065px) {
#site-navigation.scrolled ul {
margin-top: -18px !important;
}
#site-navigation.scrolled ul ul {
margin-top: 0px !important;
}
}
</style>
<?php
} else {
?>
<style type="text/css">
@media screen and (min-width: 1065px) {
#site-navigation.scrolled ul {
margin-top: -15px !important;
}
#site-navigation.scrolled ul ul {
margin-top: 0px !important;
}
}
</style>
<?php
}
} else if (get_theme_mod('big_bob_menu_size', "Medium") == "Large") {
?>
<style type="text/css">
@media screen and (min-width: 1065px) {
#site-navigation ul {
margin-top: -7px !important;
font-size: 30px;
}
#site-navigation.scrolled ul {
font-size: 18px;
}
#site-navigation.scrolled ul ul {
margin-top: 0px !important;
}
}
</style>
<?php
$big_bob_description = get_bloginfo( 'description', 'display' );
if ($big_bob_description && !has_custom_logo()) {
?>
<style type="text/css">
@media screen and (min-width: 1065px) {
#site-navigation.scrolled ul {
margin-top: -18px !important;
}
#site-navigation.scrolled ul ul {
margin-top: 0px !important;
}
}
</style>
<?php
} else {
?>
<style type="text/css">
@media screen and (min-width: 1065px) {
#site-navigation.scrolled ul {
margin-top: -15px !important;
}
#site-navigation.scrolled ul ul {
margin-top: 0px !important;
}
}
</style>
<?php
}
}
}
if (get_theme_mod('big_bob_menu_spacing', "Large") == "Small") {
if (get_theme_mod('big_bob_center_nav', "On") == "On") {
?>
<style type="text/css">
.main-navigation li {
margin-left: 5px;
margin-right: 5px;
}
</style>
<?php
} else {
?>
<style type="text/css">
.main-navigation li {
margin-left: 10px;
}
</style>
<?php
}
} else if (get_theme_mod('big_bob_menu_spacing', "Large") == "Medium") {
if (get_theme_mod('big_bob_center_nav', "On") == "On") {
?>
<style type="text/css">
.main-navigation li {
margin-left: 9px;
margin-right: 9px;
}
</style>
<?php
} else {
?>
<style type="text/css">
.main-navigation li {
margin-left: 18px;
}
</style>
<?php
}
} else {
if (get_theme_mod('big_bob_center_nav', "On") == "On") {
?>
<style type="text/css">
.main-navigation li {
margin-left: 18px;
margin-right: 18px;
}
</style>
<?php
} else {
?>
<style type="text/css">
.main-navigation li {
margin-left: 25px;
}
</style>
<?php
}
}
}
add_action('wp_head', 'big_bob_show_footer_on');
function big_bob_show_footer_on() {
if (get_theme_mod('big_bob_show_footer', "On") == "Off") {
?>
<style type="text/css">
.site-footer {
display: none;
}
</style>
<?php
} else if (get_theme_mod('big_bob_show_footer', "On") == "Remove Attribution Only") {
?>
<style type="text/css">
.site-info {
display: none;
}
</style>
<?php
}
}
add_action('wp_head', 'big_bob_is_image_over_video');
function big_bob_is_image_over_video() {
if (get_theme_mod('big_bob_image_over_video', 'Off') == "Off") {?>
<style type="text/css">
#bb-back-image, #bb-back-image img {
z-index: -1000;
}
</style>
<?php
}
}
add_action('wp_head', 'big_bob_change_fonts_title');
function big_bob_change_fonts_title() {
if (get_theme_mod('big_bob_fonts_title', 'IBM Plex Mono') != "") {
$big_bob_url = get_theme_mod('big_bob_fonts_title', 'IBM Plex Mono'); ?>
<style type="text/css">
h1, h2, h3, h4, h5, h6, .site-description, .bb-site-description-top {
font-family: "<?php echo esc_html($big_bob_url); ?>", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
</style>
<?php
}
}
add_action('wp_head', 'big_bob_change_fonts_main_title');
function big_bob_change_fonts_main_title() {
if (get_theme_mod('big_bob_fonts_main_title', 'Syncopate') != "") {
$big_bob_url = get_theme_mod('big_bob_fonts_main_title', 'Syncopate'); ?>
<style type="text/css">
.site-title, .bb-site-title-top,
.bb-forest-cover h1,
.bb-forest-cover h2,
.bb-forest-cover h3 {
font-family: "<?php echo esc_html($big_bob_url); ?>", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif !important;
}
</style>
<?php
}
}
add_action('wp_head', 'big_bob_change_fonts_paragraph');
function big_bob_change_fonts_paragraph() {
if (get_theme_mod('big_bob_fonts_paragraph', "IBM Plex Mono") != "") {
$big_bob_url = get_theme_mod('big_bob_fonts_paragraph', "IBM Plex Mono"); ?>
<style type="text/css">
p, pre, textarea, .comment-author, .entry-content li, .wp-block-latest-posts,
.entry-meta,
.entry-footer,
.nav-links,
.comment-metadata,
.reply,
.bb-sideStick li,
#bb-sideSlide li {
font-family: "<?php echo esc_html($big_bob_url); ?>", 'Times New Roman', Times, serif;
}
</style>
<?php
}
}
add_action('wp_head', 'big_bob_change_fonts_misc');
function big_bob_change_fonts_misc() {
if (get_theme_mod('big_bob_fonts_misc', 'Syncopate') != "") {
$big_bob_url = get_theme_mod('big_bob_fonts_misc', 'Syncopate'); ?>
<style type="text/css">
body,
input,
select,
optgroup,
#bb-sidebar-menu li {
font-family: "<?php echo esc_html($big_bob_url); ?>", Arial, Helvetica, sans-serif;
}
</style>
<?php
}
}
add_action('wp_head', 'big_bob_add_bright');
function big_bob_add_bright() {
$TCNF = get_theme_mod('big_bob_text_color_NF', '#000000');
$FLHCNF = get_theme_mod('big_bob_link_hover_color_NF', '#ffffff');
$FLCNF = get_theme_mod('big_bob_link_color_NF', '#000000');
$FCNF = get_theme_mod('big_bob_foreground_color_NF', '#eeee22');
$TCNF = str_replace("#", "", $TCNF);
$FCNF = str_replace("#", "", $FCNF);
$FLCNF = str_replace("#", "", $FLCNF);
$FLHCNF = str_replace("#", "", $FLHCNF);
$ThirdPartNF = substr($FCNF, 4);
$SecondPartNF = substr($FCNF, 2, 2);
$FirstPartNF = substr($FCNF, 0, 2);
$ThirdHexNF = hexdec($ThirdPartNF);
$SecondHexNF = hexdec($SecondPartNF);
$FirstHexNF = hexdec($FirstPartNF);
$FC = get_theme_mod('big_bob_foreground_color', '#000000');
$FC = str_replace("#", "", $FC);
$ThirdPart = substr($FC, 4);
$SecondPart = substr($FC, 2, 2);
$FirstPart = substr($FC, 0, 2);
$ThirdHex = hexdec($ThirdPart);
$SecondHex = hexdec($SecondPart);
$FirstHex = hexdec($FirstPart);
$OC = get_theme_mod('big_bob_range_home_nav_ti', '10');
$OC = $OC/10;
$OCRest = get_theme_mod('big_bob_range_nav_ti', '10');
$OCRest = $OCRest/10;
$OCBody = get_theme_mod('big_bob_range_sb', '10');
$OCBody = $OCBody/10;
$OCSN = get_theme_mod('big_bob_range_sn', '10');
$OCSN = $OCSN/10;
$BBTC = get_theme_mod('big_bob_text_color', '#ffffff');
$BBTC = str_replace("#", "", $BBTC);
$BBBC = get_theme_mod('big_bob_background_color', '#000000');
$BBBC = str_replace("#", "", $BBBC);
?>
<style type="text/css">
body {
background: #<?php echo esc_attr($BBBC)?>;
}
.home .site-branding {
background:rgba(<?php echo esc_attr($FirstHex)?>, <?php echo esc_attr($SecondHex)?>, <?php echo esc_attr($ThirdHex)?>, <?php echo esc_attr($OC)?>);
}
.home .bb-scroll-down {
background: rgba(<?php echo esc_attr($FirstHex)?>, <?php echo esc_attr($SecondHex)?>, <?php echo esc_attr($ThirdHex)?>, <?php echo esc_attr($OC)?>);
}
.site-branding {
background:rgba(<?php echo esc_attr($FirstHex)?>, <?php echo esc_attr($SecondHex)?>, <?php echo esc_attr($ThirdHex)?>, <?php echo esc_attr($OCRest)?>);
}
.bb-scroll-down {
background: rgba(<?php echo esc_attr($FirstHex)?>, <?php echo esc_attr($SecondHex)?>, <?php echo esc_attr($ThirdHex)?>, <?php echo esc_attr($OCRest)?>);
}
.bb-back-to-top {
background: rgba(<?php echo esc_attr($FirstHex)?>, <?php echo esc_attr($SecondHex)?>, <?php echo esc_attr($ThirdHex)?>, <?php echo esc_attr($OCBody)?>);
}
<?php
if (get_theme_mod('big_bob_borders', 'On') == "On") {
?>
.bb-aligncenterstyle,
.bb-alignleftstyle,
.bb-alignrightstyle,
.bb-back-to-top,
#bb-scroll-down,
.bb-page-or-post-title,
.home .site-branding,
.posts-navigation, .post-navigation, .pagination {
border: 5px solid #<?php echo esc_attr($BBTC)?>;
}
.paged .site-branding {
border: none;
}
.main-navigation,
.site-footer {
border: 6px solid #<?php echo esc_attr($TCNF)?>;
}
@media screen and (min-width: 1065px) {
.main-navigation ul ul {
border: 6px solid #<?php echo esc_attr($TCNF)?>;
}
}
<?php
if ((get_theme_mod( 'big_bob_title_below_nav', 'Off' ) != 'Off') || !display_header_text()) {
?>
@media screen and (max-width: 1064px) {
.main-navigation {
top: -15px;
}
}
<?php
}
?>
@media screen and (max-width: 1064px) {
#bb-popout {
border: 6px solid #<?php echo esc_attr($TCNF)?>;
}
}
.bb-cover-with-images,
.bb-cover-with-images img,
.bb-body-colors,
.bb-positive-growth,
.bb-slanted-button,
.bb-body-colors img,
.bb-nav-colors,
.bb-forest-cover,
.bb-angled-overlay,
.bb-four-images-text,
.bb-simple-call-to-action,
img,
video,
.wp-block-cover {
border: solid;
color: #<?php echo esc_attr($BBTC)?>
}
#bb-back-image img,
#bb-feature-image img,
.wp-custom-header img,
.wp-custom-header video,
.bb-backVid video,
.comment-author img,
.wp-block-jetpack-slideshow_image {
border: none !important;
}
.custom-logo {
border: none;
}
.bb-nav-colors img,
.bb-nav-colors .wp-block-image img {
border: solid;
color: #<?php echo esc_attr($TCNF)?>;
}
#bb-menu-icon,
#bb-close-icon {
border: none;
}
<?php
} else {
?>
.main-navigation,
.site-footer,
.bb-aligncenterstyle,
.bb-alignleftstyle,
.bb-alignrightstyle,
.bb-back-to-top,
#bb-scroll-down,
.posts-navigation, .post-navigation, .pagination {
border: none;
}
<?php
}
?>
.site-description {
color: #<?php echo esc_attr($BBTC)?>;
}
.home #site-navigation {
background:rgba(<?php echo esc_attr($FirstHexNF)?>, <?php echo esc_attr($SecondHexNF)?>, <?php echo esc_attr($ThirdHexNF)?>, <?php echo esc_attr($OC)?>) !important;
}
.main-navigation ul ul,
#site-navigation {
background:rgba(<?php echo esc_attr($FirstHexNF)?>, <?php echo esc_attr($SecondHexNF)?>, <?php echo esc_attr($ThirdHexNF)?>, <?php echo esc_attr($OCRest)?>) !important;
}
#site-navigation.scrolled {
transition: 1200ms ease;
background: rgba(<?php echo esc_attr($FirstHexNF)?>, <?php echo esc_attr($SecondHexNF)?>, <?php echo esc_attr($ThirdHexNF)?>, <?php echo esc_attr($OCSN)?>) !important;
}
.site-footer.bb-aligncenterstyle {
background:rgba(<?php echo esc_attr($FirstHexNF)?>, <?php echo esc_attr($SecondHexNF)?>, <?php echo esc_attr($ThirdHexNF)?>, <?php echo esc_attr($OCRest)?>) !important;
}
.bb-nav-colors {
background: #<?php echo esc_attr($FCNF)?>;
}
.bb-slanted-button {
background: linear-gradient(150deg,#<?php echo esc_attr($FCNF)?> 0%,#<?php echo esc_attr($FCNF)?> 25%,#<?php echo esc_attr($FC)?> 25%,#<?php echo esc_attr($FC)?> 75%,#<?php echo esc_attr($FCNF)?> 75%,#<?php echo esc_attr($FCNF)?> 100%) !important;
}
.bb-angled-overlay .wp-block-cover__background {
background: linear-gradient(135deg,#<?php echo esc_attr($FCNF)?> 0%, #<?php echo esc_attr($FCNF)?> 50%,rgba(155,82,224,0) 50%,rgba(155,82,224,0) 100%) !important;
}
@media screen and (max-width: 600px) {
.bb-angled-overlay .wp-block-cover__background {
background: linear-gradient(180deg,#<?php echo esc_attr($FCNF)?> 0%, #<?php echo esc_attr($FCNF)?> 50%,rgba(155,82,224,0) 50%,rgba(155,82,224,0) 100%) !important;
}
}
.bb-two-image-nav-strip {
background: linear-gradient(180deg,rgba(255,251,15,0) 0%,rgba(255,251,15,0) 25%,#<?php echo esc_attr($FCNF)?> 25%,#<?php echo esc_attr($FCNF)?> 75%,rgba(255,251,15,0) 75%,rgba(255,251,15,0) 100%) !important;
}
p, pre {
color: #<?php echo esc_attr($BBTC)?>;
}
.bb-slanted-button p, .bb-slanted-button pre {
color: #<?php echo esc_attr($BBTC)?> !important;
}
figcaption,
.bb-alignleftstyle,
.bb-alignrightstyle,
.bb-aligncenterstyle,
.posts-navigation, .post-navigation, .pagination {
background: rgba(<?php echo esc_attr($FirstHex)?>, <?php echo esc_attr($SecondHex)?>, <?php echo esc_attr($ThirdHex)?>, <?php echo esc_attr($OCBody)?>);
}
@media screen and (max-width: 1064px) {
#bb-popout {
color: #<?php echo esc_attr($TCNF)?>;
background: rgba(<?php echo esc_attr($FirstHexNF)?>, <?php echo esc_attr($SecondHexNF)?>, <?php echo esc_attr($ThirdHexNF)?>, <?php echo esc_attr($OCSN)?>);
}
.nav-menu li {
border-bottom: 1px solid #<?php echo esc_attr($TCNF)?>;
}
}
@media screen and (max-width: 750px) {
.bb-side-menu li {
border-bottom: 1px solid #<?php echo esc_attr($TCNF)?>;
}
}
body, h1, h2, h3, h4, h5, h6, .entry-meta span, .menu li::marker, address, legend, .cat-links, hr, time, figcaption,
.woocommerce bdi {
color: #<?php echo esc_attr($BBTC)?>;
}
.bb-slanted-button h1, .bb-slanted-button h2, .bb-slanted-button h3, .bb-slanted-button h4, .bb-slanted-button h5,
.bb-slanted-button h6, .bb-slanted-button .entry-meta span, .bb-slanted-button .menu li::marker, .bb-slanted-button address,
.bb-slanted-button legend, .bb-slanted-button .cat-links, .bb-slanted-button hr, .bb-slanted-button time,
.bb-slanted-button figcaption {
color: #<?php echo esc_attr($BBTC)?> !important;
}
#bb-preloader {
background: #<?php echo esc_attr($FC)?>;
color: #<?php echo esc_attr($BBTC)?>;
}
#bb-preloader h1,
#bb-preloader h2 {
color: #<?php echo esc_attr($BBTC)?>;
}
#bb-preloader:before {
border: 6px solid #<?php echo esc_attr($FC)?>;
border-top: 6px solid #<?php echo esc_attr($BBTC)?>;
}
.widget_search .search-form .search-submit, .form-submit .submit, .widget_search .search-form #submit,
.error-404 .search-submit,
.no-results .search-submit,
.wp-block-search .wp-block-search__button {
border: 1px solid #<?php echo esc_attr($BBTC)?>;
background-color: transparent;
color: #<?php echo esc_attr($BBTC)?>;
}
.bb-slanted-button .widget_search .bb-slanted-button .search-form .bb-slanted-button .search-submit,
.bb-slanted-button .form-submit .submit, .bb-slanted-button .widget_search .search-form #submit,
.bb-slanted-button .error-404 .search-submit,
.bb-slanted-button .no-results .search-submit,
.bb-slanted-button .wp-block-search .wp-block-search__button,
.bb-slanted-button .wp-block-button__link {
border: 1px solid #<?php echo esc_attr($BBTC)?> !important;
color: #<?php echo esc_attr($BBTC)?> !important;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
border: 1px solid #<?php echo esc_attr($BBTC)?>;
}
a,
.bb-slanted-button a {
-webkit-text-decoration-color: #<?php echo esc_attr($BBTC)?> !important; /* Safari */
text-decoration-color: #<?php echo esc_attr($BBTC)?> !important;
}
.main-navigation a,
.bb-nav-colors a {
-webkit-text-decoration-color: #<?php echo esc_attr($TCNF)?> !important;
text-decoration-color: #<?php echo esc_attr($TCNF)?> !important;
}
.nav-menu a,
.site-footer a,
.bb-nav-colors a {
color: #<?php echo esc_attr($FLCNF)?>;
}
.site-footer {
color: #<?php echo esc_attr($TCNF)?>;
}
.nav-menu .current_page_item,
.nav-menu .current-menu-item {
text-decoration-color: #<?php echo esc_attr($TCNF)?>;
}
.bb-site-title-top a:hover,
.site-title a:hover,
.nav-menu li a:hover,
.site-footer a:hover,
.bb-nav-colors a:hover {
color: #<?php echo esc_attr($FLHCNF)?> !important;
}
.site-footer p,
.site-footer pre,
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6,
.site-footer .entry-meta span,
.site-footer .menu li::marker,
.site-footer address,
.site-footer legend,
.site-footer .cat-links,
.site-footer hr,
.site-footer time,
.site-footer figcaption,
#bb-popout p,
#bb-popout pre,
#bb-popout h1,
#bb-popout h2,
#bb-popout h3,
#bb-popout h4,
#bb-popout h5,
#bb-popout h6,
#bb-popout .entry-meta span,
#bb-popout .menu li::marker,
#bb-popout address,
#bb-popout legend,
#bb-popout .cat-links,
#bb-popout hr,
#bb-popout time,
#bb-popout figcaption,
.bb-nav-colors p,
.bb-nav-colors pre,
.bb-nav-colors h1,
.bb-nav-colors h2,
.bb-nav-colors h3,
.bb-nav-colors h4,
.bb-nav-colors h5,
.bb-nav-colors h6,
.bb-angled-overlay p,
.bb-angled-overlay pre,
.bb-angled-overlay h1,
.bb-angled-overlay h2,
.bb-angled-overlay h3,
.bb-angled-overlay h4,
.bb-angled-overlay h5,
.bb-angled-overlay h6,
.bb-site-description-top {
color: #<?php echo esc_attr($TCNF)?> !important;
}
.site-footer .widget_search .search-form .search-submit,
.site-footer .form-submit .submit,
.site-footer .widget_search .search-form #submit,
.site-footer .error-404 .search-submit,
.site-footer .no-results .search-submit,
.site-footer .wp-block-search .wp-block-search__button,
.bb-nav-colors .widget_search .search-form .search-submit,
.bb-nav-colors .form-submit .submit,
.bb-nav-colors .widget_search .search-form #submit,
.bb-nav-colors .error-404 .search-submit,
.bb-nav-colors .no-results .search-submit,
.bb-nav-colors .wp-block-search .wp-block-search__button,
#bb-popout .widget_search .search-form .search-submit,
#bb-popout .form-submit .submit,
#bb-popout .widget_search .search-form #submit,
#bb-popout .error-404 .search-submit,
#bb-popout .no-results .search-submit,
#bb-popout .wp-block-search .wp-block-search__button{
border: 1px solid #<?php echo esc_attr($TCNF)?>;
color: #<?php echo esc_attr($TCNF)?>;
}
.site-footer input[type="text"],
.site-footer input[type="email"],
.site-footer input[type="url"],
.site-footer input[type="password"],
.site-footer input[type="search"],
.site-footer input[type="number"],
.site-footer input[type="tel"],
.site-footer input[type="range"],
.site-footer input[type="date"],
.site-footer input[type="month"],
.site-footer input[type="week"],
.site-footer input[type="time"],
.site-footer input[type="datetime"],
.site-footer input[type="datetime-local"],
.site-footer input[type="color"],
.site-footer textarea,
.bb-nav-colors input[type="text"],
.bb-nav-colors input[type="email"],
.bb-nav-colors input[type="url"],
.bb-nav-colors input[type="password"],
.bb-nav-colors input[type="search"],
.bb-nav-colors input[type="number"],
.bb-nav-colors input[type="tel"],
.bb-nav-colors input[type="range"],
.bb-nav-colors input[type="date"],
.bb-nav-colors input[type="month"],
.bb-nav-colors input[type="week"],
.bb-nav-colors input[type="time"],
.bb-nav-colors input[type="datetime"],
.bb-nav-colors input[type="datetime-local"],
.bb-nav-colors input[type="color"],
.bb-nav-colors textarea,
#bb-popout input[type="text"],
#bb-popout input[type="email"],
#bb-popout input[type="url"],
#bb-popout input[type="password"],
#bb-popout input[type="search"],
#bb-popout input[type="number"],
#bb-popout input[type="tel"],
#bb-popout input[type="range"],
#bb-popout input[type="date"],
#bb-popout input[type="month"],
#bb-popout input[type="week"],
#bb-popout input[type="time"],
#bb-popout input[type="datetime"],
#bb-popout input[type="datetime-local"],
#bb-popout input[type="color"],
#bb-popout textarea {
border: 1px solid #<?php echo esc_attr($TCNF)?>;
}
#bb-popout a,
#bb-popout a:focus,
#bb-popout a:active,
#bb-popout a:visited {
color: #<?php echo esc_attr($FLCNF)?>;
}
#bb-popout a:hover {
color: #<?php echo esc_attr($FLHCNF)?> !important;
}
</style>
<?php
}
add_action('wp_head', 'big_bob_add_shadow');
function big_bob_add_shadow() {
if( get_theme_mod( 'big_bob_background_shadow', 'On' ) == 'On' ) {
?>
<style type="text/css">
.bb-site-title-top {
text-shadow: 0rem 0.8rem 0.8rem rgba(0, 0, 0, 1);
transition: 1200ms ease;
}
.bb-alignleftstyle,
.bb-alignrightstyle,
.bb-aligncenterstyle,
.posts-navigation, .post-navigation, .pagination,
.site-branding,
.bb-scroll-down,
#bb-toggle,
.bb-back-to-top,
#site-navigation,
#site-navigation.scrolled
{
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.8);
}
</style>
<?php
}
if (get_theme_mod('big_bob_title_shadow', 'Off') == 'Off') {
?>
<style type="text/css">
.bb-site-title-top {
text-shadow: none !important;
}
</style>
<?php
}
}
add_action('wp_head', 'big_bob_turn_on_highlighted_featured_image');
function big_bob_turn_on_highlighted_featured_image() {
if( ( (has_post_thumbnail() && (get_theme_mod( 'big_bob_highlight_feature_image', 'Featured Images Only' ) == 'Featured Images Only')) || (get_theme_mod( 'big_bob_highlight_feature_image', 'Featured Images Only' ) == 'On')) ) {
if (is_page() && !is_front_page()) {
?>
<style type="text/css">
.entry-header {
display: none;
}
</style>
<?php
} else if (is_single()) {
?>
<style type="text/css">
.entry-title {
display: none;
}
</style>
<?php
}
if (!is_front_page() && is_page() || is_single()) {
?>
<style type="text/css">
.site-title {
display: none;
}
.site-branding {
position: absolute;
right: 60vw;
text-align: left;
width: 30%;
bottom: 25vh;
margin-bottom: auto;
}
.bb-page-or-post-title {
font-size: 35px;
font-weight: bold;
margin: auto;
padding: 0px;
}
@media screen and (min-width: 1250px) {
.site-branding {
width: 28%;
}
}
@media screen and (max-width: 1050px) {
.site-branding {
width: 33%;
right: 50vw;
}
}
@media screen and (max-width: 900px) {
.site-branding {
width: 38%;
}
}
@media screen and (max-width: 800px) {
.bb-page-or-post-title {
font-size: 30px;
}
}
@media screen and (max-width: 750px) {
.site-branding {
right: 0vw;
text-align: center;
width: 92%;
bottom: 45vh;
}
}
@media screen and (max-width: 600px) {
.bb-page-or-post-title {
font-size: 25px;
}
}
@media screen and (max-height: 600px){
.site-branding {
bottom: 25vh;
}
}
@media screen and (max-height: 450px) {
.site-branding {
right: 0vw;
text-align: center;
width: 52%;
}
}
</style>
<?php
}
} else if ( ( (!has_post_thumbnail() && (get_theme_mod( 'big_bob_highlight_feature_image', 'Featured Images Only' ) == 'Featured Images Only')) || (get_theme_mod( 'big_bob_highlight_feature_image', 'Featured Images Only' ) == 'On'))
&& !is_front_page()) {
?>
<style type="text/css">
.site-branding {
opacity: 0;
}
</style>
<?php
}
}
add_action('wp_head', 'big_bob_turn_on_wide_when_centered');
function big_bob_turn_on_wide_when_centered() {
if (get_theme_mod('big_bob_wide_when_centered', 'Off') == 'On') {
?>
<style type="text/css">
/*begin wide*/
.page .entry-content.bb-aligncenterstyle {
width: 100%;
}
@media screen and (min-width: 1064px) {
.page .entry-content.bb-aligncenterstyle p,
.page .entry-content.bb-aligncenterstyle pre,
.page .entry-content.bb-aligncenterstyle ul,
.page .entry-content.bb-aligncenterstyle ol,
.page .entry-content.bb-aligncenterstyle dl,
.page .entry-content.bb-aligncenterstyle cite,
.page .entry-content.bb-aligncenterstyle address,
.page .entry-content.bb-aligncenterstyle h1,
.page .entry-content.bb-aligncenterstyle h2,
.page .entry-content.bb-aligncenterstyle h3,
.page .entry-content.bb-aligncenterstyle h4,
.page .entry-content.bb-aligncenterstyle h5,
.page .entry-content.bb-aligncenterstyle h6 {
width: 55%;
}
.page .entry-content.bb-aligncenterstyle code {
width: auto;
}
}
.page .bb-aligncenterstyle .blocks-gallery-grid {
max-width: 100%;
width: 100% !important;
}
.page .entry-header.bb-aligncenterstyle {
width: 100%;
}
.page .comments-area.bb-aligncenterstyle {
width: 100%;
}
.page .bb-aligncenterstyle.bb-wide-footer {
width: 100%;
max-width: 1800px;
margin-bottom: -25px;
}
/*end wide*/
</style>
<?php
if ( !( (get_theme_mod('big_bob_highlight_feature_image', 'Featured Images Only') == 'On')
|| ((get_theme_mod('big_bob_highlight_feature_image', 'Featured Images Only') == 'Featured Images Only')
&& has_post_thumbnail()) )
&& !( ((get_theme_mod('big_bob_page_titles', 'Featured Images Only') == 'Featured Images Only')
&& has_post_thumbnail()) )
&& ((((!(is_front_page() && has_custom_header()))
&& is_page()
&& (get_theme_mod( 'big_bob_title_below_nav', 'Off' ) == 'Off'))
|| (!is_front_page() && is_page() && !has_post_thumbnail()))
&& !( (is_active_sidebar( 'sidebar-3' ) || has_nav_menu('menu-4')) &&
(!is_page_template('page-no-sidebar.php') &&
((get_theme_mod( 'big_bob_blog_sidebar_only', 'Off' ) == 'Off')
|| ((get_theme_mod( 'big_bob_blog_sidebar_only', 'Off' ) == 'Home Only') && !is_front_page())
|| ((get_theme_mod( 'big_bob_blog_sidebar_only', 'Off' ) == 'Except Home') && is_front_page()) ) ) ) ) ){
?>
<style type="text/css">
#custom-header-markup,
.site-branding {
display: none;
}
.site-main {
margin-top: -23px;
}
</style>
<?php
//set the width from the top
$bb_FTLS = get_theme_mod('big_bob_range_wide_large_screen', '190');
$bb_FTT = get_theme_mod('big_bob_range_wide_tablet', '160');
$bb_FTP = get_theme_mod('big_bob_range_wide_phone', '180');
?>
<style type="text/css">
.bb-topPageSpace {
margin: <?php echo esc_attr($bb_FTLS)?>px;
}
@media screen and (max-width: 1064px) {
.bb-topPageSpace {
margin: <?php echo esc_attr($bb_FTT)?>px;
}
}
@media screen and (max-width: 600px) {
.bb-topPageSpace {
margin: <?php echo esc_attr($bb_FTP)?>px;
}
}
</style>
<?php
}
} else {
?>
<style type="text/css">
.page .bb-aligncenterstyle {
max-width: 1200px;
}
</style>
<?php
}
}
add_action('wp_head', 'big_bob_measure_tile_from_top');
function big_bob_measure_tile_from_top() {
$bb_TLS = get_theme_mod('big_bob_range_tile_large_screen', '170');
$bb_TT = get_theme_mod('big_bob_range_tile_tablet', '130');
$bb_TP = get_theme_mod('big_bob_range_tile_phone', '150');
?>
<style type="text/css">
.bb-top-padding {
margin: <?php echo esc_attr($bb_TLS)?>px;
}
@media screen and (max-width: 1064px) {
.bb-top-padding {
margin: <?php echo esc_attr($bb_TT)?>px;
}
}
@media screen and (max-width: 600px) {
.bb-top-padding {
margin: <?php echo esc_attr($bb_TP)?>px;
}
}
</style>
<?php
big_bob_turn_on_big_description();
}
add_action('wp_head', 'big_bob_turn_on_big_description');
function big_bob_turn_on_big_description() {
if( (get_theme_mod( 'big_bob_title_below_nav', 'Off' ) == 'Small Tagline Only' ) || (get_theme_mod( 'big_bob_title_below_nav', 'Off' ) == 'Big Tagline Only' )) {
?>
<style type="text/css">
.site-title {
display: none;
}
.site-branding {
right: 70vw;
text-align: left;
width: 20%;
}
.site-description {
font-size: 45px;
font-weight: bold;
}
@media screen and (min-width: 1250px) {
.site-branding {
width: 18%;
}
}
@media screen and (max-width: 1050px) {
.site-branding {
width: 23%;
right: 60vw;
}
}
@media screen and (max-width: 900px) {
.site-branding {
width: 28%;
}
}
@media screen and (max-width: 750px) {
.site-branding {
right: 0vw;
text-align: center;
width: 52%;
}
}
@media screen and (max-width: 600px) {
.site-branding {
width: 85%;
}
}
@media screen and (max-width: 500px) {
.site-description {
font-size: 42px;
}
}
@media screen and (max-height: 450px) {
.site-branding {
right: 0vw;
text-align: center;
width: 85%;
}
}
</style>
<?php
if( get_theme_mod( 'big_bob_title_below_nav', 'Off' ) == 'Small Tagline Only' ) {
?>
<style type="text/css">
.site-description {
font-size: 35px;
}
@media screen and (max-width: 500px) {
.site-description {
font-size: 32px;
}
}
</style>
<?php
}
}
if (get_theme_mod( 'big_bob_title_below_nav', 'Off' ) == 'Big') {
?>
<style type="text/css">
.site-title {
font-size: 50px;
}
@media screen and (max-width: 900px) {
.site-title {
font-size: 40px;
}
}
@media screen and (max-width: 750px) {
.site-title {
font-size: 30px;
text-align: center;
}
}
</style>
<?php
}
if (get_theme_mod( 'big_bob_title_below_nav', 'Off' ) == 'Off') {
?>
<style type="text/css">
.home .site-branding {
display: none;
}
.paged .site-branding {
display: block;
}
</style>
<?php
//If there is no header media, background media, or info below the navbar, then bring body up.
$bb_backImg = get_theme_mod('big_bob_background_image_media');
$bb_backVid = get_theme_mod('big_bob_background_video_media');
if ((is_front_page() && !is_paged() && !has_custom_header()
&& !wp_get_attachment_url($bb_backVid) && !wp_get_attachment_url($bb_backImg))
|| ((get_theme_mod( 'big_bob_background_header_space', 'Off' ) == 'Off')
&& is_front_page() && !is_paged() && !has_custom_header()
&& (wp_get_attachment_url($bb_backVid) || wp_get_attachment_url($bb_backImg))) ) {
?>
<style type="text/css">
/*$OCBody = get_theme_mod('big_bob_range_sb', '9');*/
<?php //echo esc_attr($OCBody)?>
<?php
$bb_TLS = get_theme_mod('big_bob_range_tile_large_screen', '170');
$bb_TT = get_theme_mod('big_bob_range_tile_tablet', '130');
$bb_TP = get_theme_mod('big_bob_range_tile_phone', '150');
?>
.home .wp-custom-header {
min-height: 0;
max-height: 0;
height: 0;
}
.home .wp-custom-header {
margin: <?php echo esc_attr($bb_TLS)?>px;
}
@media screen and (max-width: 1064px) {
.home .wp-custom-header {
margin: <?php echo esc_attr($bb_TT)?>px;
}
}
@media screen and (max-width: 600px) {
.home .wp-custom-header {
margin: <?php echo esc_attr($bb_TP)?>px;
}
}
.home .bb-top-padding {
margin: 0px;
}
.home #bb-scroll-down {
display: none !important;
}
</style>
<?php
}
}
big_bob_turn_on_highlighted_featured_image();//overrides if necessary.
}
add_action('wp_head', 'big_bob_sidebar_is_sticky');
function big_bob_sidebar_is_sticky() {
if( get_theme_mod( 'big_bob_sticky_sidebar', 'On' ) == 'Off' ) {
?>
<style type="text/css">
.bb-sideStick {
position: static;
top: auto;
right: auto;
}
@media screen and (min-width: 750px) {
#secondary, #bb-secondSide {
max-height: none;
}
}
@media screen and (min-height: 1000px) {
#secondary, #bb-secondSide {
max-height: none;
}
}
</style>
<?php
} else {
?>
<style type="text/css">
.bb-sideStick {
position: sticky;
top: 130px;
right: 0;
overflow: auto;
overflow-x: hidden;
}
@media screen and (max-width: 1300px) {
.site-footer.bb-room-for-sidebar.bb-aligncenterstyle {
max-width: 400px;
}
}
@media screen and (max-width: 1000px) {
.site-footer.bb-room-for-sidebar.bb-aligncenterstyle {
max-width: 300px;
}
}
@media screen and (max-width: 750px) {
.site-footer.bb-room-for-sidebar.bb-aligncenterstyle {
max-width: 95%;
}
}
@media screen and (min-width: 750px) {
#secondary, #bb-secondSide {
max-height: 60vh;
overflow: auto;
overflow-x: hidden;
scrollbar-width: thin;
scrollbar-color: #fff #000;
}
}
@media screen and (min-height: 1000px) {
#secondary, #bb-secondSide {
max-height: 75vh;
}
}
</style>
<?php
}
}
add_action('wp_head', 'big_bob_phone_is_sticky');
function big_bob_phone_is_sticky() {
if( get_theme_mod( 'big_bob_sticky_navbar_on_mobile', 'Off' ) == 'Off' ) {
?>
<style type="text/css">
@media screen and (max-width: 1064px) {
.bb-fixed-top {
position: absolute;
}
}
</style>
<?php
} else {
?>
<style type="text/css">
@media screen and (max-width: 1065px) {
.bb-fixed-top {
position: fixed;
}
}
@media screen and (max-width: 500px) {
.bb-fixed-top {
position: fixed;
}
}
</style>
<?php
}
}
add_action('wp_head', 'big_bob_media_in_background');
function big_bob_media_in_background() {
if( get_theme_mod( 'big_bob_media_to_background', 'Off' ) == 'On' ) {
?>
<style type="text/css">
.wp-custom-header video,
.wp-custom-header img,
.wp-custom-header iframe {
position: fixed;
z-index: -999;
}
</style>
<?php
} else {
?>
<style type="text/css">
.wp-custom-header,
.wp-custom-header video,
.wp-custom-header img,
.wp-custom-header iframe {
position: relative;
z-index: auto;
}
</style>
<?php
}
}
add_action('wp_head', 'big_bob_video_for_phone');
function big_bob_video_for_phone() {
if( get_theme_mod( 'big_bob_video_on_phone', 'On' ) == 'Off' ) {
add_filter( 'header_video_settings', function( $args ) {
$args['minWidth'] = 1050;
return $args;
} );
} else {
add_filter( 'header_video_settings', function( $args ) {
$args['minWidth'] = 0;
return $args;
} );
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists