function css()
 {
     global $ss_settings;
     if (is_array($ss_settings['header_bg'])) {
         $bg = StacheStack_Color::sanitize_hex($ss_settings['header_bg']['background-color']);
     } else {
         $bg = StacheStack_Color::sanitize_hex($ss_settings['header_bg']);
     }
     $cl = StacheStack_Color::sanitize_hex($ss_settings['header_color']);
     $header_margin_top = $ss_settings['header_margin_top'];
     $header_margin_bottom = $ss_settings['header_margin_bottom'];
     $opacity = intval($ss_settings['header_bg_opacity']) / 100;
     $rgb = StacheStack_Color::get_rgb($bg, true);
     if ($ss_settings['site_style'] == 'boxed') {
         $element = 'body .before-main-wrapper .header-boxed';
     } else {
         $element = 'body .before-main-wrapper .header-wrapper';
     }
     if ($ss_settings['header_toggle'] == 1) {
         $style = $element . ' a, ' . $element . ' h1, ' . $element . ' h2, ' . $element . ' h3, ' . $element . ' h4, ' . $element . ' h5, ' . $element . ' h6  { color: ' . $cl . '; }';
         $style .= $element . '{ color: ' . $cl . ';';
         if ($opacity < 1 && !$ss_settings['header_bg']['background-image']) {
             $style .= 'background: rgb(' . $rgb . '); background: rgba(' . $rgb . ', ' . $opacity . ');';
         }
         if ($header_margin_top > 0) {
             $style .= 'margin-top:' . $header_margin_top . 'px;';
         }
         if ($header_margin_bottom > 0) {
             $style .= 'margin-bottom:' . $header_margin_bottom . 'px;';
         }
         $style .= '}';
         wp_add_inline_style('stachestack_css', $style);
     }
 }
 /**
  * Any Jumbotron-specific CSS that can't be added in the .less stylesheet is calculated here.
  */
 function jumbotron_css()
 {
     global $ss_settings;
     $center = $ss_settings['jumbotron_center'];
     $border = $ss_settings['jumbotron_border'];
     $opacity = intval($ss_settings['jumbotron_bg_opacity']) / 100;
     if (is_array($ss_settings['jumbo_bg'])) {
         $bg = StacheStack_Color::sanitize_hex($ss_settings['jumbo_bg']['background-color']);
     } else {
         $bg = StacheStack_Color::sanitize_hex($ss_settings['jumbo_bg']);
     }
     $rgb = StacheStack_Color::get_rgb($bg, true);
     $style = '';
     if ($center == 1) {
         $style .= 'text-align: center;';
     }
     if (!empty($border) && $border['border-bottom'] > 0 && !empty($border['border-color'])) {
         $style .= 'border-bottom:' . $border['border-bottom'] . ' ' . $border['border-style'] . ' ' . $border['border-color'] . ';';
     }
     if ($opacity < 1 && !$ss_settings['jumbo_bg']['background-image']) {
         $style .= 'background: rgb(' . $rgb . '); background: rgba(' . $rgb . ', ' . $opacity . ') !important;';
     }
     $style .= 'margin-bottom: 0px;';
     $theCSS = '.jumbotron {' . trim($style) . '}';
     wp_add_inline_style('stachestack_css', $theCSS);
 }
 /**
  * If the options selected require the insertion of some custom CSS to the document head, generate that CSS here
  */
 function css()
 {
     global $ss_settings;
     $bg = $ss_settings['footer_background'];
     $cl = $ss_settings['footer_color'];
     $cl_brand = $ss_settings['color_brand_primary'];
     $opacity = intval($ss_settings['footer_opacity']) / 100;
     $rgb = StacheStack_Color::get_rgb($bg, true);
     $border = $ss_settings['footer_border'];
     $top_margin = $ss_settings['footer_top_margin'];
     $container_margin = $top_margin * 0.381966011;
     $style = 'footer.content-info {';
     $style .= 'color:' . $cl . ';';
     $style .= $opacity != 1 && $opacity != "" ? 'background: rgba(' . $rgb . ',' . $opacity . ');' : 'background:' . $bg . ';';
     $style .= !empty($border) && $border['border-top'] > 0 && !empty($border['border-color']) ? 'border-top:' . $border['border-top'] . ' ' . $border['border-style'] . ' ' . $border['border-color'] . ';' : '';
     if (isset($ss_settings['layout_gutter'])) {
         $style .= 'padding-top:' . $ss_settings['layout_gutter'] / 2 . 'px;';
         $style .= 'padding-bottom:' . $ss_settings['layout_gutter'] / 2 . 'px;';
     }
     $style .= !empty($top_margin) ? 'margin-top:' . $top_margin . 'px;' : '';
     $style .= '}';
     $style .= 'footer div.container { margin-top:' . $container_margin . 'px; }';
     $style .= '#copyright-bar { line-height: 30px; }';
     $style .= '#footer_social_bar { line-height: 30px; font-size: 16px; text-align: right; }';
     $style .= '#footer_social_bar a { margin-left: 9px; padding: 3px; color:' . $cl . '; }';
     $style .= '#footer_social_bar a:hover, #footer_social_bar a:active { color:' . $cl_brand . ' !important; text-decoration:none; }';
     wp_add_inline_style('stachestack_css', $style);
 }
 function css()
 {
     global $ss_settings;
     $content_opacity = $ss_settings['body_bg_opacity'];
     $bg_color = $ss_settings['body_bg'];
     if (isset($bg_color['background-color'])) {
         $bg_color = $bg_color['background-color'];
     } else {
         $bg_color = '#ffffff';
     }
     // Style defaults to null.
     $style = null;
     // The Content background color
     if ($content_opacity < 100) {
         $content_bg = 'background:' . StacheStack_Color::get_rgba($bg_color, $content_opacity) . ';';
         $style = '.wrap.main-section div.content .bg {' . $content_bg . '}';
     }
     wp_add_inline_style('stachestack_css', $style);
 }
        public function setSections()
        {
            global $redux;
            $settings = get_option(STACHESTACK_OPT_NAME);
            // General Settings
            $this->sections[] = array('title' => __('General', 'stachestack'), 'icon' => 'el-icon-website', 'fields' => apply_filters('stachestack_module_general_options_modifier', array(array('title' => __('Setup Mode', 'stachestack'), 'desc' => __('Select Easy or Advanced setup. Easy mode hides most options and allows for quick customization.', 'stachestack'), 'id' => 'options_mode', 'type' => 'button_set', 'options' => array('easy' => __('Easy', 'stachestack'), 'advanced' => __('Advanced', 'stachestack')), 'default' => 'easy'), array('title' => __('Logo', 'stachestack'), 'desc' => __('Upload a logo image using the media uploader, or define the URL directly.', 'stachestack'), 'id' => 'logo', 'default' => '', 'type' => 'media'), array('title' => __('Custom Favicon', 'stachestack'), 'desc' => __('Upload a favicon image using the media uploader, or define the URL directly.', 'stachestack'), 'id' => 'favicon', 'default' => '', 'type' => 'media', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Apple Icon', 'stachestack'), 'desc' => __('This will create icons for Apple iPhone ( 57px x 57px ), Apple iPhone Retina Version ( 114px x 114px ), Apple iPad ( 72px x 72px ) and Apple iPad Retina ( 144px x 144px ). Please note that for better results the image you upload should be at least 144px x 144px.', 'stachestack'), 'id' => 'apple_icon', 'default' => '', 'type' => 'media', 'required' => array('options_mode', '=', array('advanced'))))));
            // Colors Settings
            $this->sections[] = array('title' => __('Colors', 'stachestack'), 'icon' => 'el-icon-certificate', 'fields' => apply_filters('stachestack_module_branding_options_modifier', array(array('title' => 'Colors', 'desc' => '', 'id' => 'help6', 'default' => __('The primary color you select will also affect other elements on your site, such as table borders, widgets colors, input elements, dropdowns etc. The branding colors you select will be used throughout the site in various elements. One of the most important settings in your branding is your primary color, since this will be used more often.', 'stachestack'), 'type' => 'info'), array('title' => __('Enable Gradients', 'stachestack'), 'desc' => __('Enable gradients for buttons and the navbar. Default: Off.', 'stachestack'), 'id' => 'gradients_toggle', 'default' => 0, 'compiler' => true, 'type' => 'switch'), array('title' => __('Brand Colors: Primary', 'stachestack'), 'desc' => __('Select your primary branding color. Also referred to as an accent color. This will affect various areas of your site, including the color of your primary buttons, link color, the background of some elements and many more.', 'stachestack'), 'id' => 'color_brand_primary', 'default' => '#428bca', 'compiler' => true, 'transparent' => false, 'type' => 'color'), array('title' => __('Brand Colors: Success', 'stachestack'), 'desc' => __('Select your branding color for success messages etc. Default: #5cb85c.', 'stachestack'), 'id' => 'color_brand_success', 'default' => '#5cb85c', 'compiler' => true, 'transparent' => false, 'type' => 'color', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Brand Colors: Warning', 'stachestack'), 'desc' => __('Select your branding color for warning messages etc. Default: #f0ad4e.', 'stachestack'), 'id' => 'color_brand_warning', 'default' => '#f0ad4e', 'compiler' => true, 'type' => 'color', 'transparent' => false, 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Brand Colors: Danger', 'stachestack'), 'desc' => __('Select your branding color for success messages etc. Default: #d9534f.', 'stachestack'), 'id' => 'color_brand_danger', 'default' => '#d9534f', 'compiler' => true, 'type' => 'color', 'transparent' => false, 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Brand Colors: Info', 'stachestack'), 'desc' => __('Select your branding color for info messages etc. It will also be used for the Search button color as well as other areas where it semantically makes sense to use an \'info\' class. Default: #5bc0de.', 'stachestack'), 'id' => 'color_brand_info', 'default' => '#5bc0de', 'compiler' => true, 'type' => 'color', 'transparent' => false, 'required' => array('options_mode', '=', array('advanced'))))));
            // Background Settings
            $this->sections[] = array('title' => __('Background', 'stachestack'), 'icon' => 'el-icon-photo', 'fields' => apply_filters('stachestack_module_background_options_modifier', array(array('title' => __('General Background Color', 'stachestack'), 'desc' => __('Select a background color for your site. Default: #ffffff.', 'stachestack'), 'id' => 'html_bg', 'default' => array('background-color' => isset($settings['html_color_bg']) ? $settings['html_color_bg'] : '#ffffff'), 'transparent' => false, 'type' => 'background', 'output' => 'body'), array('title' => __('Content Background', 'stachestack'), 'desc' => __('Background for the content area. Colors also affect input areas and other colors.', 'stachestack'), 'id' => 'body_bg', 'default' => array('background-color' => isset($settings['color_body_bg']) ? $settings['color_body_bg'] : '#ffffff', 'background-repeat' => isset($settings['background_repeat']) ? $settings['background_repeat'] : NULL, 'background-position' => isset($settings['background_position_x']) ? $settings['background_position_x'] . ' center' : NULL, 'background-image' => isset($settings['background_image']['url']) ? $settings['background_image']['url'] : NULL), 'compiler' => true, 'transparent' => false, 'type' => 'background', 'output' => '.wrap.main-section .content .bg'), array('title' => __('Content Background Color Opacity', 'stachestack'), 'desc' => __('Select the opacity of your background color for the main content area so that background images will show through. Please note that if you have added an image for your content background, changing the opacity to something other than 100 will result in your background image not being shown. If you need to add opacity to your content background image, you will need to do it by adding transparency to the PNG background image itself.', 'stachestack'), 'id' => 'body_bg_opacity', 'default' => 100, 'min' => 0, 'step' => 1, 'max' => 100, 'type' => 'slider'))));
            $this->sections[] = array('title' => __('Layout', 'stachestack'), 'icon' => 'el-icon-screen', 'description' => '<p>In this area you can select your site\'s layout, the width of your sidebars, as well as other, more advanced options.</p>', 'fields' => apply_filters('stachestack_module_layout_options_modifier', array(array('title' => __('Site Style', 'stachestack'), 'desc' => __('Select the default site layout. Defaults to "Wide". Please note that if you select a non-responsive layout, you will have to trigger the compiler so that your changes take effect.', 'stachestack'), 'id' => 'site_style', 'default' => 'wide', 'type' => 'select', 'options' => array('static' => __('Static (Non-Responsive)', 'stachestack'), 'wide' => __('Wide', 'stachestack'), 'boxed' => __('Boxed', 'stachestack'), 'fluid' => __('Fluid', 'stachestack')), 'compiler' => true), array('title' => __('Layout', 'stachestack'), 'desc' => __('Select main content and sidebar arrangement. Choose between 1, 2 or 3 column layout.', 'stachestack'), 'id' => 'layout', 'default' => 1, 'type' => 'image_select', 'options' => array(0 => ReduxFramework::$_url . '/assets/img/1c.png', 1 => ReduxFramework::$_url . '/assets/img/2cr.png', 2 => ReduxFramework::$_url . '/assets/img/2cl.png', 3 => ReduxFramework::$_url . '/assets/img/3cl.png', 4 => ReduxFramework::$_url . '/assets/img/3cr.png', 5 => ReduxFramework::$_url . '/assets/img/3cm.png')), array('title' => __('Primary Sidebar Width', 'stachestack'), 'desc' => __('Select the width of the Primary Sidebar. Please note that the values represent grid columns. The total width of the page is 12 columns, so selecting 4 here will make the primary sidebar to have a width of 1/3 ( 4/12 ) of the total page width.', 'stachestack'), 'id' => 'layout_primary_width', 'type' => 'button_set', 'options' => array('1' => '1 Column', '2' => '2 Columns', '3' => '3 Columns', '4' => '4 Columns', '5' => '5 Columns'), 'default' => '4'), array('title' => __('Secondary Sidebar Width', 'stachestack'), 'desc' => __('Select the width of the Secondary Sidebar. Please note that the values represent grid columns. The total width of the page is 12 columns, so selecting 4 here will make the secondary sidebar to have a width of 1/3 ( 4/12 ) of the total page width.', 'stachestack'), 'id' => 'layout_secondary_width', 'type' => 'button_set', 'options' => array('1' => '1 Column', '2' => '2 Columns', '3' => '3 Columns', '4' => '4 Columns', '5' => '5 Columns'), 'default' => '3'), array('title' => __('Show sidebars on the frontpage', 'stachestack'), 'desc' => __('OFF by default. If you want to display the sidebars in your frontpage, turn this ON.', 'stachestack'), 'id' => 'layout_sidebar_on_front', 'default' => 0, 'type' => 'switch'))));
            $std = array(array('title' => 'Looking for Advanced Layout Options?', 'desc' => '', 'id' => 'help632165', 'default' => __('Advanced layout options are not available when using the Easy setup mode.
							Please switch to Anvanced Setup Mode from the "General" section.', 'stachestack'), 'type' => 'info', 'style' => 'warning', 'required' => array('options_mode', '=', array('easy'))), array('title' => __('Margin from top ( Works only in \'Boxed\' mode )', 'stachestack'), 'desc' => __('This will add a margin above the navbar. Useful if you\'ve enabled the \'Boxed\' mode above. Default: 0px', 'stachestack'), 'id' => 'navbar_margin_top', 'required' => array('navbar_boxed', '=', array('1')), 'default' => 0, 'min' => 0, 'step' => 1, 'max' => 120, 'compiler' => true, 'type' => 'slider', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Widgets mode', 'stachestack'), 'desc' => __('How do you want your widgets to be displayed?', 'stachestack'), 'id' => 'widgets_mode', 'default' => 1, 'options' => array(0 => __('Panel', 'stachestack'), 1 => __('Well', 'stachestack'), 2 => __('None', 'stachestack')), 'type' => 'button_set', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Body Top Margin', 'stachestack'), 'desc' => __('Select the top margin of body element in pixels. Default: 0px.', 'stachestack'), 'id' => 'body_margin_top', 'default' => 0, 'min' => 0, 'step' => 1, 'max' => 200, 'edit' => 1, 'type' => 'slider', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Body Bottom Margin', 'stachestack'), 'desc' => __('Select the bottom margin of body element in pixels. Default: 0px.', 'stachestack'), 'id' => 'body_margin_bottom', 'default' => 0, 'min' => 0, 'step' => 1, 'max' => 200, 'edit' => 1, 'type' => 'slider', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Custom Grid', 'stachestack'), 'desc' => '<strong>' . __('CAUTION:', 'stachestack') . '</strong> ' . __('Only use this if you know what you are doing, as changing these values might break the way your site looks on some devices. The default settings should be fine for the vast majority of sites.', 'stachestack'), 'id' => 'custom_grid', 'default' => 0, 'type' => 'switch', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Small Screen / Tablet view', 'stachestack'), 'desc' => __('The width of Tablet screens. Default: 768px', 'stachestack'), 'id' => 'screen_tablet', 'default' => 768, 'min' => 620, 'step' => 2, 'max' => 2100, 'advanced' => true, 'compiler' => true, 'type' => 'slider', 'required' => array(array('options_mode', '=', array('advanced')), array('custom_grid', '=', array('1')))), array('title' => __('Desktop Container Width', 'stachestack'), 'desc' => __('The width of normal screens. Default: 992px', 'stachestack'), 'id' => 'screen_desktop', 'default' => 992, 'min' => 620, 'step' => 2, 'max' => 2100, 'advanced' => true, 'compiler' => true, 'type' => 'slider', 'required' => array(array('options_mode', '=', array('advanced')), array('custom_grid', '=', array('1')))), array('title' => __('Large Desktop Container Width', 'stachestack'), 'desc' => __('The width of Large Desktop screens. Default: 1200px', 'stachestack'), 'id' => 'screen_large_desktop', 'default' => 1200, 'min' => 620, 'step' => 2, 'max' => 2100, 'advanced' => true, 'compiler' => true, 'type' => 'slider', 'required' => array(array('options_mode', '=', array('advanced')), array('custom_grid', '=', array('1')))), array('title' => __('Columns Gutter', 'stachestack'), 'desc' => __('The space between the columns in your grid. Default: 30px', 'stachestack'), 'id' => 'layout_gutter', 'default' => 30, 'min' => 2, 'step' => 2, 'max' => 100, 'advanced' => true, 'compiler' => true, 'type' => 'slider', 'required' => array(array('options_mode', '=', array('advanced')), array('custom_grid', '=', array('1')))), array('title' => __('Custom Layouts per Post Type', 'stachestack'), 'desc' => __('Set a default layout for each post type on your site.', 'stachestack'), 'id' => 'cpt_layout_toggle', 'default' => 0, 'type' => 'switch', 'required' => array('options_mode', '=', array('advanced'))));
            // Layout Settings
            $post_types = get_post_types(array('public' => true), 'names');
            $layout = isset($ss_settings['layout']) ? $ss_settings['layout'] : 1;
            $layout_ppt_fields = array();
            foreach ($post_types as $post_type) {
                $layout_ppt_fields[] = array('title' => __($post_type . ' Layout', 'stachestack'), 'desc' => __('Override your default stylings. Choose between 1, 2 or 3 column layout.', 'stachestack'), 'id' => $post_type . '_layout', 'default' => $layout, 'type' => 'image_select', 'required' => array('cpt_layout_toggle', '=', array('1')), 'options' => array(0 => ReduxFramework::$_url . '/assets/img/1c.png', 1 => ReduxFramework::$_url . '/assets/img/2cr.png', 2 => ReduxFramework::$_url . '/assets/img/2cl.png', 3 => ReduxFramework::$_url . '/assets/img/3cl.png', 4 => ReduxFramework::$_url . '/assets/img/3cr.png', 5 => ReduxFramework::$_url . '/assets/img/3cm.png'));
            }
            $this->sections[] = array('title' => __('Advanced Layout', 'stachestack'), 'icon' => 'el-icon-chevron-right', 'subsection' => true, 'fields' => apply_filters('stachestack_module_layout_advanced_options_modifier', array_merge($std, $layout_ppt_fields)));
            // Blog Settings
            $screen_large_desktop = isset($ss_settings['screen_large_desktop']) ? filter_var($ss_settings['screen_large_desktop'], FILTER_SANITIZE_NUMBER_INT) : 1200;
            $post_types = get_post_types(array('public' => true), 'names');
            $post_type_options = array();
            $post_type_defaults = array();
            foreach ($post_types as $post_type) {
                $post_type_options[$post_type] = $post_type;
                $post_type_defaults[$post_type] = 0;
            }
            $this->sections[] = array('title' => __('Blog', 'stachestack'), 'icon' => 'el-icon-wordpress', 'fields' => apply_filters('stachestack_module_blog_modifier', array(array('title' => __('Archives Display Mode', 'stachestack'), 'desc' => __('Display the excerpt or the full post on post archives.', 'stachestack'), 'id' => 'blog_post_mode', 'default' => 'excerpt', 'type' => 'button_set', 'options' => array('excerpt' => __('Excerpt', 'stachestack'), 'full' => __('Full Post', 'stachestack'))), array('id' => 'stachestack_entry_meta_config', 'title' => __('Activate and order Post Meta elements', 'stachestack'), 'options' => array('post-format' => 'Post Format', 'tags' => 'Tags', 'date' => 'Date', 'category' => 'Category', 'author' => 'Author', 'comment-count' => 'Comments', 'sticky' => 'Sticky'), 'type' => 'sortable', 'mode' => 'checkbox'), array('title' => __('Switch Date Meta in time_diff mode', 'stachestack'), 'desc' => __('Replace Date Meta element by displaying the difference between post creation timestamp and current timestamp. Default: OFF.', 'stachestack'), 'id' => 'date_meta_format', 'default' => 0, 'type' => 'switch', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Post excerpt length', 'stachestack'), 'desc' => __('Choose how many words should be used for post excerpt. Default: 40', 'stachestack'), 'id' => 'post_excerpt_length', 'default' => 40, 'min' => 10, 'step' => 1, 'max' => 1000, 'edit' => 1, 'type' => 'slider', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('"more" text', 'stachestack'), 'desc' => __('Text to display in case of excerpt too long. Default: Continued', 'stachestack'), 'id' => 'post_excerpt_link_text', 'default' => __('Continued', 'stachestack'), 'type' => 'text', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Show Breadcrumbs', 'stachestack'), 'desc' => __('Display Breadcrumbs. Default: OFF.', 'stachestack'), 'id' => 'breadcrumbs', 'default' => 0, 'type' => 'switch'), array('title' => __('Show Post Meta in single posts', 'stachestack'), 'desc' => __('Toggle Post Meta showing in the footer of single posts. Default: ON.', 'stachestack'), 'id' => 'single_meta', 'default' => 1, 'type' => 'switch', 'required' => array('options_mode', '=', array('advanced'))))));
            // Blog Settings
            $screen_large_desktop = isset($ss_settings['screen_large_desktop']) ? filter_var($ss_settings['screen_large_desktop'], FILTER_SANITIZE_NUMBER_INT) : 1200;
            $post_types = get_post_types(array('public' => true), 'names');
            $post_type_options = array();
            $post_type_defaults = array();
            foreach ($post_types as $post_type) {
                $post_type_options[$post_type] = $post_type;
                $post_type_defaults[$post_type] = 0;
            }
            $this->sections[] = array('title' => __('Featured Images', 'stachestack'), 'icon' => 'el-icon-chevron-right', 'subsection' => true, 'fields' => apply_filters('stachestack_module_featured_images_modifier', array(array('id' => 'help3', 'title' => __('Featured Images', 'stachestack'), 'desc' => __('Here you can select if you want to display the featured images in post archives and individual posts.
														Please note that these apply to posts, pages, as well as custom post types.
														You can select image sizes independently for archives and individual posts view.', 'stachestack'), 'type' => 'info'), array('title' => __('Featured Images on Archives', 'stachestack'), 'desc' => __('Display featured Images on post archives ( such as categories, tags, month view etc ). Default: OFF.', 'stachestack'), 'id' => 'feat_img_archive', 'default' => 0, 'type' => 'switch'), array('title' => __('Width of Featured Images on Archives', 'stachestack'), 'desc' => __('Set dimensions of featured Images on Archives. Default: Full Width', 'stachestack'), 'id' => 'feat_img_archive_custom_toggle', 'default' => 0, 'required' => array('feat_img_archive', '=', array('1')), 'off' => __('Full Width', 'stachestack'), 'on' => __('Custom Dimensions', 'stachestack'), 'type' => 'switch'), array('title' => __('Archives Featured Image Custom Width', 'stachestack'), 'desc' => __('Select the width of your featured images on single posts. Default: 550px', 'stachestack'), 'id' => 'feat_img_archive_width', 'default' => 550, 'min' => 100, 'step' => 1, 'max' => $screen_large_desktop, 'required' => array(array('feat_img_archive', '=', 1), array('feat_img_archive_custom_toggle', '=', 1)), 'edit' => 1, 'type' => 'slider'), array('title' => __('Archives Featured Image Custom Height', 'stachestack'), 'desc' => __('Select the height of your featured images on post archives. Default: 300px', 'stachestack'), 'id' => 'feat_img_archive_height', 'default' => 300, 'min' => 50, 'step' => 1, 'edit' => 1, 'max' => $screen_large_desktop, 'required' => array('feat_img_archive', '=', 1), 'type' => 'slider'), array('title' => __('Featured Images on Posts', 'stachestack'), 'desc' => __('Display featured Images on posts. Default: OFF.', 'stachestack'), 'id' => 'feat_img_post', 'default' => 0, 'type' => 'switch'), array('title' => __('Width of Featured Images on Posts', 'stachestack'), 'desc' => __('Set dimensions of featured Images on Posts. Default: Full Width', 'stachestack'), 'id' => 'feat_img_post_custom_toggle', 'default' => 0, 'off' => __('Full Width', 'stachestack'), 'on' => __('Custom Dimensions', 'stachestack'), 'type' => 'switch', 'required' => array('feat_img_post', '=', 1)), array('title' => __('Posts Featured Image Custom Width', 'stachestack'), 'desc' => __('Select the width of your featured images on single posts. Default: 550px', 'stachestack'), 'id' => 'feat_img_post_width', 'default' => 550, 'min' => 100, 'step' => 1, 'max' => $screen_large_desktop, 'edit' => 1, 'required' => array(array('feat_img_post', '=', 1), array('feat_img_post_custom_toggle', '=', 1)), 'type' => 'slider'), array('title' => __('Posts Featured Image Custom Height', 'stachestack'), 'desc' => __('Select the height of your featured images on single posts. Default: 330px', 'stachestack'), 'id' => 'feat_img_post_height', 'default' => 330, 'min' => 50, 'step' => 1, 'max' => $screen_large_desktop, 'edit' => 1, 'required' => array('feat_img_post', '=', 1), 'type' => 'slider'), array('title' => __('Disable featured images on single post types', 'stachestack'), 'id' => 'feat_img_per_post_type', 'type' => 'checkbox', 'options' => $post_type_options, 'default' => $post_type_defaults, 'required' => array('options_mode', '=', array('advanced'))))));
            // Jumbotron Settings
            $this->sections[] = array('title' => __('Jumbotron', 'stachestack'), 'icon' => 'el-icon-bullhorn', 'fields' => apply_filters('stachestack_module_jumbotron_options_modifier', array(array('id' => 'help8', 'title' => __('Jumbotron', 'stachestack'), 'desc' => __("A 'Jumbotron', also known as 'Hero' area, is an area in your site where you can display in a prominent position things that matter to you. This can be a slideshow, some text or whatever else you wish. This area is implemented as a widget area, so in order for something to be displayed you will have to add a widget to it.", 'stachestack'), 'type' => 'info'), array('title' => __('Jumbotron Background', 'stachestack'), 'desc' => __('Select the background for your Jumbotron area.', 'stachestack'), 'id' => 'jumbo_bg', 'default' => array('background-color' => isset($ss_settings['jumbotron_bg']) ? StacheStack_Color::sanitize_hex($ss_settings['jumbotron_bg']) : '#eeeeee', 'background-repeat' => isset($ss_settings['jumbotron_background_repeat']) ? $ss_settings['jumbotron_background_repeat'] : NULL, 'background-position' => isset($ss_settings['jumbotron_background_image_position_toggle']) ? $ss_settings['jumbotron_background_image_position_toggle'] . ' center' : NULL, 'background-image' => isset($ss_settings['jumbotron_background_image']['url']) ? $ss_settings['jumbotron_background_image']['url'] : NULL), 'compiler' => true, 'transparent' => false, 'output' => '.jumbotron', 'type' => 'background'), array('title' => __('Jumbotron Background Opacity', 'stachestack'), 'desc' => __('Select the background opacity for your jumbotron. Default: 100%.', 'stachestack'), 'id' => 'jumbotron_bg_opacity', 'default' => 100, 'min' => 0, 'step' => 1, 'max' => 100, 'compiler' => true, 'type' => 'slider'), array('title' => __('Display Jumbotron only on the Frontpage.', 'stachestack'), 'desc' => __('When Turned OFF, the Jumbotron area is displayed in all your pages. If you wish to completely disable the Jumbotron, then please remove the widgets assigned to its area and it will no longer be displayed. Default: ON', 'stachestack'), 'id' => 'jumbotron_visibility', 'default' => 1, 'type' => 'switch'), array('title' => __('Full-Width', 'stachestack'), 'desc' => __('When Turned ON, the Jumbotron is no longer restricted by the width of your page, taking over the full width of your screen. This option is useful when you have assigned a slider widget on the Jumbotron area and you want its width to be the maximum width of the screen. Default: OFF.', 'stachestack'), 'id' => 'jumbotron_nocontainer', 'default' => 1, 'type' => 'switch'), array('title' => __('Jumbotron Font', 'stachestack'), 'desc' => __('The font used in jumbotron.', 'stachestack'), 'id' => 'font_jumbotron', 'compiler' => true, 'default' => array('font-family' => 'Arial, Helvetica, sans-serif', 'font-size' => '20px', 'google' => 'false', 'weight' => 'inherit', 'color' => '#333333', 'font-style' => 400), 'preview' => array('text' => __('This is my preview text!', 'stachestack'), 'size' => '30px'), 'type' => 'typography', 'output' => '.jumbotron'))));
            // Jumbotron Settings
            $this->sections[] = array('title' => __('Advanced Jumbotron', 'stachestack'), 'icon' => 'el-icon-chevron-right', 'subsection' => true, 'fields' => apply_filters('stachestack_module_jumbotron_advanced_options_modifier', array(array('title' => __('Use fittext script for the title.', 'stachestack'), 'desc' => __('Use the fittext script to enlarge or scale-down the font-size of the widget title to fit the Jumbotron area. Default: OFF', 'stachestack'), 'id' => 'jumbotron_title_fit', 'default' => 0, 'type' => 'switch', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Center-align the content.', 'stachestack'), 'desc' => __('Turn this on to center-align the contents of the Jumbotron area. Default: OFF', 'stachestack'), 'id' => 'jumbotron_center', 'default' => 0, 'type' => 'switch', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Jumbotron Font', 'stachestack'), 'desc' => __('The font used in jumbotron.', 'stachestack'), 'id' => 'font_jumbotron', 'compiler' => true, 'default' => array('font-family' => 'Arial, Helvetica, sans-serif', 'font-size' => '20px', 'google' => 'false', 'weight' => 'inherit', 'color' => '#333333', 'font-style' => 400), 'preview' => array('text' => __('This is my preview text!', 'stachestack'), 'size' => '30px'), 'type' => 'typography', 'output' => '.jumbotron'), array('title' => __('Jumbotron Header Overrides', 'stachestack'), 'desc' => __('By enabling this you can specify custom values for each <h*> tag. Default: Off', 'stachestack'), 'id' => 'font_jumbotron_heading_custom', 'default' => 0, 'compiler' => true, 'type' => 'switch', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Jumbotron Headers Font', 'stachestack'), 'desc' => __('The main font for your site.', 'stachestack'), 'id' => 'font_jumbotron_headers', 'compiler' => true, 'default' => array('font-family' => 'Arial, Helvetica, sans-serif', 'color' => '#333333', 'google' => 'false'), 'preview' => array('text' => __('This is my preview text!', 'stachestack'), 'size' => '30px'), 'type' => 'typography', 'required' => array(array('font_jumbotron_heading_custom', '=', 1), array('options_mode', '=', array('advanced')))), array('title' => 'Jumbotron Border', 'desc' => __('Select the border options for your Jumbotron', 'stachestack'), 'id' => 'jumbotron_border', 'type' => 'border', 'all' => false, 'left' => false, 'top' => false, 'right' => false, 'default' => array('border-top' => '0', 'border-bottom' => '0', 'border-style' => 'solid', 'border-color' => '#428bca'), 'required' => array('options_mode', '=', array('advanced'))))));
            // Menus Settings
            $this->sections[] = array('title' => __('Menus', 'stachestack'), 'icon' => 'el-icon-lines', 'fields' => apply_filters('stachestack_module_menus_options_modifier', array(array('id' => 'help7', 'title' => __('Advanced NavBar Options', 'stachestack'), 'desc' => __("You can activate or deactivate your Primary NavBar here, and define its properties. Please note that you might have to manually create a menu if it doesn't already exist.", 'stachestack'), 'type' => 'info'), array('title' => __('Type of NavBar', 'stachestack'), 'desc' => __('Choose the type of Navbar you want. Off completely hides the navbar, Alternative uses an alternative walker for the navigation menus. See <a target="_blank"href="https://github.com/twittem/wp-bootstrap-navwalker">here</a> for more details.', 'stachestack') . '<br>' . __('<strong>WARNING:</strong> The "Static-Left" option is ONLY compatible with fluid layouts. The width of the static-left navbar is controlled by the secondary sidebar width.', 'stachestack'), 'id' => 'navbar_toggle', 'default' => 'normal', 'options' => array('none' => __('Off', 'stachestack'), 'normal' => __('Normal', 'stachestack'), 'full' => __('Full-Width', 'stachestack'), 'left' => __('Static-Left', 'stachestack')), 'type' => 'button_set'), array('title' => __('Display Branding ( Sitename or Logo ) on the NavBar', 'stachestack'), 'desc' => __('Default: ON', 'stachestack'), 'id' => 'navbar_brand', 'default' => 1, 'type' => 'switch'), array('title' => __('Use Logo ( if available ) for branding on the NavBar', 'stachestack'), 'desc' => __('If this option is OFF, or there is no logo available, then the sitename will be displayed instead. Default: ON', 'stachestack'), 'id' => 'navbar_logo', 'default' => 1, 'type' => 'switch'), array('title' => __('NavBar Positioning', 'stachestack'), 'desc' => __('Using this option you can set the navbar to be fixed to top, fixed to bottom or normal. When you\'re using one of the \'fixed\' options, the navbar will stay fixed on the top or bottom of the page. Default: Normal', 'stachestack'), 'id' => 'navbar_fixed', 'default' => 0, 'on' => __('Fixed', 'stachestack'), 'off' => __('Scroll', 'stachestack'), 'type' => 'switch'), array('title' => __('Fixed NavBar Position', 'stachestack'), 'desc' => __('Using this option you can set the navbar to be fixed to top, fixed to bottom or normal. When you\'re using one of the \'fixed\' options, the navbar will stay fixed on the top or bottom of the page. Default: Normal', 'stachestack'), 'id' => 'navbar_fixed_position', 'required' => array('navbar_fixed', '=', array('1')), 'default' => 0, 'on' => __('Bottom', 'stachestack'), 'off' => __('Top', 'stachestack'), 'type' => 'switch', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Responsive NavBar Threshold', 'stachestack'), 'desc' => __('Point at which the navbar becomes uncollapsed', 'stachestack'), 'id' => 'grid_float_breakpoint', 'type' => 'button_set', 'options' => array('min' => __('Never', 'stachestack'), 'screen_xs_min' => __('Extra Small', 'stachestack'), 'screen_sm_min' => __('Small', 'stachestack'), 'screen_md_min' => __('Desktop', 'stachestack'), 'screen_lg_min' => __('Large Desktop', 'stachestack'), 'max' => __('Always', 'stachestack')), 'default' => 'screen_sm_min', 'compiler' => true, 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Display social links in the NavBar.', 'stachestack'), 'desc' => __('Display social links in the NavBar. These can be setup in the \'Social\' section on the left. Default: OFF', 'stachestack'), 'id' => 'navbar_social', 'default' => 0, 'type' => 'switch'), array('title' => __('Display social links as a Dropdown list or an Inline list.', 'stachestack'), 'desc' => __('How to display social links. Default: Dropdown list', 'stachestack'), 'id' => 'navbar_social_style', 'default' => 0, 'on' => __('Inline', 'stachestack'), 'off' => __('Dropdown', 'stachestack'), 'type' => 'switch', 'required' => array('navbar_social', '=', array('1')), 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Search form on the NavBar', 'stachestack'), 'desc' => __('Display a search form in the NavBar. Default: On', 'stachestack'), 'id' => 'navbar_search', 'default' => 1, 'type' => 'switch'), array('title' => __('Float NavBar menu to the right', 'stachestack'), 'desc' => __('Floats the primary navigation to the right. Default: On', 'stachestack'), 'id' => 'navbar_nav_right', 'default' => 1, 'type' => 'switch'))));
            // Menus Styling Settings
            $this->sections[] = array('title' => __('Menus Styling', 'stachestack'), 'icon' => 'el-icon-chevron-right', 'subsection' => true, 'fields' => apply_filters('stachestack_module_menus_styling_options_modifier', array(array('id' => 'helpnavbarbg', 'title' => __('NavBar Styling Options', 'stachestack'), 'desc' => __('Customize the look and feel of your navbar below.', 'stachestack'), 'type' => 'info'), array('title' => __('NavBar Background Color', 'stachestack'), 'desc' => __('Pick a background color for the NavBar. Default: #eeeeee.', 'stachestack'), 'id' => 'navbar_bg', 'default' => '#f8f8f8', 'compiler' => true, 'transparent' => false, 'type' => 'color'), array('title' => __('NavBar Background Opacity', 'stachestack'), 'desc' => __('Pick a background opacity for the NavBar. Default: 100%.', 'stachestack'), 'id' => 'navbar_bg_opacity', 'default' => 100, 'min' => 1, 'step' => 1, 'max' => 100, 'type' => 'slider'), array('title' => __('NavBar Menu Style', 'stachestack'), 'desc' => __('You can use an alternative menu style for your NavBars.', 'stachestack'), 'id' => 'navbar_style', 'default' => 'default', 'type' => 'select', 'options' => array('default' => __('Default', 'stachestack'), 'style1' => __('Style', 'stachestack') . ' 1', 'style2' => __('Style', 'stachestack') . ' 2', 'style3' => __('Style', 'stachestack') . ' 3', 'style4' => __('Style', 'stachestack') . ' 4', 'style5' => __('Style', 'stachestack') . ' 5', 'style6' => __('Style', 'stachestack') . ' 6', 'metro' => __('Metro', 'stachestack'))), array('title' => __('NavBar Height', 'stachestack'), 'desc' => __('Select the height of the NavBar in pixels. Should be equal or greater than the height of your logo if you\'ve added one.', 'stachestack'), 'id' => 'navbar_height', 'default' => 50, 'min' => 38, 'step' => 1, 'max' => 200, 'compiler' => true, 'type' => 'slider'), array('title' => __('Navbar Font', 'stachestack'), 'desc' => __('The font used in navbars.', 'stachestack'), 'id' => 'font_navbar', 'compiler' => true, 'default' => array('font-family' => 'Arial, Helvetica, sans-serif', 'font-size' => 14, 'color' => '#333333', 'google' => 'false'), 'preview' => array('text' => __('This is my preview text!', 'stachestack'), 'size' => 30), 'type' => 'typography'), array('title' => __('Branding Font', 'stachestack'), 'desc' => __('The branding font for your site.', 'stachestack'), 'id' => 'font_brand', 'compiler' => true, 'default' => array('font-family' => 'Arial, Helvetica, sans-serif', 'font-size' => 18, 'google' => 'false', 'color' => '#333333'), 'preview' => array('text' => __('This is my preview text!', 'stachestack'), 'size' => 30), 'type' => 'typography'), array('title' => __('NavBar Margin', 'stachestack'), 'desc' => __('Select the top and bottom margin of the NavBar in pixels. Applies only in static top navbar ( scroll condition ). Default: 0px.', 'stachestack'), 'id' => 'navbar_margin', 'default' => 0, 'min' => 0, 'step' => 1, 'max' => 200, 'type' => 'slider', 'required' => array('options_mode', '=', array('advanced'))))));
            // Secondary Menus Settings
            $this->sections[] = array('title' => __('Secondary Navbar', 'stachestack'), 'icon' => 'el-icon-chevron-right', 'subsection' => true, 'fields' => apply_filters('stachestack_module_menus_secondary_options_modifier', array(array('id' => 'help9', 'title' => __('Secondary Navbar', 'stachestack'), 'desc' => __('The secondary navbar is a 2nd navbar, located right above the main wrapper. You can show a menu there, by assigning it from Appearance -> Menus.', 'stachestack'), 'type' => 'info'), array('title' => __('Display social networks in the secondary navigation bar.', 'stachestack'), 'desc' => __('Enable this option to display your social networks as a dropdown menu on the seondary navbar.', 'stachestack'), 'id' => 'navbar_secondary_social', 'default' => 0, 'type' => 'switch'), array('title' => __('Secondary NavBar Margin', 'stachestack'), 'desc' => __('Select the top and bottom margin of header in pixels. Default: 0px.', 'stachestack'), 'id' => 'secondary_navbar_margin', 'default' => 0, 'min' => 0, 'max' => 200, 'type' => 'slider', 'required' => array('options_mode', '=', array('advanced'))))));
            // Secondary Menus Settings
            $this->sections[] = array('title' => __('Sidebar Menus', 'stachestack'), 'icon' => 'el-icon-chevron-right', 'subsection' => true, 'fields' => apply_filters('stachestack_module_menus_secondary_options_modifier', array(array('title' => 'Looking for Advanced Layout Options?', 'desc' => '', 'id' => 'help6541128', 'default' => __('Please switch to Anvanced Setup Mode from the "General" section to see more options.', 'stachestack'), 'type' => 'info', 'style' => 'warning', 'required' => array('options_mode', '=', array('easy'))), array('id' => 'helpsidebarmenus', 'title' => __('Sidebar Menus', 'stachestack'), 'desc' => __('If you\'re using the "Custom Menu" widgets in your sidebars, you can control their styling here', 'stachestack'), 'type' => 'info', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Color for sidebar menus', 'stachestack'), 'desc' => __('Select a style for menus added to your sidebars using the custom menu widget', 'stachestack'), 'id' => 'menus_class', 'default' => 1, 'type' => 'select', 'options' => array('default' => __('Default', 'stachestack'), 'primary' => __('Branding-Primary', 'stachestack'), 'success' => __('Branding-Success', 'stachestack'), 'warning' => __('Branding-Warning', 'stachestack'), 'info' => __('Branding-Info', 'stachestack'), 'danger' => __('Branding-Danger', 'stachestack')), 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Inverse Sidebar_menus.', 'stachestack'), 'desc' => __('Default: OFF. See https://github.com/twittem/wp-bootstrap-navlist-walker for more details', 'stachestack'), 'id' => 'inverse_navlist', 'default' => 0, 'type' => 'switch', 'required' => array('options_mode', '=', array('advanced'))))));
            // Header Settings
            $this->sections[] = array('title' => __('Header', 'stachestack'), 'icon' => 'el-icon-eye-open', 'fields' => apply_filters('stachestack_module_header_options_modifier', array(array('id' => 'help9', 'title' => __('Extra Branding Area', 'stachestack'), 'desc' => __('You can enable an extra branding/header area. In this header you can add your logo, and any other widgets you wish.', 'stachestack'), 'type' => 'info'), array('title' => __('Display the Header.', 'stachestack'), 'desc' => __('Turn this ON to display the header. Default: OFF', 'stachestack'), 'id' => 'header_toggle', 'default' => 0, 'type' => 'switch'), array('title' => __('Display branding on your Header.', 'stachestack'), 'desc' => __('Turn this ON to display branding ( Sitename or Logo )on your Header. Default: ON', 'stachestack'), 'id' => 'header_branding', 'default' => 1, 'type' => 'switch', 'required' => array('header_toggle', '=', array('1'))), array('title' => __('Header Background', 'stachestack'), 'desc' => __('Specify the background for your header.', 'stachestack'), 'id' => 'header_bg', 'default' => array('background-color' => '#ffffff'), 'output' => '.before-main-wrapper .header-boxed, .before-main-wrapper .header-wrapper', 'type' => 'background', 'required' => array('header_toggle', '=', array('1'))), array('title' => __('Header Background Opacity', 'stachestack'), 'desc' => __('Select the background opacity for your header. Default: 100%.', 'stachestack'), 'id' => 'header_bg_opacity', 'default' => 100, 'min' => 0, 'step' => 1, 'max' => 100, 'compiler' => true, 'type' => 'slider', 'required' => array('header_toggle', '=', array('1'))), array('title' => __('Header Text Color', 'stachestack'), 'desc' => __('Select the text color for your header. Default: #333333.', 'stachestack'), 'id' => 'header_color', 'default' => '#333333', 'transparent' => false, 'type' => 'color', 'required' => array('header_toggle', '=', array('1'))), array('title' => __('Header Top Margin', 'stachestack'), 'desc' => __('Select the top margin of header in pixels. Default: 0px.', 'stachestack'), 'id' => 'header_margin_top', 'default' => 0, 'min' => 0, 'max' => 200, 'type' => 'slider', 'required' => array('header_toggle', '=', array('1')), 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Header Bottom Margin', 'stachestack'), 'desc' => __('Select the bottom margin of header in pixels. Default: 0px.', 'stachestack'), 'id' => 'header_margin_bottom', 'default' => 0, 'min' => 0, 'max' => 200, 'type' => 'slider', 'required' => array('header_toggle', '=', array('1')), 'required' => array('options_mode', '=', array('advanced'))))));
            // Footer Settings
            $this->sections[] = array('title' => __('Footer', 'stachestack'), 'icon' => 'el-icon-caret-down', 'fields' => apply_filters('stachestack_module_footer_options_modifier', array(array('title' => __('Footer Background Color', 'stachestack'), 'desc' => __('Select the background color for your footer. Default: #282a2b.', 'stachestack'), 'id' => 'footer_background', 'default' => '#282a2b', 'transparent' => false, 'type' => 'color'), array('title' => __('Footer Background Opacity', 'stachestack'), 'desc' => __('Select the opacity level for the footer bar. Default: 100%.', 'stachestack'), 'id' => 'footer_opacity', 'default' => 100, 'min' => 0, 'max' => 100, 'type' => 'slider', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Footer Text Color', 'stachestack'), 'desc' => __('Select the text color for your footer. Default: #8C8989.', 'stachestack'), 'id' => 'footer_color', 'default' => '#8C8989', 'transparent' => false, 'type' => 'color'), array('title' => __('Footer Text', 'stachestack'), 'desc' => __('The text that will be displayed in your footer. You can use [year] and [sitename] and they will be replaced appropriately. Default: &copy; [year] [sitename]', 'stachestack'), 'id' => 'footer_text', 'default' => '&copy; [year] [sitename]', 'type' => 'textarea'), array('title' => 'Footer Border', 'desc' => 'Select the border options for your Footer', 'id' => 'footer_border', 'type' => 'border', 'all' => false, 'left' => false, 'bottom' => false, 'right' => false, 'default' => array('border-top' => '0', 'border-bottom' => '0', 'border-style' => 'solid', 'border-color' => '#4B4C4D')), array('title' => __('Footer Top Margin', 'stachestack'), 'desc' => __('Select the top margin of footer in pixels. Default: 0px.', 'stachestack'), 'id' => 'footer_top_margin', 'default' => 0, 'min' => 0, 'max' => 200, 'type' => 'slider', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Show social icons in footer', 'stachestack'), 'desc' => __('Show social icons in the footer. Default: On.', 'stachestack'), 'id' => 'footer_social_toggle', 'default' => 0, 'type' => 'switch'), array('title' => __('Footer social links column width', 'stachestack'), 'desc' => __('You can customize the width of the footer social links area. The footer text width will be adjusted accordingly. Default: 5.', 'stachestack'), 'id' => 'footer_social_width', 'required' => array('footer_social_toggle', '=', array('1')), 'default' => 6, 'min' => 3, 'step' => 1, 'max' => 10, 'type' => 'slider'), array('title' => __('Footer social icons open new window', 'stachestack'), 'desc' => __('Social icons in footer will open a new window. Default: On.', 'stachestack'), 'id' => 'footer_social_new_window_toggle', 'required' => array('footer_social_toggle', '=', array('1')), 'default' => 1, 'type' => 'switch', 'required' => array('options_mode', '=', array('advanced'))))));
            // Typography Settings
            $this->sections[] = array('title' => __('Typography', 'stachestack'), 'icon' => 'el-icon-font', 'fields' => apply_filters('stachestack_module_typography_options_modifier', array(array('title' => __('Base Font', 'stachestack'), 'desc' => __('The main font for your site.', 'stachestack'), 'id' => 'font_base', 'compiler' => false, 'units' => 'px', 'default' => array('font-family' => 'Arial, Helvetica, sans-serif', 'font-size' => '14px', 'google' => 'false', 'weight' => 'inherit', 'color' => '#333333', 'font-style' => 400, 'update_weekly' => true), 'preview' => array('text' => __('This is my preview text!', 'stachestack'), 'font-size' => '30px'), 'type' => 'typography', 'output' => 'body'), array('title' => __('H1 Font', 'stachestack'), 'desc' => __('The main font for your site.', 'stachestack'), 'id' => 'font_h1', 'compiler' => false, 'units' => '%', 'default' => array('font-family' => 'Arial, Helvetica, sans-serif', 'font-size' => '260%', 'color' => $settings['font_base']['color'], 'google' => 'false', 'font-style' => 400), 'preview' => array('text' => __('This is my preview text!', 'stachestack'), 'font-size' => '30px'), 'type' => 'typography', 'output' => 'h1, .h1', 'required' => array('options_mode', '=', array('advanced'))), array('id' => 'font_h2', 'title' => __('H2 Font', 'stachestack'), 'desc' => __('The main font for your site.', 'stachestack'), 'compiler' => false, 'units' => '%', 'default' => array('font-family' => 'Arial, Helvetica, sans-serif', 'font-size' => '215%', 'color' => $settings['font_base']['color'], 'google' => 'false', 'font-style' => 400), 'preview' => array('text' => __('This is my preview text!', 'stachestack'), 'font-size' => '30px'), 'type' => 'typography', 'output' => 'h2, .h2', 'required' => array('options_mode', '=', array('advanced'))), array('id' => 'font_h3', 'title' => __('H3 Font', 'stachestack'), 'desc' => __('The main font for your site.', 'stachestack'), 'compiler' => false, 'units' => '%', 'default' => array('font-family' => 'Arial, Helvetica, sans-serif', 'font-size' => '170%', 'color' => $settings['font_base']['color'], 'google' => 'false', 'font-style' => 400), 'preview' => array('text' => __('This is my preview text!', 'stachestack'), 'font-size' => '30px'), 'type' => 'typography', 'output' => 'h3, .h3', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('H4 Font', 'stachestack'), 'desc' => __('The main font for your site.', 'stachestack'), 'id' => 'font_h4', 'compiler' => false, 'units' => '%', 'default' => array('font-family' => 'Arial, Helvetica, sans-serif', 'font-size' => '125%', 'color' => $settings['font_base']['color'], 'google' => 'false', 'font-style' => 400), 'preview' => array('text' => __('This is my preview text!', 'stachestack'), 'font-size' => '30px'), 'type' => 'typography', 'output' => 'h4, .h4', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('H5 Font', 'stachestack'), 'desc' => __('The main font for your site.', 'stachestack'), 'id' => 'font_h5', 'compiler' => false, 'units' => '%', 'default' => array('font-family' => 'Arial, Helvetica, sans-serif', 'font-size' => '100%', 'color' => $settings['font_base']['color'], 'google' => 'false', 'font-style' => 400), 'preview' => array('text' => __('This is my preview text!', 'stachestack'), 'font-size' => '30px'), 'type' => 'typography', 'output' => 'h5, .h5', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('H6 Font', 'stachestack'), 'desc' => __('The main font for your site.', 'stachestack'), 'id' => 'font_h6', 'compiler' => false, 'units' => '%', 'default' => array('font-family' => 'Arial, Helvetica, sans-serif', 'font-size' => '85%', 'color' => $settings['font_base']['color'], 'google' => 'false', 'font-weight' => 400, 'font-style' => 'normal'), 'preview' => array('text' => __('This is my preview text!', 'stachestack'), 'font-size' => '30px'), 'type' => 'typography', 'output' => 'h6, .h6', 'required' => array('options_mode', '=', array('advanced'))))));
            // Social Settings
            $this->sections[] = array('title' => __('Social', 'stachestack'), 'icon' => 'el-icon-group', 'fields' => apply_filters('stachestack_module_socials_options_modifier', array(array('id' => 'social_sharing_help_1', 'title' => __('Social Sharing', 'stachestack'), 'type' => 'info'), array('title' => __('Button Text', 'stachestack'), 'desc' => __('Select the text for the social sharing button.', 'stachestack'), 'id' => 'social_sharing_text', 'default' => 'Share', 'type' => 'text'), array('title' => __('Button Location', 'stachestack'), 'desc' => __('Select between NONE, TOP, BOTTOM & BOTH. For archives, "BOTH" fallbacks to "BOTTOM" only.', 'stachestack'), 'id' => 'social_sharing_location', 'default' => 'top', 'type' => 'select', 'options' => array('none' => 'None', 'top' => 'Top', 'bottom' => 'Bottom', 'both' => 'Both')), array('title' => __('Button Styling', 'stachestack'), 'desc' => __('Select between standard Bootstrap\'s button classes', 'stachestack'), 'id' => 'social_sharing_button_class', 'default' => 'default', 'type' => 'select', 'options' => array('default' => 'Default', 'primary' => 'Primary', 'success' => 'Success', 'warning' => 'Warning', 'danger' => 'Danger')), array('title' => __('Show in Posts Archives', 'stachestack'), 'desc' => __('Show the sharing button in posts archives.', 'stachestack'), 'id' => 'social_sharing_archives', 'default' => '', 'type' => 'switch'), array('title' => __('Show in Single Post', 'stachestack'), 'desc' => __('Show the sharing button in single post.', 'stachestack'), 'id' => 'social_sharing_single_post', 'default' => '1', 'type' => 'switch'), array('title' => __('Show in Single Page', 'stachestack'), 'desc' => __('Show the sharing button in single page.', 'stachestack'), 'id' => 'social_sharing_single_page', 'default' => '1', 'type' => 'switch'), array('id' => 'share_networks', 'type' => 'checkbox', 'title' => __('Social Share Networks', 'stachestack'), 'desc' => __('Select the Social Networks you want to enable for social shares', 'stachestack'), 'options' => array('fb' => __('Facebook', 'stachestack'), 'gp' => __('Google+', 'stachestack'), 'li' => __('LinkedIn', 'stachestack'), 'pi' => __('Pinterest', 'stachestack'), 'rd' => __('Reddit', 'stachestack'), 'tu' => __('Tumblr', 'stachestack'), 'tw' => __('Twitter', 'stachestack'), 'em' => __('Email', 'stachestack'))))));
            // Social Settings
            $this->sections[] = array('title' => __('Social Links', 'stachestack'), 'icon' => 'el-icon-chevron-right', 'subsection' => true, 'fields' => apply_filters('stachestack_module_social_links_options_modifier', array(array('id' => 'social_sharing_help_3', 'title' => __('Social Links used in Menus && Footer', 'stachestack'), 'type' => 'info'), array('title' => __('Blogger', 'stachestack'), 'desc' => __('Provide the link you desire and the Blogger icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'blogger_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('DeviantART', 'stachestack'), 'desc' => __('Provide the link you desire and the DeviantART icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'deviantart_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('Digg', 'stachestack'), 'desc' => __('Provide the link you desire and the Digg icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'digg_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('Dribbble', 'stachestack'), 'desc' => __('Provide the link you desire and the Dribbble icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'dribbble_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('Facebook', 'stachestack'), 'desc' => __('Provide the link you desire and the Facebook icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'facebook_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('Flickr', 'stachestack'), 'desc' => __('Provide the link you desire and the Flickr icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'flickr_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('GitHub', 'stachestack'), 'desc' => __('Provide the link you desire and the GitHub icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'github_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('Google+', 'stachestack'), 'desc' => __('Provide the link you desire and the Google+ icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'google_plus_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('Instagram', 'stachestack'), 'desc' => __('Provide the link you desire and the Instagram icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'instagram_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('LinkedIn', 'stachestack'), 'desc' => __('Provide the link you desire and the LinkedIn icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'linkedin_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('MySpace', 'stachestack'), 'desc' => __('Provide the link you desire and the MySpace icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'myspace_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('Pinterest', 'stachestack'), 'desc' => __('Provide the link you desire and the Pinterest icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'pinterest_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('Reddit', 'stachestack'), 'desc' => __('Provide the link you desire and the Reddit icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'reddit_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('RSS', 'stachestack'), 'desc' => __('Provide the link you desire and the RSS icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'rss_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('Skype', 'stachestack'), 'desc' => __('Provide the link you desire and the Skype icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'skype_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('SoundCloud', 'stachestack'), 'desc' => __('Provide the link you desire and the SoundCloud icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'soundcloud_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('Tumblr', 'stachestack'), 'desc' => __('Provide the link you desire and the Tumblr icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'tumblr_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('Twitter', 'stachestack'), 'desc' => __('Provide the link you desire and the Twitter icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'twitter_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => __('Vimeo', 'stachestack'), 'desc' => __('Provide the link you desire and the Vimeo icon will appear. To remove it, just leave it blank.', 'stachestack'), 'id' => 'vimeo_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => 'Vkontakte', 'desc' => 'Provide the link you desire and the Vkontakte icon will appear. To remove it, just leave it blank.', 'id' => 'vkontakte_link', 'validate' => 'url', 'default' => '', 'type' => 'text'), array('title' => 'YouTube Link', 'desc' => 'Provide the link you desire and the YouTube icon will appear. To remove it, just leave it blank.', 'id' => 'youtube_link', 'validate' => 'url', 'default' => '', 'type' => 'text'))));
            // Advanced Settings
            $this->sections[] = array('title' => __('Advanced', 'stachestack'), 'icon' => 'el-icon-cogs', 'fields' => apply_filters('stachestack_module_advanced_options_modifier', array(array('title' => __('Enable Retina mode', 'stachestack'), 'desc' => __('By enabling your site\'s featured images will be retina ready. Requires images to be uploaded at 2x the typical size desired. Default: On', 'stachestack'), 'id' => 'retina_toggle', 'default' => 1, 'type' => 'switch'), array('title' => __('Google Analytics ID', 'stachestack'), 'desc' => __('Paste your Google Analytics ID here to enable analytics tracking. Only Universal Analytics properties. Your user ID should be in the form of UA-XXXXX-Y.', 'stachestack'), 'id' => 'analytics_id', 'default' => '', 'type' => 'text'), array('title' => 'Border-Radius and Padding Base', 'id' => 'help2', 'desc' => __('The following settings affect various areas of your site, most notably buttons.', 'stachestack'), 'type' => 'info'), array('title' => __('Border-Radius', 'stachestack'), 'desc' => __('You can adjust the corner-radius of all elements in your site here. This will affect buttons, navbars, widgets and many more. Default: 4', 'stachestack'), 'id' => 'general_border_radius', 'default' => 4, 'min' => 0, 'step' => 1, 'max' => 50, 'advanced' => true, 'compiler' => true, 'type' => 'slider'), array('title' => __('Padding Base', 'stachestack'), 'desc' => __('You can adjust the padding base. This affects buttons size and lots of other cool stuff too! Default: 8', 'stachestack'), 'id' => 'padding_base', 'default' => 6, 'min' => 0, 'step' => 1, 'max' => 20, 'advanced' => true, 'compiler' => true, 'type' => 'slider'), array('title' => __('Root Relative URLs', 'stachestack'), 'desc' => __('Return URLs such as <em>/assets/css/style.css</em> instead of <em>http://example.com/assets/css/style.css</em>. Default: ON', 'stachestack'), 'id' => 'root_relative_urls', 'default' => 0, 'type' => 'switch', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Enable Nice Search', 'stachestack'), 'desc' => __('Redirects /?s=query to /search/query/, convert %20 to +. Default: ON', 'stachestack'), 'id' => 'nice_search', 'default' => 1, 'type' => 'switch', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Custom CSS', 'stachestack'), 'desc' => __('You can write your custom CSS here. This code will appear in a script tag appended in the header section of the page.', 'stachestack'), 'id' => 'user_css', 'default' => '', 'type' => 'ace_editor', 'mode' => 'css', 'theme' => 'monokai', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Custom LESS', 'stachestack'), 'desc' => __('You can write your custom LESS here. This code will be compiled with the other LESS files of the theme and be appended to the header.', 'stachestack'), 'id' => 'user_less', 'default' => '', 'type' => 'ace_editor', 'mode' => 'less', 'theme' => 'monokai', 'compiler' => true, 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Custom JS', 'stachestack'), 'desc' => __('You can write your custom JavaScript/jQuery here. The code will be included in a script tag appended to the bottom of the page.', 'stachestack'), 'id' => 'user_js', 'default' => '', 'type' => 'ace_editor', 'mode' => 'javascript', 'theme' => 'monokai', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Minimize CSS', 'stachestack'), 'desc' => __('Minimize the genearated CSS. This should be ON for production sites. Default: OFF.', 'stachestack'), 'id' => 'minimize_css', 'default' => 1, 'compiler' => true, 'type' => 'switch', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Toggle adminbar On/Off', 'stachestack'), 'desc' => __('Turn the admin bar On or Off on the frontend. Default: Off.', 'stachestack'), 'id' => 'advanced_wordpress_disable_admin_bar_toggle', 'default' => 1, 'type' => 'switch', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Use Google CDN for jQuery', 'stachestack'), 'desc' => '', 'id' => 'jquery_cdn_toggler', 'default' => 0, 'type' => 'switch', 'required' => array('options_mode', '=', array('advanced'))), array('title' => __('Use Title attribute in menus', 'stachestack'), 'desc' => 'By enabling this option, the title attribute in menu items outputs the actual title attribute. The description field is in use by the Elusive icons in this case.', 'id' => 'menu_title_attribute', 'default' => 0, 'type' => 'switch', 'required' => array('options_mode', '=', array('advanced'))))));
        }
Ejemplo n.º 6
0
/**
 * This function takes care of copying theme mods as options in our array,
 * cleaning up the db from our theme-mods and then triggering the compiler.
 */
function stachestack_customizer_copy_options()
{
    global $ss_settings;
    $sections = stachestack_customizer_fields();
    foreach ($sections as $section) {
        $fields = $section['fields'];
        foreach ($fields as $field => $args) {
            $value = get_theme_mod($field);
            // Backgrounds are an array of options, so we have to include each one of them separately
            if ('background' == $args['type']) {
                // If we're changing the 'body_bg' setting, save the option to 'html_bg' as well.
                if ('body_bg' == $field) {
                    $ss_settings['html_bg']['background-color'] = $value;
                    // Use lumosity difference to find a text color with great readability
                    if (StacheStack_Color::lumosity_difference($value, '#ffffff') > 5) {
                        $text = '#ffffff';
                    } elseif (StacheStack_Color::lumosity_difference($value, '#222222') > 5) {
                        $text = '#222222';
                    }
                    $ss_settings['font_base']['color'] = $text;
                    $ss_settings['font_h1']['color'] = $text;
                    $ss_settings['font_h2']['color'] = $text;
                    $ss_settings['font_h3']['color'] = $text;
                    $ss_settings['font_h4']['color'] = $text;
                    $ss_settings['font_h5']['color'] = $text;
                    $ss_settings['font_h6']['color'] = $text;
                }
                // Copy the theme_mod to our settings array
                $ss_settings[$field]['background-color'] = $value;
                // Clean up theme mods
                remove_theme_mod($field);
            } elseif ('font' == $args['type']) {
                // Copy the theme_mod to our settings array
                $ss_settings[$field]['font-family'] = $value;
                // Clean up theme mods
                remove_theme_mod($field);
            } else {
                // Copy the theme_mod to our settings array
                $ss_settings[$field] = $value;
                // Clean up theme mods
                remove_theme_mod($field);
            }
        }
    }
    update_option(STACHESTACK_OPT_NAME, $ss_settings);
    $compiler = new StacheStack_Less_PHP();
    add_action('customize_save_after', array($compiler, 'makecss'), 77);
}
        /**
         * Variables to use for the compiler.
         * These override the default Bootstrap Variables.
         */
        public function styles()
        {
            global $ss_settings;
            /**
             * BACKGROUND
             */
            if (isset($ss_settings['body_bg']['background-color']) && !empty($ss_settings['body_bg']['background-color'])) {
                $bg = $ss_settings['body_bg']['background-color'];
            } else {
                $bg = '#ffffff';
            }
            $body_bg = '#' . str_replace('#', '', StacheStack_Color::sanitize_hex($bg));
            // Calculate the gray shadows based on the body background.
            // We basically create 2 "presets": light and dark.
            if (StacheStack_Color::get_brightness($body_bg) > 80) {
                $gray_darker = 'lighten(#000, 13.5%)';
                $gray_dark = 'lighten(#000, 20%)';
                $gray = 'lighten(#000, 33.5%)';
                $gray_light = 'lighten(#000, 60%)';
                $gray_lighter = 'lighten(#000, 93.5%)';
            } else {
                $gray_darker = 'darken(#fff, 13.5%)';
                $gray_dark = 'darken(#fff, 20%)';
                $gray = 'darken(#fff, 33.5%)';
                $gray_light = 'darken(#fff, 60%)';
                $gray_lighter = 'darken(#fff, 93.5%)';
            }
            $bg_brightness = StacheStack_Color::get_brightness($body_bg);
            $table_bg_accent = $bg_brightness > 50 ? 'darken(@body-bg, 2.5%)' : 'lighten(@body-bg, 2.5%)';
            $table_bg_hover = $bg_brightness > 50 ? 'darken(@body-bg, 4%)' : 'lighten(@body-bg, 4%)';
            $table_border_color = $bg_brightness > 50 ? 'darken(@body-bg, 13.35%)' : 'lighten(@body-bg, 13.35%)';
            $input_border = $bg_brightness > 50 ? 'darken(@body-bg, 20%)' : 'lighten(@body-bg, 20%)';
            $dropdown_divider_top = $bg_brightness > 50 ? 'darken(@body-bg, 10.2%)' : 'lighten(@body-bg, 10.2%)';
            $variables = '';
            // Calculate grays
            if (isset($ss_settings['body_bg']) && !empty($ss_settings['body_bg'])) {
                $variables .= '@gray-darker:            ' . $gray_darker . ';';
                $variables .= '@gray-dark:              ' . $gray_dark . ';';
                $variables .= '@gray:                   ' . $gray . ';';
                $variables .= '@gray-light:             ' . $gray_light . ';';
                $variables .= '@gray-lighter:           ' . $gray_lighter . ';';
                // The below are declared as #fff in the default variables.
                $variables .= '@body-bg:                     ' . $body_bg . ';';
                $variables .= '@component-active-color:          @body-bg;';
                $variables .= '@btn-default-bg:                  @body-bg;';
                $variables .= '@dropdown-bg:                     @body-bg;';
                $variables .= '@pagination-bg:                   @body-bg;';
                $variables .= '@progress-bar-color:              @body-bg;';
                $variables .= '@list-group-bg:                   @body-bg;';
                $variables .= '@panel-bg:                        @body-bg;';
                $variables .= '@panel-primary-text:              @body-bg;';
                $variables .= '@pagination-active-color:         @body-bg;';
                $variables .= '@pagination-disabled-bg:          @body-bg;';
                $variables .= '@tooltip-color:                   @body-bg;';
                $variables .= '@popover-bg:                      @body-bg;';
                $variables .= '@popover-arrow-color:             @body-bg;';
                $variables .= '@label-color:                     @body-bg;';
                $variables .= '@label-link-hover-color:          @body-bg;';
                $variables .= '@modal-content-bg:                @body-bg;';
                $variables .= '@badge-color:                     @body-bg;';
                $variables .= '@badge-link-hover-color:          @body-bg;';
                $variables .= '@badge-active-bg:                 @body-bg;';
                $variables .= '@carousel-control-color:          @body-bg;';
                $variables .= '@carousel-indicator-active-bg:    @body-bg;';
                $variables .= '@carousel-indicator-border-color: @body-bg;';
                $variables .= '@carousel-caption-color:          @body-bg;';
                $variables .= '@close-text-shadow:       0 1px 0 @body-bg;';
                $variables .= '@input-bg:                        @body-bg;';
                $variables .= '@nav-open-link-hover-color:       @body-bg;';
                // These are #ccc
                // We re-calculate the color based on the gray values above.
                $variables .= '@btn-default-border:            mix(@gray-light, @gray-lighter);';
                $variables .= '@input-border:                  mix(@gray-light, @gray-lighter);';
                $variables .= '@popover-fallback-border-color: mix(@gray-light, @gray-lighter);';
                $variables .= '@breadcrumb-color:              mix(@gray-light, @gray-lighter);';
                $variables .= '@dropdown-fallback-border:      mix(@gray-light, @gray-lighter);';
                $variables .= '@table-bg-accent:    ' . $table_bg_accent . ';';
                $variables .= '@table-bg-hover:     ' . $table_bg_hover . ';';
                $variables .= '@table-border-color: ' . $table_border_color . ';';
                $variables .= '@legend-border-color: @gray-lighter;';
                $variables .= '@dropdown-divider-bg: @gray-lighter;';
                $variables .= '@dropdown-link-hover-bg: @table-bg-hover;';
                $variables .= '@dropdown-caret-color:   @gray-darker;';
                $variables .= '@nav-tabs-border-color:                   @table-border-color;';
                $variables .= '@nav-tabs-active-link-hover-border-color: @table-border-color;';
                $variables .= '@nav-tabs-justified-link-border-color:    @table-border-color;';
                $variables .= '@pagination-border:          @table-border-color;';
                $variables .= '@pagination-hover-border:    @table-border-color;';
                $variables .= '@pagination-disabled-border: @table-border-color;';
                $variables .= '@tooltip-bg: darken(@gray-darker, 15%);';
                $variables .= '@popover-arrow-outer-fallback-color: @gray-light;';
                $variables .= '@modal-content-fallback-border-color: @gray-light;';
                $variables .= '@modal-backdrop-bg:                   darken(@gray-darker, 15%);';
                $variables .= '@modal-header-border-color:           lighten(@gray-lighter, 12%);';
                $variables .= '@progress-bg: ' . $table_bg_hover . ';';
                $variables .= '@list-group-border:   ' . $table_border_color . ';';
                $variables .= '@list-group-hover-bg: ' . $table_bg_hover . ';';
                $variables .= '@list-group-link-color:         @gray;';
                $variables .= '@list-group-link-heading-color: @gray-dark;';
                $variables .= '@panel-inner-border:       @list-group-border;';
                $variables .= '@panel-footer-bg:          @list-group-hover-bg;';
                $variables .= '@panel-default-border:     @table-border-color;';
                $variables .= '@panel-default-heading-bg: @panel-footer-bg;';
                $variables .= '@thumbnail-border: @list-group-border;';
                $variables .= '@well-bg: @table-bg-hover;';
                $variables .= '@breadcrumb-bg: @table-bg-hover;';
                $variables .= '@close-color: darken(@gray-darker, 15%);';
            }
            /**
             * LAYOUT
             */
            if (isset($ss_settings['screen_tablet']) && !empty($ss_settings['screen_tablet'])) {
                $screen_sm = filter_var($ss_settings['screen_tablet'], FILTER_SANITIZE_NUMBER_INT);
            }
            if (isset($ss_settings['screen_desktop']) && !empty($ss_settings['screen_desktop'])) {
                $screen_md = filter_var($ss_settings['screen_desktop'], FILTER_SANITIZE_NUMBER_INT);
            }
            if (isset($ss_settings['screen_large_desktop']) && !empty($ss_settings['screen_large_desktop'])) {
                $screen_lg = filter_var($ss_settings['screen_large_desktop'], FILTER_SANITIZE_NUMBER_INT);
            }
            if (isset($ss_settings['layout_gutter']) && !empty($ss_settings['layout_gutter'])) {
                $gutter = filter_var($ss_settings['layout_gutter'], FILTER_SANITIZE_NUMBER_INT);
                $gutter = $gutter < 2 ? 2 : $gutter;
            }
            if (isset($ss_settings['site_style']) && !empty($ss_settings['site_style'])) {
                $site_style = $ss_settings['site_style'];
            }
            if (isset($site_style) && !empty($site_style)) {
                $screen_xs = $site_style == 'static' ? '50px' : '480px';
                $screen_sm = $site_style == 'static' ? '50px' : $screen_sm;
                $screen_md = $site_style == 'static' ? '50px' : $screen_md;
            }
            if (isset($screen_sm) && !empty($screen_sm)) {
                $variables .= '@screen-sm: ' . $screen_sm . 'px;';
            }
            if (isset($screen_md) && !empty($screen_md)) {
                $variables .= '@screen-md: ' . $screen_md . 'px;';
            }
            if (isset($screen_lg) && !empty($screen_lg)) {
                $variables .= '@screen-lg: ' . $screen_lg . 'px;';
            }
            if (isset($gutter) && !empty($gutter)) {
                $variables .= '@grid-gutter-width: ' . $gutter . 'px;';
            }
            $variables .= '@jumbotron-padding: @grid-gutter-width;';
            if (isset($gutter) && !empty($gutter)) {
                $variables .= '@modal-inner-padding: ' . round($gutter * 20 / 30) . 'px;';
                $variables .= '@modal-title-padding: ' . round($gutter * 15 / 30) . 'px;';
                $variables .= '@modal-lg: ' . round($screen_md - 3 * $gutter) . 'px;';
                $variables .= '@modal-md: ' . round($screen_sm - 3 * $gutter) . 'px;';
                $variables .= '@modal-sm: ' . round($screen_xs - 3 * $gutter) . 'px;';
            }
            $variables .= '@panel-body-padding: @modal-title-padding;';
            if (isset($gutter) && !empty($gutter)) {
                $variables .= '@container-tablet:        ' . ($screen_sm - $gutter / 2) . 'px;';
                $variables .= '@container-desktop:       ' . ($screen_md - $gutter / 2) . 'px;';
                $variables .= '@container-large-desktop: ' . ($screen_lg - $gutter) . 'px;';
            }
            if (isset($gutter) && !empty($gutter) && $site_style == 'static') {
                // disable responsiveness
                $variables .= '@screen-xs-max: 0 !important;
				.container { max-width: none !important; width: @container-large-desktop; }
				html { overflow-x: auto !important; }';
            }
            /**
             * BRANDING
             */
            $brand_primary = '#' . str_replace('#', '', StacheStack_Color::sanitize_hex($ss_settings['color_brand_primary']));
            $brand_success = '#' . str_replace('#', '', StacheStack_Color::sanitize_hex($ss_settings['color_brand_success']));
            $brand_warning = '#' . str_replace('#', '', StacheStack_Color::sanitize_hex($ss_settings['color_brand_warning']));
            $brand_danger = '#' . str_replace('#', '', StacheStack_Color::sanitize_hex($ss_settings['color_brand_danger']));
            $brand_info = '#' . str_replace('#', '', StacheStack_Color::sanitize_hex($ss_settings['color_brand_info']));
            $link_hover_color = StacheStack_Color::get_brightness($brand_primary) > 50 ? 'darken(@link-color, 15%)' : 'lighten(@link-color, 15%)';
            $brand_primary_brightness = StacheStack_Color::get_brightness($brand_primary);
            $brand_success_brightness = StacheStack_Color::get_brightness($brand_success);
            $brand_warning_brightness = StacheStack_Color::get_brightness($brand_warning);
            $brand_danger_brightness = StacheStack_Color::get_brightness($brand_danger);
            $brand_info_brightness = StacheStack_Color::get_brightness($brand_info);
            // Button text colors
            $btn_primary_color = $brand_primary_brightness < 195 ? '#fff' : '333';
            $btn_success_color = $brand_success_brightness < 195 ? '#fff' : '333';
            $btn_warning_color = $brand_warning_brightness < 195 ? '#fff' : '333';
            $btn_danger_color = $brand_danger_brightness < 195 ? '#fff' : '333';
            $btn_info_color = $brand_info_brightness < 195 ? '#fff' : '333';
            // Button borders
            $btn_primary_border = $brand_primary_brightness < 195 ? 'darken(@btn-primary-bg, 5%)' : 'lighten(@btn-primary-bg, 5%)';
            $btn_success_border = $brand_success_brightness < 195 ? 'darken(@btn-success-bg, 5%)' : 'lighten(@btn-success-bg, 5%)';
            $btn_warning_border = $brand_warning_brightness < 195 ? 'darken(@btn-warning-bg, 5%)' : 'lighten(@btn-warning-bg, 5%)';
            $btn_danger_border = $brand_danger_brightness < 195 ? 'darken(@btn-danger-bg, 5%)' : 'lighten(@btn-danger-bg, 5%)';
            $btn_info_border = $brand_info_brightness < 195 ? 'darken(@btn-info-bg, 5%)' : 'lighten(@btn-info-bg, 5%)';
            $input_border_focus = StacheStack_Color::get_brightness($brand_primary) < 195 ? 'lighten(@brand-primary, 10%)' : 'darken(@brand-primary, 10%)';
            $navbar_border = StacheStack_Color::get_brightness($brand_primary) < 50 ? 'lighten(@navbar-default-bg, 6.5%)' : 'darken(@navbar-default-bg, 6.5%)';
            // Branding colors
            if (isset($brand_primary) && !empty($brand_primary)) {
                $variables .= '@brand-primary: ' . $brand_primary . ';';
            }
            if (isset($brand_success) && !empty($brand_success)) {
                $variables .= '@brand-success: ' . $brand_success . ';';
            }
            if (isset($brand_info) && !empty($brand_info)) {
                $variables .= '@brand-info:    ' . $brand_info . ';';
            }
            if (isset($brand_warning) && !empty($brand_warning)) {
                $variables .= '@brand-warning: ' . $brand_warning . ';';
            }
            if (isset($brand_danger) && !empty($brand_danger)) {
                $variables .= '@brand-danger:  ' . $brand_danger . ';';
            }
            // Link-hover
            if (isset($link_hover_color) && !empty($link_hover_color)) {
                $variables .= '@link-hover-color: ' . $link_hover_color . ';';
            }
            $variables .= '@btn-default-color:  @gray-dark;';
            if (isset($btn_primary_color) && !empty($btn_primary_color)) {
                $variables .= '@btn-primary-color:  ' . $btn_primary_color . ';';
            }
            if (isset($btn_primary_border) && !empty($btn_primary_border)) {
                $variables .= '@btn-primary-border: ' . $btn_primary_border . ';';
            }
            if (isset($btn_success_color) && !empty($btn_success_color)) {
                $variables .= '@btn-success-color:  ' . $btn_success_color . ';';
            }
            if (isset($btn_success_border) && !empty($btn_success_border)) {
                $variables .= '@btn-success-border: ' . $btn_success_border . ';';
            }
            if (isset($btn_info_color) && !empty($btn_info_color)) {
                $variables .= '@btn-info-color:     ' . $btn_info_color . ';';
            }
            if (isset($btn_info_border) && !empty($btn_info_border)) {
                $variables .= '@btn-info-border:    ' . $btn_info_border . ';';
            }
            if (isset($btn_warning_color) && !empty($btn_warning_color)) {
                $variables .= '@btn-warning-color:  ' . $btn_warning_color . ';';
            }
            if (isset($btn_warning_border) && !empty($btn_warning_border)) {
                $variables .= '@btn-warning-border: ' . $btn_warning_border . ';';
            }
            if (isset($btn_danger_color) && !empty($btn_danger_color)) {
                $variables .= '@btn-danger-color:   ' . $btn_danger_color . ';';
            }
            if (isset($btn_danger_border) && !empty($btn_danger_border)) {
                $variables .= '@btn-danger-border:  ' . $btn_danger_border . ';';
            }
            if (isset($input_border_focus) && !empty($input_border_focus)) {
                $variables .= '@input-border-focus: ' . $input_border_focus . ';';
            }
            $variables .= '@state-success-text: mix(@gray-darker, @brand-success, 20%);';
            $variables .= '@state-success-bg:   mix(@body-bg, @brand-success, 50%);';
            $variables .= '@state-info-text:    mix(@gray-darker, @brand-info, 20%);';
            $variables .= '@state-info-bg:      mix(@body-bg, @brand-info, 50%);';
            $variables .= '@state-warning-text: mix(@gray-darker, @brand-warning, 20%);';
            $variables .= '@state-warning-bg:   mix(@body-bg, @brand-warning, 50%);';
            $variables .= '@state-danger-text:  mix(@gray-darker, @brand-danger, 20%);';
            $variables .= '@state-danger-bg:    mix(@body-bg, @brand-danger, 50%);';
            /**
             * JUMBOTRON
             */
            $font_jumbotron = stachestack_process_font($ss_settings['font_jumbotron']);
            $jumbotron_bg = $ss_settings['jumbo_bg'];
            $jumbotron_bg = '#' . str_replace('#', '', StacheStack_Color::sanitize_hex($jumbotron_bg['background-color']));
            $jumbotron_text_color = '#' . str_replace('#', '', $font_jumbotron['color']);
            if ($ss_settings['font_jumbotron_heading_custom'] == 1) {
                $font_jumbotron_headers = stachestack_process_font($ss_settings['font_jumbotron_headers']);
                $font_jumbotron_headers_face = $font_jumbotron_headers['font-family'];
                $font_jumbotron_headers_weight = $font_jumbotron_headers['font-weight'];
                $font_jumbotron_headers_style = $font_jumbotron_headers['font-style'];
                $jumbotron_headers_text_color = '#' . str_replace('#', '', StacheStack_Color::sanitize_hex($font_jumbotron_headers['color']));
            } else {
                $font_jumbotron_headers_face = $font_jumbotron['font-family'];
                $font_jumbotron_headers_weight = $font_jumbotron['font-weight'];
                $font_jumbotron_headers_style = $font_jumbotron['font-style'];
                $jumbotron_headers_text_color = $jumbotron_text_color;
            }
            if (isset($jumbotron_text_color) && !empty($jumbotron_text_color)) {
                $variables .= '@jumbotron-color:         ' . $jumbotron_text_color . ';';
            }
            if (isset($jumbotron_bg) && !empty($jumbotron_bg)) {
                $variables .= '@jumbotron-bg:            ' . $jumbotron_bg . ';';
            }
            if (isset($jumbotron_headers_text_color) && !empty($jumbotron_headers_text_color)) {
                $variables .= '@jumbotron-heading-color: ' . $jumbotron_headers_text_color . ';';
            }
            if (isset($font_jumbotron['font-size']) && !empty($font_jumbotron['font-size'])) {
                $variables .= '@jumbotron-font-size:     ' . $font_jumbotron['font-size'] . 'px;';
            }
            if (isset($ss_settings['padding_base']) && !empty($ss_settings['padding_base'])) {
                $padding_base = intval($ss_settings['padding_base']);
            } else {
                $padding_base = 6;
            }
            if (isset($ss_settings['general_border_radius']) && !empty($ss_settings['general_border_radius'])) {
                $border_radius = filter_var($ss_settings['general_border_radius'], FILTER_SANITIZE_NUMBER_INT);
                $border_radius = strlen($border_radius) < 1 ? 0 : $border_radius;
            } else {
                $border_radius = 0;
            }
            $variables .= '@padding-base-vertical:    ' . round($padding_base * 6 / 6) . 'px;';
            $variables .= '@padding-base-horizontal:  ' . round($padding_base * 12 / 6) . 'px;';
            $variables .= '@padding-large-vertical:   ' . round($padding_base * 10 / 6) . 'px;';
            $variables .= '@padding-large-horizontal: ' . round($padding_base * 16 / 6) . 'px;';
            $variables .= '@padding-small-vertical:   ' . round($padding_base * 5 / 6) . 'px;';
            $variables .= '@padding-small-horizontal: @padding-large-vertical;';
            $variables .= '@padding-xs-vertical:      ' . round($padding_base * 1 / 6) . 'px;';
            $variables .= '@padding-xs-horizontal:    @padding-small-vertical;';
            $variables .= '@border-radius-base:  ' . round($border_radius * 4 / 4) . 'px;';
            $variables .= '@border-radius-large: ' . round($border_radius * 6 / 4) . 'px;';
            $variables .= '@border-radius-small: ' . round($border_radius * 3 / 4) . 'px;';
            $variables .= '@pager-border-radius: ' . round($border_radius * 15 / 4) . 'px;';
            $variables .= '@tooltip-arrow-width: @padding-small-vertical;';
            $variables .= '@popover-arrow-width: (@tooltip-arrow-width * 2);';
            $variables .= '@thumbnail-padding:         ' . round($padding_base * 4 / 6) . 'px;';
            $variables .= '@thumbnail-caption-padding: ' . round($padding_base * 9 / 6) . 'px;';
            $variables .= '@badge-border-radius: ' . round($border_radius * 10 / 4) . 'px;';
            $variables .= '@breadcrumb-padding-vertical:   ' . round($padding_base * 8 / 6) . 'px;';
            $variables .= '@breadcrumb-padding-horizontal: ' . round($padding_base * 15 / 6) . 'px;';
            // StacheStack-specific variables
            // --------------------------------------------------
            if (isset($font_jumbotron['font-weight']) && !empty($font_jumbotron['font-weight'])) {
                $variables .= '@jumbotron-font-weight:       ' . $font_jumbotron['font-weight'] . ';';
            }
            if (isset($font_jumbotron['font-style']) && !empty($font_jumbotron['font-style'])) {
                $variables .= '@jumbotron-font-style:        ' . $font_jumbotron['font-style'] . ';';
            }
            if (isset($font_jumbotron['font-family']) && !empty($font_jumbotron['font-family'])) {
                $variables .= '@jumbotron-font-family:       ' . $font_jumbotron['font-family'] . ';';
            } else {
                $variables .= '@jumbotron-font-family: inherit;';
            }
            if (isset($font_jumbotron_headers_weight) && !empty($font_jumbotron_headers_weight)) {
                $variables .= '@jumbotron-headers-font-weight:       ' . $font_jumbotron_headers_weight . ';';
            } else {
                $variables .= '@jumbotron-headers-font-weight: inherit;';
            }
            if (isset($font_jumbotron_headers_style) && !empty($font_jumbotron_headers_style)) {
                $variables .= '@jumbotron-headers-font-style:        ' . $font_jumbotron_headers_style . ';';
            } else {
                $variables .= '@jumbotron-headers-font-style: inherit;';
            }
            if (isset($font_jumbotron_headers_face) && !empty($font_jumbotron_headers_face)) {
                $variables .= '@jumbotron-headers-font-family:       ' . $font_jumbotron_headers_face . ';';
            } else {
                $variables .= '@jumbotron-headers-font-family: inherit;';
            }
            /**
             * MENUS
             */
            $font_brand = stachestack_process_font($ss_settings['font_brand']);
            $font_navbar = stachestack_process_font($ss_settings['font_navbar']);
            $navbar_bg = '#' . str_replace('#', '', StacheStack_Color::sanitize_hex($ss_settings['navbar_bg']));
            $navbar_height = filter_var($ss_settings['navbar_height'], FILTER_SANITIZE_NUMBER_INT);
            $navbar_text_color = '#' . str_replace('#', '', $font_navbar['color']);
            $brand_text_color = '#' . str_replace('#', '', $font_brand['color']);
            $navbar_border = StacheStack_Color::get_brightness($navbar_bg) < 50 ? 'lighten(@navbar-default-bg, 6.5%)' : 'darken(@navbar-default-bg, 6.5%)';
            $gfb = $ss_settings['grid_float_breakpoint'];
            if (StacheStack_Color::get_brightness($navbar_bg) < 165) {
                $navbar_link_hover_color = 'darken(@navbar-default-color, 26.5%)';
                $navbar_link_active_bg = 'darken(@navbar-default-bg, 6.5%)';
                $navbar_link_disabled_color = 'darken(@navbar-default-bg, 6.5%)';
                $navbar_brand_hover_color = 'darken(@navbar-default-brand-color, 10%)';
            } else {
                $navbar_link_hover_color = 'lighten(@navbar-default-color, 26.5%)';
                $navbar_link_active_bg = 'lighten(@navbar-default-bg, 6.5%)';
                $navbar_link_disabled_color = 'lighten(@navbar-default-bg, 6.5%)';
                $navbar_brand_hover_color = 'lighten(@navbar-default-brand-color, 10%)';
            }
            $grid_float_breakpoint = isset($gfb) ? $gfb : '@screen-sm-min';
            $grid_float_breakpoint = $gfb == 'min' ? '10px' : $grid_float_breakpoint;
            $grid_float_breakpoint = $gfb == 'screen_xs_min' ? '@screen-xs-min' : $grid_float_breakpoint;
            $grid_float_breakpoint = $gfb == 'screen_sm_min' ? '@screen-sm-min' : $grid_float_breakpoint;
            $grid_float_breakpoint = $gfb == 'screen_md_min' ? '@screen-md-min' : $grid_float_breakpoint;
            $grid_float_breakpoint = $gfb == 'screen_lg_min' ? '@screen-lg-min' : $grid_float_breakpoint;
            $grid_float_breakpoint = $gfb == 'max' ? '9999px' : $grid_float_breakpoint;
            $grid_float_breakpoint = $gfb == 'screen-lg-min' ? '0 !important' : $grid_float_breakpoint;
            if (isset($navbar_height) && !empty($navbar_height)) {
                $variables .= '@navbar-height:         ' . $navbar_height . 'px;';
            }
            if (isset($navbar_text_color) && !empty($navbar_text_color)) {
                $variables .= '@navbar-default-color:  ' . $navbar_text_color . ';';
            }
            if (isset($navbar_bg) && !empty($navbar_bg)) {
                $variables .= '@navbar-default-bg:     ' . $navbar_bg . ';';
            }
            if (isset($navbar_border) && !empty($navbar_border)) {
                $variables .= '@navbar-default-border: ' . $navbar_border . ';';
            }
            $variables .= '@navbar-default-link-color:          @navbar-default-color;';
            if (isset($navbar_link_hover_color) && !empty($navbar_link_hover_color)) {
                $variables .= '@navbar-default-link-hover-color:    ' . $navbar_link_hover_color . ';';
            }
            $variables .= '@navbar-default-link-active-color:   mix(@navbar-default-color, @navbar-default-link-hover-color, 50%);';
            if (isset($navbar_link_active_bg) && !empty($navbar_link_active_bg)) {
                $variables .= '@navbar-default-link-active-bg:      ' . $navbar_link_active_bg . ';';
            }
            if (isset($navbar_link_disabled_color) && !empty($navbar_link_disabled_color)) {
                $variables .= '@navbar-default-link-disabled-color: ' . $navbar_link_disabled_color . ';';
            }
            $variables .= '@navbar-default-brand-color:         @navbar-default-link-color;';
            if (isset($navbar_brand_hover_color) && !empty($navbar_brand_hover_color)) {
                $variables .= '@navbar-default-brand-hover-color:   ' . $navbar_brand_hover_color . ';';
            }
            if (isset($navbar_border) && !empty($navbar_border)) {
                $variables .= '@navbar-default-toggle-hover-bg:     ' . $navbar_border . ';';
            }
            if (isset($navbar_text_color) && !empty($navbar_text_color)) {
                $variables .= '@navbar-default-toggle-icon-bar-bg:  ' . $navbar_text_color . ';';
            }
            if (isset($navbar_border) && !empty($navbar_border)) {
                $variables .= '@navbar-default-toggle-border-color: ' . $navbar_border . ';';
            }
            // StacheStack-specific variables
            // --------------------------------------------------
            if (isset($font_navbar) && !empty($font_navbar)) {
                $variables .= '@navbar-font-size:        ' . $font_navbar['font-size'] . 'px;';
                $variables .= '@navbar-font-weight:      ' . $font_navbar['font-weight'] . ';';
                $variables .= '@navbar-font-style:       ' . $font_navbar['font-style'] . ';';
                $variables .= '@navbar-font-family:      ' . $font_navbar['font-family'] . ';';
            }
            if (isset($navbar_text_color) && !empty($navbar_text_color)) {
                $variables .= '@navbar-font-color:       ' . $navbar_text_color . ';';
            }
            if (isset($font_brand) && !empty($font_brand)) {
                $variables .= '@brand-font-size:         ' . $font_brand['font-size'] . 'px;';
                $variables .= '@brand-font-weight:       ' . $font_brand['font-weight'] . ';';
                $variables .= '@brand-font-style:        ' . $font_brand['font-style'] . ';';
                $variables .= '@brand-font-family:       ' . $font_brand['font-family'] . ';';
            }
            if (isset($brand_text_color) && !empty($brand_text_color)) {
                $variables .= '@brand-font-color:        ' . $brand_text_color . ';';
            }
            if (isset($ss_settings['navbar_margin_top']) && !empty($ss_settings['navbar_margin_top'])) {
                $variables .= '@navbar-margin-top:       ' . $ss_settings['navbar_margin_top'] . 'px;';
            } else {
                $variables .= '@navbar-margin-top: 0px;';
            }
            if (isset($grid_float_breakpoint) && !empty($grid_float_breakpoint)) {
                $variables .= '@grid-float-breakpoint: ' . $grid_float_breakpoint . ';';
            }
            $variables .= '@import "' . dirname(__FILE__) . '/assets/less/blog.less";';
            $variables .= '@import "' . dirname(__FILE__) . '/assets/less/headers.less";';
            $variables .= '@import "' . dirname(__FILE__) . '/assets/less/layout.less";';
            $variables .= '@import "' . dirname(__FILE__) . '/assets/less/social.less";';
            $variables .= '@import "' . dirname(__FILE__) . '/assets/less/menus.less";';
            $variables .= '@import "' . dirname(__FILE__) . '/assets/less/widgets.less";';
            $variables .= '@import "' . dirname(__FILE__) . '/assets/less/footer.less";';
            // Add BuddyPress styles
            if (class_exists('BuddyPress')) {
                $variables .= '@import "' . dirname(__FILE__) . '/assets/less/buddypress.less";';
            }
            return $variables;
        }
 /**
  * Add some CSS for the navbar when needed.
  */
 function navbar_css()
 {
     global $ss_settings;
     $navbar_bg_opacity = $ss_settings['navbar_bg_opacity'];
     $style = '';
     $opacity = $navbar_bg_opacity == '' ? '0' : intval($navbar_bg_opacity) / 100;
     if ($opacity != 1 && $opacity != '') {
         $bg = str_replace('#', '', $ss_settings['navbar_bg']);
         $rgb = StacheStack_Color::get_rgb($bg, true);
         $opacityie = str_replace('0.', '', $opacity);
         $style .= '.navbar, .navbar-default {';
         if ($opacity != 1 && $opacity != '') {
             $style .= 'background: transparent; background: rgba(' . $rgb . ', ' . $opacity . '); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#' . $opacityie . $bg . ',endColorstr=#' . $opacityie . $bg . '); ;';
         } else {
             $style .= 'background: #' . $bg . ';';
         }
         $style .= '}';
     }
     if ($ss_settings['navbar_margin'] != 1) {
         $style .= '.navbar-static-top { margin-top:' . $ss_settings['navbar_margin'] . 'px; margin-bottom:' . $ss_settings['navbar_margin'] . 'px; }';
     }
     wp_add_inline_style('stachestack_css', $style);
 }
Ejemplo n.º 9
0
function stachestack_lumosity_difference($hex1, $hex2)
{
    _stachestack_deprecated_function(__FUNCTION__, '3.2', 'StacheStack_Color::lumosity_difference()');
    return StacheStack_Color::lumosity_difference($hex1, $hex2);
}