Example #1
0
 protected function content($atts, $content = null)
 {
     $atts = shortcode_atts(array('layout' => 'default', 'css_animation' => '', 'type' => 'all', 'animation_delay' => '', 'el_class' => '', 'css' => ''), $atts);
     extract($atts);
     $output = '';
     $elementClass = array('base' => apply_filters(VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, 'cruxstore-search', $this->settings['base'], $atts), 'shortcode_custom' => vc_shortcode_custom_css_class($css, ' '), 'extra' => $this->getExtraClass($el_class), 'css_animation' => cruxstore_getCSSAnimation($css_animation), 'layout' => 'layout' . $layout);
     $rand = rand();
     $type = $type == 'products' && cruxstore_is_wc() ? 'WC_Widget_Product_Search' : 'WP_Widget_Search';
     $args = array();
     global $wp_widget_factory;
     // to avoid unwanted warnings let's check before using widget
     if (is_object($wp_widget_factory) && isset($wp_widget_factory->widgets, $wp_widget_factory->widgets[$type])) {
         ob_start();
         the_widget($type, $atts, $args);
         $output .= ob_get_clean();
     } else {
         $output .= $this->debugComment('Widget ' . esc_attr($type) . 'Not found in : vc_wp_search');
     }
     $elementClass = preg_replace(array('/\\s+/', '/^\\s|\\s$/'), array(' ', ''), implode(' ', $elementClass));
     return '<div id="cruxstore-search' . $rand . '" class="' . esc_attr($elementClass) . '"' . $animation_delay . '>' . $output . '</div>';
 }
Example #2
0
?>

<div class="topbar">
    <div class="row">
        <div class="topbar-left col-sm-6">
            <ul class="top-navigation">
                <?php 
get_template_part('templates/headers/header', 'language');
get_template_part('templates/headers/header', 'currency');
get_template_part('templates/headers/header', 'search');
?>
            </ul>
        </div>
        <div class="topbar-right col-sm-6">
            <?php 
if (cruxstore_is_wc()) {
    ?>
                <ul class="top-navigation">
                    <?php 
    get_template_part('templates/headers/header', 'myaccount');
    get_template_part('templates/headers/header', 'wishlist');
    get_template_part('templates/headers/header', 'cart');
    ?>
                </ul>
            <?php 
}
?>
        </div>
    </div>
</div>
Example #3
0
" />
                    <?php 
}
?>
                </a>
            </p><!-- .site-logo -->
        </div><!-- .site-branding -->

        <div class="header-mobile-tools">

            <a title="Menu" href="#" id="hamburger-icon" class="">
                <span class="hamburger-icon-inner">
                    <span class="line line-1"></span>
                    <span class="line line-2"></span>
                    <span class="line line-3"></span>
                </span>
            </a>

            <?php 
if (cruxstore_is_wc() && cruxstore_option('header_cart', 1) && !cruxstore_option('catalog_mode', 0)) {
    ?>
                <?php 
    cruxstore_cart_link('cart-mobile', '<i class="cruxstore-icon-Shopping-Cart"></i>');
    ?>
            <?php 
}
?>

        </div>
    </div>
</div>
Example #4
0
 /**
  * Get page sidebar
  *
  * @param null $post_id
  * @return mixed|void
  */
 function cruxstore_get_page_sidebar($post_id = null)
 {
     global $post;
     if (!$post_id) {
         $post_id = $post->ID;
     }
     $sidebar = array('sidebar' => cruxstore_meta('_cruxstore_sidebar', array(), $post_id), 'sidebar_area' => '');
     if (isset($_REQUEST['sidebar'])) {
         $sidebar['sidebar'] = $_REQUEST['sidebar'];
     }
     if (cruxstore_is_wc()) {
         if (is_cart() || is_checkout() || is_account_page()) {
             $sidebar['sidebar'] = 'full';
         } elseif (defined('YITH_WCWL')) {
             $wishlist_page_id = yith_wcwl_object_id(get_option('yith_wcwl_wishlist_page_id'));
             if ($post_id == $wishlist_page_id) {
                 $sidebar['sidebar'] = 'full';
             }
         }
     }
     if ($sidebar['sidebar'] == '' || $sidebar['sidebar'] == 'default') {
         $sidebar['sidebar'] = cruxstore_option('page_sidebar', '');
         if ($sidebar['sidebar'] == 'left') {
             $sidebar['sidebar_area'] = cruxstore_option('page_sidebar_left', 'primary-widget-area');
         } elseif ($sidebar['sidebar'] == 'right') {
             $sidebar['sidebar_area'] = cruxstore_option('page_sidebar_right', 'primary-widget-area');
         }
     } elseif ($sidebar['sidebar'] == 'left') {
         $sidebar['sidebar_area'] = cruxstore_meta('_cruxstore_left_sidebar', array(), $post_id);
     } elseif ($sidebar['sidebar'] == 'right') {
         $sidebar['sidebar_area'] = cruxstore_meta('_cruxstore_right_sidebar', array(), $post_id);
     }
     if ($sidebar['sidebar'] == 'full') {
         $sidebar['sidebar'] = '';
     }
     return apply_filters('cruxstore_page_sidebar', $sidebar);
 }
Example #5
0
function cruxstore_slideshows_position_callback()
{
    if (is_page()) {
        $page_id = get_the_ID();
        if (cruxstore_is_wc()) {
            if (is_shop()) {
                $page_id = get_option('woocommerce_shop_page_id');
            }
        }
        cruxstore_show_slideshow($page_id);
    }
}
Example #6
0
<?php

if (cruxstore_is_wc() && !cruxstore_option('catalog_mode', 0)) {
    $text = is_user_logged_in() ? esc_html__('My Account', 'cruxstore') : esc_html__('Login', 'cruxstore');
    printf('<li class="%s"><a href="%s" title="%s">%s</a>', 'header-wc-myaccount', get_permalink(get_option('woocommerce_myaccount_page_id')), $text, '<i class="fa fa-user" aria-hidden="true"></i>');
}
Example #7
0
<?php

if (class_exists('WOOCS') && cruxstore_is_wc()) {
    global $WOOCS;
    $currencies = $WOOCS->get_currencies();
    $currency_html = '';
    $currency_active = '';
    foreach ($currencies as $key => $currency) {
        if ($WOOCS->current_currency == $key) {
            $selected = 'active';
            $currency_active = $key;
        } else {
            $selected = '';
        }
        $currency_html .= sprintf('<li class="%s"><a href="#" data-currency="%s" title="%s"><span></span>%s</a>', $selected, esc_attr($currency['name']), esc_attr($currency['description']), $currency['name']);
    }
    printf('<li class="currency-switcher navigation-has-children"><a href="#">%s</a><ul class="navigation-submenu currency-switcher-content">%s</ul></li>', '<i class="fa fa-money" aria-hidden="true"></i> ' . $currency_active, $currency_html);
}
Example #8
0
 public function setSections()
 {
     $image_sizes = cruxstore_get_image_sizes();
     $taxonomy_names = array();
     if (cruxstore_is_wc()) {
         $taxonomies = wc_get_attribute_taxonomy_names();
         foreach ($taxonomies as $tax) {
             $taxonomy_names[$tax] = $tax;
         }
     }
     $this->sections[] = array('id' => 'general', 'title' => esc_html__('General', 'cruxstore'), 'icon' => 'fa fa-cogs');
     $this->sections[] = array('id' => 'general_layout', 'title' => esc_html__('General', 'cruxstore'), 'subsection' => true, 'fields' => array(array('id' => 'use_page_loader', 'type' => 'switch', 'title' => esc_html__('Use Page Loader?', 'cruxstore'), 'desc' => esc_html__('', 'cruxstore'), 'default' => 0, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'archive_placeholder', 'type' => 'media', 'url' => true, 'compiler' => true, 'title' => esc_html__('Placeholder', 'cruxstore'), 'subtitle' => esc_html__("Placeholder for none image", 'cruxstore')), array('id' => 'notfound_page_type', 'type' => 'select', 'title' => esc_html__('404 Page', 'cruxstore'), 'desc' => '', 'options' => array('default' => esc_html__('Default', 'cruxstore'), 'home' => esc_html__('Redirect Home', 'cruxstore')), 'default' => 'default')));
     /**
      *  Logos
      **/
     $this->sections[] = array('id' => 'logos_favicon', 'title' => esc_html__('Logos', 'cruxstore'), 'desc' => '', 'subsection' => true, 'fields' => array(array('id' => 'logos_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Logos settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'logo', 'type' => 'media', 'url' => true, 'compiler' => true, 'title' => esc_html__('Logo', 'cruxstore')), array('id' => 'logo_retina', 'type' => 'media', 'url' => true, 'compiler' => true, 'title' => esc_html__('Logo (Retina Version @2x)', 'cruxstore'), 'desc' => esc_html__('Select an image file for the retina version of the logo. It should be exactly 2x the size of main logo.', 'cruxstore')), array('id' => 'logo_light', 'type' => 'media', 'url' => true, 'compiler' => true, 'title' => esc_html__('Logo light', 'cruxstore')), array('id' => 'logo_light_retina', 'type' => 'media', 'url' => true, 'compiler' => true, 'title' => esc_html__('Logo light(Retina Version @2x)', 'cruxstore'), 'desc' => esc_html__('Select an image file for the retina version of the logo. It should be exactly 2x the size of main logo.', 'cruxstore')), array('id' => 'logo_footer', 'type' => 'media', 'url' => true, 'compiler' => true, 'title' => esc_html__('Logo Footer', 'cruxstore'))));
     /**
      *  Header
      **/
     $this->sections[] = array('id' => 'Header', 'title' => esc_html__('Header', 'cruxstore'), 'desc' => '', 'subsection' => true, 'fields' => array(array('id' => 'header', 'type' => 'image_select', 'compiler' => true, 'title' => esc_html__('Header layout', 'cruxstore'), 'subtitle' => esc_html__('Please choose header layout', 'cruxstore'), 'options' => array(1 => array('alt' => esc_html__('Layout 1', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'header/header-v1.jpg'), 2 => array('alt' => esc_html__('Layout 2', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'header/header-v2.jpg'), 3 => array('alt' => esc_html__('Layout 3', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'header/header-v3.jpg'), 4 => array('alt' => esc_html__('Layout 4', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'header/header-v4.jpg'), 5 => array('alt' => esc_html__('Layout 5', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'header/header-v5.jpg'), 6 => array('alt' => esc_html__('Layout 6', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'header/header-v6.jpg'), 7 => array('alt' => esc_html__('Layout 7', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'header/header-v7.jpg'), 8 => array('alt' => esc_html__('Layout 8', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'header/header-v8.jpg')), 'default' => 1), array('id' => 'divide_id', 'type' => 'divide'), array('id' => 'header_shadow', 'type' => 'switch', 'title' => esc_html__('Header shadow', 'cruxstore'), "default" => 1, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'header_search', 'type' => 'switch', 'title' => esc_html__('Search Icon', 'cruxstore'), 'desc' => esc_html__('Enable the search Icon in the header.', 'cruxstore'), "default" => 1, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'header_search_type', 'type' => 'select', 'title' => esc_html__('Header search type', 'cruxstore'), 'options' => array('all' => esc_html__('All', 'cruxstore'), 'product' => esc_html__('Only Products', 'cruxstore')), 'default' => 'all'), array('id' => 'header_socials', 'type' => 'cruxstore_socials', 'title' => esc_html__('Select your socials', 'cruxstore'), 'default' => 'facebook,twitter,instagram,linkedin'), array('id' => 'header_phone', 'type' => 'text', 'title' => esc_html__('Phone', 'cruxstore'), 'subtitle' => esc_html__("Your phone number.", 'cruxstore'), 'default' => '')));
     /**
      *    Footer
      **/
     $this->sections[] = array('id' => 'footer', 'title' => esc_html__('Footer', 'cruxstore'), 'desc' => '', 'subsection' => true, 'fields' => array(array('id' => 'backtotop', 'type' => 'switch', 'title' => esc_html__('Back to top', 'cruxstore'), 'default' => true, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'footer_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Footer settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'footer', 'type' => 'switch', 'title' => esc_html__('Footer enable', 'cruxstore'), 'default' => true, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'footer_fullwidth', 'type' => 'switch', 'title' => esc_html__('Footer background fullwidth', 'cruxstore'), 'default' => true, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'footer_top_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Footer top settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'footer_top', 'type' => 'switch', 'title' => esc_html__('Footer top enable', 'cruxstore'), 'default' => true, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'footer_instagram_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Footer Instagram settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'footer_instagram_layout', 'type' => 'select', 'title' => esc_html__('Footer Instagram layout', 'cruxstore'), 'options' => array('full' => esc_html__('Full', 'cruxstore'), 'space' => esc_html__('Space', 'cruxstore')), 'default' => 'full'), array('id' => 'footer_widgets_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Footer widgets settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'footer_widgets', 'type' => 'switch', 'title' => esc_html__('Footer widgets enable', 'cruxstore'), 'default' => true, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'footer_widgets_layout', 'type' => 'image_select', 'compiler' => true, 'title' => esc_html__('Footer widgets layout', 'cruxstore'), 'subtitle' => esc_html__('Select your footer widgets layout', 'cruxstore'), 'options' => array('featured' => array('alt' => esc_html__('Layout 1', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'footer/footer-0.jpg'), '3-3-3-3' => array('alt' => esc_html__('Layout 2', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'footer/footer-1.jpg'), '6-3-3' => array('alt' => esc_html__('Layout 3', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'footer/footer-2.jpg'), '3-3-6' => array('alt' => esc_html__('Layout 4', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'footer/footer-3.jpg'), '6-6' => array('alt' => esc_html__('Layout 5', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'footer/footer-4.jpg'), '4-4-4' => array('alt' => esc_html__('Layout 6', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'footer/footer-5.jpg'), '8-4' => array('alt' => esc_html__('Layout 7', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'footer/footer-6.jpg'), '4-8' => array('alt' => esc_html__('Layout 8', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'footer/footer-7.jpg'), '3-6-3' => array('alt' => esc_html__('Layout 9', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'footer/footer-8.jpg'), '12' => array('alt' => esc_html__('Layout 10', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'footer/footer-9.jpg')), 'default' => 'featured'), array('id' => 'footer_bottom_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Footer bottom settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'footer_bottom', 'type' => 'switch', 'title' => esc_html__('Footer bottom enable', 'cruxstore'), 'default' => false, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'footer_bottom_layout', 'type' => 'image_select', 'compiler' => true, 'title' => esc_html__('Footer bottom layout', 'cruxstore'), 'subtitle' => esc_html__('Select your footer bottom layout', 'cruxstore'), 'options' => array('1' => array('alt' => esc_html__('Layout 1', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'footer/footer-bottom-1.png'), '2' => array('alt' => esc_html__('Layout 2', 'cruxstore'), 'img' => CRUXSTORE_FW_IMG . 'footer/footer-bottom-2.png')), 'default' => '1'), array('id' => 'footer_copyright_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Footer copyright settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'footer_copyright', 'type' => 'switch', 'title' => esc_html__('Footer copyright enable', 'cruxstore'), 'default' => true, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'footer_copyright_layout', 'type' => 'select', 'title' => esc_html__('Footer copyright layout', 'cruxstore'), 'subtitle' => esc_html__('Select your preferred footer layout.', 'cruxstore'), 'options' => array('centered' => esc_html__('Centered', 'cruxstore'), 'sides' => esc_html__('Sides', 'cruxstore'), 'columns' => esc_html__('3 columns', 'cruxstore')), 'default' => 'centered', 'clear' => false), array('id' => 'footer_copyright_left', 'type' => 'select', 'title' => esc_html__('Footer Copyright Left', 'cruxstore'), 'options' => array('' => esc_html__('Empty', 'cruxstore'), 'navigation' => esc_html__('Navigation', 'cruxstore'), 'socials' => esc_html__('Socials', 'cruxstore'), 'copyright' => esc_html__('Copyright', 'cruxstore'), 'subscribe' => esc_html__('Subscribe', 'cruxstore')), 'default' => ''), array('id' => 'footer_copyright_right', 'type' => 'select', 'title' => esc_html__('Footer Copyright Right', 'cruxstore'), 'options' => array('' => esc_html__('Empty', 'cruxstore'), 'navigation' => esc_html__('Navigation', 'cruxstore'), 'socials' => esc_html__('Socials', 'cruxstore'), 'copyright' => esc_html__('Copyright', 'cruxstore'), 'subscribe' => esc_html__('Subscribe', 'cruxstore')), 'default' => 'copyright'), array('id' => 'footer_copyright_center', 'type' => 'select', 'title' => esc_html__('Footer Copyright Center', 'cruxstore'), 'options' => array('' => esc_html__('Empty', 'cruxstore'), 'navigation' => esc_html__('Navigation', 'cruxstore'), 'socials' => esc_html__('Socials', 'cruxstore'), 'copyright' => esc_html__('Copyright', 'cruxstore'), 'subscribe' => esc_html__('Subscribe', 'cruxstore')), 'default' => 'copyright'), array('id' => 'footer_socials', 'type' => 'cruxstore_socials', 'title' => esc_html__('Select your socials', 'cruxstore'), 'default' => 'facebook,twitter,instagram,linkedin'), array('id' => 'footer_copyright_text', 'type' => 'editor', 'title' => esc_html__('Footer Copyright Text', 'cruxstore'), 'default' => 'BUILT WITH <i class="fa fa-heart color-accent"></i> WP THEME BY KITETHEMES-WP')));
     /**
      *	Styling
      **/
     $this->sections[] = array('id' => 'styling', 'title' => esc_html__('Styling', 'cruxstore'), 'desc' => '', 'icon' => 'fa fa-pencil');
     /**
      *	Styling General
      **/
     $this->sections[] = array('id' => 'styling_general', 'title' => esc_html__('General', 'cruxstore'), 'subsection' => true, 'fields' => array(array('id' => 'styling_accent', 'type' => 'color', 'title' => esc_html__('Main Color', 'cruxstore'), 'default' => '#ed8b5c', 'transparent' => false)));
     /**
      *	Styling Logo
      **/
     $this->sections[] = array('id' => 'styling-logo', 'title' => esc_html__('Logo', 'cruxstore'), 'subsection' => true, 'fields' => array(array('id' => 'logo_width', 'type' => 'dimensions', 'units_extended' => 'true', 'title' => esc_html__('Logo width', 'cruxstore'), 'height' => false, 'default' => array('width' => 55, 'units' => 'px'), 'output' => array('.branding.branding-default img')), array('id' => 'logo_margin_spacing', 'type' => 'spacing', 'mode' => 'margin', 'output' => array('.branding.branding-default'), 'units' => array('px'), 'units_extended' => 'true', 'title' => esc_html__('Logo margin spacing Option', 'cruxstore'), 'default' => array('margin-top' => '18px', 'margin-right' => '0', 'margin-bottom' => '18px', 'margin-left' => '0')), array('id' => 'divide_id', 'type' => 'divide'), array('id' => 'logo_mobile_width', 'type' => 'dimensions', 'units_extended' => 'true', 'title' => esc_html__('Logo mobile width', 'cruxstore'), 'height' => false, 'default' => array('width' => 55, 'units' => 'px'), 'output' => array('.branding.branding-mobile img')), array('id' => 'logo_mobile_margin_spacing', 'type' => 'spacing', 'mode' => 'margin', 'units' => array('px'), 'units_extended' => 'true', 'title' => esc_html__('Logo mobile margin spacing Option', 'cruxstore'), 'default' => array('margin-top' => '10px', 'margin-right' => '0px', 'margin-bottom' => '10px', 'margin-left' => '0px'), 'output' => array('.branding.branding-mobile'))));
     /**
      *	Styling Header
      **/
     $this->sections[] = array('id' => 'styling_header', 'title' => esc_html__('Header', 'cruxstore'), 'subsection' => true, 'fields' => array(array('id' => 'header_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Header settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'header_background', 'type' => 'background', 'title' => esc_html__('Header background', 'cruxstore'), 'subtitle' => esc_html__('Header background with image, color, etc.', 'cruxstore'), 'default' => '', 'output' => array('.header-content')), array('id' => 'header_default_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Header Default settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'header_border', 'type' => 'border', 'title' => esc_html__('Header Border', 'cruxstore'), 'output' => array('.header-content'), 'all' => false, 'left' => false, 'right' => false, 'top' => false, 'default' => array()), array('id' => 'header_light_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Header Light settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'header_light_border', 'type' => 'border', 'title' => esc_html__('Header Border', 'cruxstore'), 'output' => array('.header-light.header-transparent .header-content'), 'all' => false, 'left' => false, 'right' => false, 'top' => false, 'default' => array('border-bottom' => '1px', 'border-style' => 'solid', 'border-color' => 'rgba(246, 246, 246, 0.2)')), array('id' => 'header_light_spacing', 'type' => 'raw', 'content' => '<div style="height:150px"></div>', 'full_width' => true)));
     /**
      *	Styling Header Toolbar
      **/
     $this->sections[] = array('id' => 'styling_header_toolbar', 'title' => esc_html__('Header Toolbar', 'cruxstore'), 'subsection' => true, 'fields' => array(array('id' => 'header_toolbar_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Header Toolbar settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'header_toolbar_background', 'type' => 'background', 'title' => esc_html__('Header Toolbar background', 'cruxstore'), 'subtitle' => esc_html__('Header Toolbar background with image, color, etc.', 'cruxstore'), 'default' => '', 'output' => array('.topbar')), array('id' => 'header_toolbar_default_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Header Toolbar Default', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'header_toolbar_default_color', 'type' => 'color', 'output' => array('.top-navigation > li > a'), 'title' => esc_html__('Default: Top Level Color', 'cruxstore'), 'default' => '#999999', 'transparent' => false), array('id' => 'header_toolbar_default_active_color', 'type' => 'color', 'output' => array('.top-navigation > li:hover > a', '.top-navigation > li > a:hover', '.top-navigation > li > a:focus'), 'title' => esc_html__('Default: Top Level Hover Color', 'cruxstore'), 'default' => '#000000', 'transparent' => false), array('id' => 'header_toolbar_border_color', 'type' => 'color', 'title' => esc_html__('Default: Border Color', 'cruxstore'), 'default' => '#ebebeb', 'transparent' => true), array('id' => 'header_toolbar_light_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Header Toolbar Light', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'header_toolbar_light_color', 'type' => 'color', 'output' => array('.header-transparent.header-light .top-navigation > li > a'), 'title' => esc_html__('Light: Top Level Color', 'cruxstore'), 'default' => '#FFFFFF', 'transparent' => false), array('id' => 'header_toolbar_light_active_color', 'type' => 'color', 'output' => array('.header-transparent.header-light .top-navigation > li:hover > a', '.header-transparent.header-light .top-navigation > li > a:hover', '.header-transparent.header-light .top-navigation > li > a:focus'), 'title' => esc_html__('Light: Top Level Hover Color', 'cruxstore'), 'default' => '#FFFFFF', 'transparent' => false), array('id' => 'header_toolbar_light_border_color', 'type' => 'color_rgba', 'title' => esc_html__('Light: Border Color', 'cruxstore'), 'subtitle' => esc_html__('Gives you the RGBA color.', 'cruxstore'), 'default' => array('color' => '#f6f6f6', 'alpha' => '.2'), 'mode' => 'background'), array('id' => 'mega_menu_spacing', 'type' => 'raw', 'content' => '<div style="height:150px"></div>', 'full_width' => true)));
     /**
      *  Styling Sticky
      **/
     $this->sections[] = array('id' => 'styling_sticky', 'title' => esc_html__('Sticky', 'cruxstore'), 'subsection' => true, 'fields' => array(array('id' => 'fixed_header', 'type' => 'button_set', 'title' => esc_html__('Sticky header', 'cruxstore'), 'options' => array('1' => esc_html__('Disabled', 'cruxstore'), '2' => esc_html__('Fixed Sticky', 'cruxstore'), '3' => esc_html__('Slide Down', 'cruxstore')), 'default' => '3', 'desc' => esc_html__('Choose your sticky effect.', 'cruxstore')), array('id' => 'logo_sticky_width', 'type' => 'dimensions', 'units' => 'px', 'title' => esc_html__('Logo width', 'cruxstore'), 'height' => false, 'default' => array('width' => 45, 'units' => 'px'), 'output' => array('.is-sticky .apply-sticky .branding-default img')), array('id' => 'logo_sticky_margin_spacing', 'type' => 'spacing', 'mode' => 'margin', 'units' => array('px'), 'units_extended' => 'true', 'title' => esc_html__('Logo sticky margin spacing Option', 'cruxstore'), 'default' => array('margin-top' => '0', 'margin-bottom' => '0', 'margin-left' => '0', 'margin-right' => '0'), 'output' => array('.is-sticky .apply-sticky .branding-default')), array('id' => 'navigation_height_fixed', 'type' => 'dimensions', 'units' => 'px', 'title' => esc_html__('Main Navigation Sticky Height', 'cruxstore'), 'desc' => esc_html__('Change height of main navigation sticky', 'cruxstore'), 'width' => false, 'default' => array('height' => '60', 'units' => 'px')), array('id' => 'header_sticky_opacity', 'type' => 'slider', 'title' => esc_html__('Sticky Background opacity', 'cruxstore'), 'default' => 0.8, 'min' => 0, 'step' => 0.1, 'max' => 1, 'resolution' => 0.1, 'display_value' => 'text'), array('id' => 'header_sticky_background', 'type' => 'background', 'title' => esc_html__('Header sticky background', 'cruxstore'), 'desc' => esc_html__('Header sticky with image, color, etc.', 'cruxstore'), 'background-repeat' => false, 'background-attachment' => false, 'background-position' => false, 'background-image' => false, 'background-size' => false, 'preview' => false, 'transparent' => false, 'default' => array('background-color' => '#ffffff'), 'output' => array('.header-sticky-background')), array('id' => 'header_sticky_light_background', 'type' => 'background', 'title' => esc_html__('Header transparent sticky background', 'cruxstore'), 'desc' => esc_html__('Header transparent sticky with image, color, etc.', 'cruxstore'), 'background-repeat' => false, 'background-attachment' => false, 'background-position' => false, 'background-image' => false, 'background-size' => false, 'preview' => false, 'transparent' => false, 'default' => array('background-color' => '#000000'), 'output' => array('.header-transparent.header-light .header-sticky-background')), array('id' => 'header_sticky_spacing', 'type' => 'raw', 'content' => '<div style="height:150px"></div>', 'full_width' => true)));
     /**
      *	Styling Footer
      **/
     $this->sections[] = array('id' => 'styling_footer', 'title' => esc_html__('Footer', 'cruxstore'), 'subsection' => true, 'fields' => array(array('id' => 'footer_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Footer settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'footer_background', 'type' => 'background', 'title' => esc_html__('Footer Background', 'cruxstore'), 'subtitle' => esc_html__('Footer Background with image, color, etc.', 'cruxstore'), 'default' => array(), 'output' => array('#footer')), array('id' => 'footer_padding', 'type' => 'spacing', 'mode' => 'padding', 'left' => false, 'right' => false, 'output' => array('#footer'), 'units' => array('px'), 'units_extended' => 'true', 'title' => esc_html__('Footer padding', 'cruxstore'), 'default' => array()), array('id' => 'footer_border', 'type' => 'border', 'title' => esc_html__('Footer Border', 'cruxstore'), 'output' => array('#footer'), 'all' => false, 'left' => false, 'right' => false, 'bottom' => false, 'default' => array()), array('id' => 'footer_top_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Footer top settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'footer_top_background', 'type' => 'background', 'title' => esc_html__('Footer top Background', 'cruxstore'), 'subtitle' => esc_html__('Footer top Background with image, color, etc.', 'cruxstore'), 'default' => array(), 'output' => array('#footer-top')), array('id' => 'footer_top_padding', 'type' => 'spacing', 'mode' => 'padding', 'left' => false, 'right' => false, 'output' => array('#footer-top'), 'units' => array('px'), 'units_extended' => 'true', 'title' => esc_html__('Footer top padding', 'cruxstore'), 'default' => array()), array('id' => 'footer_top_border', 'type' => 'border', 'title' => esc_html__('Footer top Border', 'cruxstore'), 'output' => array('#footer-top'), 'all' => false, 'left' => false, 'right' => false, 'top' => false, 'default' => array()), array('id' => 'footer_widgets_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Footer widgets settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'footer_widgets_background', 'type' => 'background', 'title' => esc_html__('Footer widgets Background', 'cruxstore'), 'subtitle' => esc_html__('Footer widgets Background with image, color, etc.', 'cruxstore'), 'default' => array(), 'output' => array('#footer-area')), array('id' => 'footer_box_widgets_background', 'type' => 'background', 'title' => esc_html__('Footer Box widgets Background', 'cruxstore'), 'subtitle' => esc_html__('Footer Box widgets Background with image, color, etc.', 'cruxstore'), 'default' => array(), 'output' => array('#footer-area .footer-area-right')), array('id' => 'footer_widgets_padding', 'type' => 'spacing', 'mode' => 'padding', 'left' => false, 'right' => false, 'output' => array('#footer-area'), 'units' => array('px'), 'units_extended' => 'true', 'title' => esc_html__('Footer widgets padding', 'cruxstore'), 'default' => array()), array('id' => 'footer_bottom_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Footer bottom settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'footer_bottom_background', 'type' => 'background', 'title' => esc_html__('Footer bottom Background', 'cruxstore'), 'subtitle' => esc_html__('Footer  Background with image, color, etc.', 'cruxstore'), 'default' => array(), 'output' => array('#footer-bottom')), array('id' => 'footer_bottom_padding', 'type' => 'spacing', 'mode' => 'padding', 'left' => false, 'right' => false, 'units' => array('px'), 'units_extended' => 'true', 'title' => esc_html__('Footer bottom padding', 'cruxstore'), 'default' => array(), 'subtitle' => 'Disable if you use instagram background'), array('id' => 'footer_bottom_border', 'type' => 'border', 'title' => esc_html__('Footer bottom Border', 'cruxstore'), 'output' => array('#footer-bottom'), 'all' => false, 'left' => false, 'right' => false, 'bottom' => false, 'color' => false, 'default' => array()), array('id' => 'footer_bottom_border_color', 'type' => 'color_rgba', 'title' => esc_html__('Footer bottom Border color', 'cruxstore'), 'output' => array('#footer-bottom'), 'default' => array('color' => '#FFFFFF', 'alpha' => '.2'), 'mode' => 'border-color'), array('id' => 'footer_copyright_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Footer copyright settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'footer_copyright_border', 'type' => 'border', 'title' => esc_html__('Footer Copyright Border', 'cruxstore'), 'output' => array('#footer-copyright'), 'all' => false, 'left' => false, 'right' => false, 'bottom' => false, 'default' => array()), array('id' => 'footer_copyright_background', 'type' => 'background', 'title' => esc_html__('Footer Background', 'cruxstore'), 'subtitle' => esc_html__('Footer Background with image, color, etc.', 'cruxstore'), 'default' => array(), 'output' => array('#footer-copyright')), array('id' => 'footer_copyright_padding', 'type' => 'spacing', 'mode' => 'padding', 'left' => false, 'right' => false, 'output' => array('#footer-copyright'), 'units' => array('px'), 'units_extended' => 'true', 'title' => esc_html__('Footer copyright padding', 'cruxstore'), 'default' => array()), array('type' => 'divide', 'id' => 'divide_fake'), array('id' => 'footer_socials_style', 'type' => 'select', 'title' => esc_html__('Footer socials style', 'cruxstore'), 'options' => array('dark' => esc_html__('Dark', 'cruxstore'), 'light' => esc_html__('Light', 'cruxstore'), 'color' => esc_html__('Color', 'cruxstore'), 'custom' => esc_html__('Custom Color', 'cruxstore')), 'default' => 'custom'), array('id' => 'custom_color_social', 'type' => 'color', 'title' => esc_html__('Footer socials Color', 'cruxstore'), 'default' => '#999999', 'transparent' => false, 'required' => array('footer_socials_style', 'equals', array('custom'))), array('id' => 'footer_socials_background', 'type' => 'select', 'title' => esc_html__('Footer socials background', 'cruxstore'), 'options' => array('empty' => esc_html__('None', 'cruxstore'), 'rounded' => esc_html__('Circle', 'cruxstore'), 'boxed' => esc_html__('Square', 'cruxstore'), 'rounded-less' => esc_html__('Rounded', 'cruxstore'), 'diamond-square' => esc_html__('Diamond Square', 'cruxstore'), 'rounded-outline' => esc_html__('Outline Circle', 'cruxstore'), 'boxed-outline' => esc_html__('Outline Square', 'cruxstore'), 'rounded-less-outline' => esc_html__('Outline Rounded', 'cruxstore'), 'diamond-square-outline' => esc_html__('Outline Diamond Square', 'cruxstore')), 'subtitle' => esc_html__('Select background shape and style for social.', 'cruxstore'), 'default' => 'empty'), array('id' => 'footer_socials_size', 'type' => 'select', 'title' => esc_html__('Footer socials size', 'cruxstore'), 'options' => array('small' => esc_html__('Small', 'cruxstore'), 'standard' => esc_html__('Standard', 'cruxstore')), 'default' => 'small'), array('id' => 'footer_socials_space_between_item', 'type' => 'text', 'title' => esc_html__('Footer socials space between item', 'cruxstore'), 'default' => '30')));
     /**
      *  Main Navigation
      **/
     $this->sections[] = array('id' => 'styling_navigation', 'title' => esc_html__('Main Navigation', 'cruxstore'), 'desc' => '', 'subsection' => true, 'fields' => array(array('id' => 'styling_navigation_general', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('General', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'navigation_height', 'type' => 'dimensions', 'units' => 'px', 'units_extended' => 'true', 'title' => esc_html__('Main Navigation Height', 'cruxstore'), 'subtitle' => esc_html__('Change height of main navigation', 'cruxstore'), 'width' => false, 'default' => array('height' => '102', 'units' => 'px')), array('id' => 'navigation_box_background', 'type' => 'background', 'title' => esc_html__('MegaMenu & Dropdown Box background', 'cruxstore'), 'default' => array('background-color' => '#FFFFFF'), 'output' => array('#nav #main-nav-wc > li ul.sub-menu-dropdown', '#nav #main-nav-wc > li .navigation-submenu', '#nav #main-nav-tool > li ul.sub-menu-dropdown', '#nav #main-nav-tool > li .navigation-submenu', '#nav #main-navigation > li ul.sub-menu-dropdown', '#nav #main-navigation > li .cruxstore-megamenu-wrapper', '#nav #main-navigation > li .navigation-submenu', '.top-navigation > li .navigation-submenu'), 'transparent' => false), array('id' => 'navigation_box_border', 'type' => 'border', 'title' => esc_html__('MegaMenu & Dropdown Box Border', 'cruxstore'), 'output' => array('#nav #main-nav-wc > li .navigation-submenu', '#nav #main-nav-tool > li .navigation-submenu', '#nav #main-navigation > li ul.sub-menu-dropdown', '#nav #main-navigation > li .cruxstore-megamenu-wrapper', '.top-navigation > li .navigation-submenu'), 'all' => false, 'left' => false, 'right' => false, 'style' => false, 'bottom' => false, 'default' => array('border-style' => 'solid', 'border-top' => '1', 'border-color' => '#f6f6f6')), array('id' => 'styling_navigation_general', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Top Level', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'navigation_space', 'type' => 'slider', 'title' => esc_html__('Top Level space', 'cruxstore'), 'default' => 16, 'min' => 0, 'step' => 1, 'max' => 50, 'resolution' => 1, 'display_value' => 'text', 'subtitle' => esc_html__('Margin left between top level.', 'cruxstore')), array('id' => 'navigation_color', 'type' => 'color', 'output' => array('#nav #main-nav-wc > li > a', '#nav #main-navigation > li > a', '#nav #main-nav-socials > li > a'), 'title' => esc_html__('Dark: Top Level Color', 'cruxstore'), 'default' => '#999999', 'transparent' => false), array('id' => 'navigation_color_hover', 'type' => 'color', 'output' => array('#nav #main-nav-wc > li.current-menu-item > a', '#nav #main-nav-wc > li > a:hover', '#nav #main-nav-wc > li > a:focus', '#nav #main-navigation > li.current-menu-item > a', '#nav #main-navigation > li > a:hover', '#nav #main-navigation > li > a:focus', '#nav #main-nav-socials > li > a:hover', '#nav #main-nav-socials > li > a:focus'), 'title' => esc_html__('Dark: Top Level hover Color', 'cruxstore'), 'default' => '#000000', 'transparent' => false), array('id' => 'navigation_color_light', 'type' => 'color', 'output' => array('.header-transparent.header-light #nav #main-nav-wc > li > a', '.header-transparent.header-light #nav #main-nav-socials > li > a', '.header-transparent.header-light #nav #main-navigation > li > a'), 'title' => esc_html__('Light: Top Level Color', 'cruxstore'), 'default' => '#FFFFFF', 'transparent' => false), array('id' => 'navigation_color_hover_light', 'type' => 'color', 'output' => array('.header-transparent.header-light #nav #main-nav-wc > li.current-menu-item > a', '.header-transparent.header-light #nav #main-nav-wc > li > a:hover', '.header-transparent.header-light #nav #main-nav-wc > li > a:focus', '.header-transparent.header-light #nav #main-navigation > li.current-menu-item > a', '.header-transparent.header-light #nav #main-navigation > li > a:hover', '.header-transparent.header-light #nav #main-navigation > li > a:focus'), 'title' => esc_html__('Light: Top Level hover Color', 'cruxstore'), 'default' => '#FFFFFF', 'transparent' => false), array('id' => 'styling_navigation_dropdown', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Drop down', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'navigation_dropdown', 'type' => 'dimensions', 'units' => 'px', 'units_extended' => 'true', 'title' => esc_html__('Dropdown width', 'cruxstore'), 'subtitle' => esc_html__('Change width of Dropdown', 'cruxstore'), 'height' => false, 'default' => array('width' => 308, 'units' => 'px'), 'output' => array('#nav #main-navigation > li ul.sub-menu-dropdown')), array('id' => 'dropdown_background', 'type' => 'background', 'title' => esc_html__('Dropdown Background Color', 'cruxstore'), 'default' => array('background-color' => ''), 'output' => array('#nav #main-navigation > li ul.sub-menu-dropdown li a', '.top-navigation > li .navigation-submenu > li a'), 'background-repeat' => false, 'background-attachment' => false, 'background-position' => false, 'background-image' => false, 'background-size' => false, 'preview' => false, 'transparent' => true), array('id' => 'dropdown_background_hover', 'type' => 'background', 'title' => esc_html__('Dropdown Background Hover Color', 'cruxstore'), 'default' => array('background-color' => ''), 'output' => array('#nav #main-navigation > li ul.sub-menu-dropdown li.current-menu-item > a', '#nav #main-navigation > li ul.sub-menu-dropdown li > a:hover', '.top-navigation > li .navigation-submenu > li a:hover'), 'background-repeat' => false, 'background-attachment' => false, 'background-position' => false, 'background-image' => false, 'background-size' => false, 'preview' => false, 'transparent' => true), array('id' => 'dropdown_color', 'type' => 'color', 'output' => array('#nav #main-navigation > li ul.sub-menu-dropdown li a', '.navigation-submenu.woocommerce ul.product_list_widget li a', '.shopping-bag .woocommerce.navigation-submenu .mini_cart_item .quantity', '.top-navigation > li .navigation-submenu > li a', '.shopping-bag .woocommerce.navigation-submenu .mini_cart_item .amount'), 'title' => esc_html__('Dropdown Text Color', 'cruxstore'), 'default' => '#999999', 'transparent' => false), array('id' => 'dropdown_color_hover', 'type' => 'color', 'output' => array('#nav #main-navigation > li ul.sub-menu-dropdown li.current-menu-item > a', '#nav #main-navigation > li ul.sub-menu-dropdown li > a:hover', '.top-navigation > li .navigation-submenu > li a:hover', '.shopping-bag .navigation-submenu.woocommerce ul.product_list_widget li a'), 'title' => esc_html__('Dropdown Text Hover Color', 'cruxstore'), 'default' => '#000000', 'transparent' => false), array('id' => 'dropdown_border', 'type' => 'border', 'title' => esc_html__('DropDown Border', 'cruxstore'), 'output' => array('#nav #main-navigation > li ul.sub-menu-dropdown li + li', '.shopping-bag .woocommerce.shopping-bag-content .mini_cart_item + .mini_cart_item', '.shopping-bag .woocommerce.shopping-bag-content .total', '.top-navigation > li .navigation-submenu > li + li'), 'all' => false, 'left' => false, 'right' => false, 'style' => false, 'bottom' => false, 'default' => array('border-style' => 'solid', 'border-top' => '1', 'border-color' => '#ebebeb')), array('id' => 'styling_navigation_mega', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Mega', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'mega_title_color', 'type' => 'color', 'output' => array('#nav #main-navigation > li .cruxstore-megamenu-wrapper > ul > li > a', '#nav #main-navigation > li .cruxstore-megamenu-wrapper > ul > li > span', '#nav #main-navigation > li .cruxstore-megamenu-wrapper > ul > li .widget-title'), 'title' => esc_html__('MegaMenu Title color', 'cruxstore'), 'default' => '#000000', 'transparent' => false), array('id' => 'mega_title_color_hover', 'type' => 'color', 'output' => array('#nav #main-navigation > li .cruxstore-megamenu-wrapper > ul > li > a:hover'), 'title' => esc_html__('MegaMenu Title Hover Color', 'cruxstore'), 'default' => '#000000', 'transparent' => false), array('id' => 'mega_color', 'type' => 'color', 'output' => array('#nav #main-navigation > li > .cruxstore-megamenu-wrapper > .cruxstore-megamenu-ul > li ul.sub-menu-megamenu a'), 'title' => esc_html__('MegaMenu Text color', 'cruxstore'), 'default' => '#999999', 'transparent' => false), array('id' => 'mega_color_hover', 'type' => 'color', 'output' => array('#nav #main-navigation > li > .cruxstore-megamenu-wrapper > .cruxstore-megamenu-ul > li ul.sub-menu-megamenu a:hover', '#nav #main-navigation > li > .cruxstore-megamenu-wrapper > .cruxstore-megamenu-ul > li ul.sub-menu-megamenu .current-menu-item > a'), 'title' => esc_html__('MegaMenu Text Hover color', 'cruxstore'), 'default' => '#000000', 'transparent' => false), array('id' => 'mega_border_color', 'title' => esc_html__('MegaMenu Border color', 'cruxstore'), 'type' => 'color', 'default' => '#ebebeb`', 'transparent' => false), array('id' => 'mega_menu_spacing', 'type' => 'raw', 'content' => '<div style="height:150px"></div>', 'full_width' => true)));
     /**
      *  Mobile Navigation
      **/
     $this->sections[] = array('id' => 'styling_mobile_menu', 'title' => esc_html__('Mobile Menu', 'cruxstore'), 'desc' => '', 'subsection' => true, 'fields' => array(array('id' => 'mobile_menu_background', 'type' => 'background', 'title' => esc_html__('Background', 'cruxstore'), 'default' => array('background-color' => '#FFFFFF'), 'output' => array('#main-nav-mobile'), 'transparent' => false), array('type' => 'divide', 'id' => 'divide_fake'), array('id' => 'mobile_menu_color', 'type' => 'color', 'output' => array('ul.navigation-mobile > li > a'), 'title' => esc_html__('Top Level Color', 'cruxstore'), 'default' => '#999999', 'transparent' => false), array('id' => 'mobile_menu_color_hover', 'type' => 'color', 'output' => array('ul.navigation-mobile > li:hover > a', 'ul.navigation-mobile > li > a:hover'), 'title' => esc_html__('Top Level hover Color', 'cruxstore'), 'default' => '#000000', 'transparent' => false), array('id' => 'mobile_menu_background', 'type' => 'background', 'title' => esc_html__('Top Level Background Color', 'cruxstore'), 'default' => array('background-color' => '#FFFFFF'), 'output' => array('ul.navigation-mobile > li > a'), 'background-repeat' => false, 'background-attachment' => false, 'background-position' => false, 'background-image' => false, 'background-size' => false, 'preview' => false, 'transparent' => false), array('id' => 'mobile_menu_background_hover', 'type' => 'background', 'title' => esc_html__('Top Level Hover Color', 'cruxstore'), 'default' => array('background-color' => '#F5F5F5'), 'output' => array('ul.navigation-mobile > li:hover > a', 'ul.navigation-mobile > li > a:hover'), 'background-repeat' => false, 'background-attachment' => false, 'background-position' => false, 'background-image' => false, 'background-size' => false, 'preview' => false, 'transparent' => false), array('type' => 'divide', 'id' => 'divide_fake'), array('id' => 'mobile_sub_color', 'type' => 'color', 'output' => array('.main-nav-mobile > ul > li ul.sub-menu li a', '.main-nav-mobile > ul > li ul.sub-menu-megamenu li a', '.main-nav-mobile > ul > li ul.sub-menu-dropdown li a', 'ul.navigation-mobile > li .cruxstore-megamenu-wrapper > ul.cruxstore-megamenu-ul > li > .sub-menu-megamenu > li > a'), 'title' => esc_html__('Text color', 'cruxstore'), 'default' => '#999999', 'transparent' => false), array('id' => 'mobile_sub_color_hover', 'type' => 'color', 'output' => array('.main-nav-mobile > ul > li ul.sub-menu li a:hover', '.main-nav-mobile > ul > li ul.sub-menu-megamenu li a:hover', '.main-nav-mobile > ul > li ul.sub-menu-dropdown li a:hover', 'ul.navigation-mobile > li .cruxstore-megamenu-wrapper > ul.cruxstore-megamenu-ul > li > .sub-menu-megamenu > li > a:hover'), 'title' => esc_html__('Text Hover color', 'cruxstore'), 'default' => '#000000', 'transparent' => false), array('id' => 'mobile_menu_spacing', 'type' => 'raw', 'content' => '<div style="height:150px"></div>', 'full_width' => true)));
     /**
      *	Typography
      **/
     $this->sections[] = array('id' => 'typography', 'title' => esc_html__('Typography', 'cruxstore'), 'desc' => '', 'icon' => 'fa fa-camera-retro');
     /**
      *	Typography General
      **/
     $this->sections[] = array('id' => 'typography_general', 'title' => esc_html__('General', 'cruxstore'), 'subsection' => true, 'fields' => array(array('id' => 'typography_body', 'type' => 'typography', 'title' => esc_html__('Body Font', 'cruxstore'), 'subtitle' => esc_html__('Specify the body font properties.', 'cruxstore'), 'text-align' => false, 'letter-spacing' => true, 'output' => array('body', 'button', 'input', 'textarea'), 'default' => array('font-family' => 'Poppins', 'font-weight' => '500')), array('id' => 'typography_pragraph', 'type' => 'typography', 'title' => esc_html__('Pragraph', 'cruxstore'), 'subtitle' => esc_html__('Specify the pragraph font properties.', 'cruxstore'), 'output' => array('p'), 'default' => array(), 'color' => false, 'text-align' => false), array('id' => 'typography_special', 'type' => 'typography', 'title' => esc_html__('Special', 'cruxstore'), 'subtitle' => esc_html__('Specify some element font properties.', 'cruxstore'), 'output' => array('.special-font', '.counter-content'), 'color' => false, 'text-align' => false, 'default' => array('font-family' => 'Roboto Slab', 'font-style' => '700')), array('id' => 'typography_blockquote', 'type' => 'typography', 'title' => esc_html__('Blockquote', 'cruxstore'), 'subtitle' => esc_html__('Specify the blockquote font properties.', 'cruxstore'), 'output' => array('blockquote'), 'color' => false, 'text-align' => false, 'default' => array('font-family' => 'Roboto Slab', 'font-style' => '400')), array('id' => 'typography_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Typography Heading settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'typography_heading1', 'type' => 'typography', 'title' => esc_html__('Heading 1', 'cruxstore'), 'subtitle' => esc_html__('Specify the heading 1 font properties.', 'cruxstore'), 'letter-spacing' => true, 'text-transform' => true, 'text-align' => false, 'output' => array('h1', '.h1'), 'default' => array('font-family' => 'Poppins', 'font-weight' => '700')), array('id' => 'typography_heading2', 'type' => 'typography', 'title' => esc_html__('Heading 2', 'cruxstore'), 'subtitle' => esc_html__('Specify the heading 2 font properties.', 'cruxstore'), 'letter-spacing' => true, 'output' => array('h2', '.h2'), 'text-transform' => true, 'text-align' => false, 'default' => array('font-family' => 'Poppins', 'font-weight' => '700')), array('id' => 'typography_heading3', 'type' => 'typography', 'title' => esc_html__('Heading 3', 'cruxstore'), 'subtitle' => esc_html__('Specify the heading 3 font properties.', 'cruxstore'), 'letter-spacing' => true, 'output' => array('h3', '.h3'), 'text-transform' => true, 'text-align' => false, 'default' => array('font-family' => 'Poppins', 'font-weight' => '700')), array('id' => 'typography_heading4', 'type' => 'typography', 'title' => esc_html__('Heading 4', 'cruxstore'), 'subtitle' => esc_html__('Specify the heading 4 font properties.', 'cruxstore'), 'letter-spacing' => true, 'output' => array('h4', '.h4'), 'text-transform' => true, 'text-align' => false, 'default' => array('font-family' => 'Poppins', 'font-weight' => '700')), array('id' => 'typography_heading5', 'type' => 'typography', 'title' => esc_html__('Heading 5', 'cruxstore'), 'subtitle' => esc_html__('Specify the heading 5 font properties.', 'cruxstore'), 'letter-spacing' => true, 'output' => array('h5', '.h5'), 'text-transform' => true, 'text-align' => false, 'default' => array('font-family' => 'Poppins', 'font-weight' => '700')), array('id' => 'typography_heading6', 'type' => 'typography', 'title' => esc_html__('Heading 6', 'cruxstore'), 'subtitle' => esc_html__('Specify the heading 6 font properties.', 'cruxstore'), 'letter-spacing' => true, 'output' => array('h6', '.h6'), 'text-transform' => true, 'text-align' => false, 'default' => array('font-family' => 'Poppins', 'font-weight' => '700'))));
     /**
      *  Typography header
      **/
     $this->sections[] = array('id' => 'typography_header', 'title' => esc_html__('Header', 'cruxstore'), 'desc' => '', 'subsection' => true, 'fields' => array(array('id' => 'typography_header_content', 'type' => 'typography', 'title' => esc_html__('Header', 'cruxstore'), 'subtitle' => esc_html__('Specify the header font properties.', 'cruxstore'), 'google' => true, 'text-align' => false, 'output' => array('#header'))));
     /**
      *  Typography footer
      **/
     $this->sections[] = array('id' => 'typography_footer', 'title' => esc_html__('Footer', 'cruxstore'), 'desc' => '', 'subsection' => true, 'fields' => array(array('id' => 'typography_footer_top_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Typography Footer top settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'typography_footer_top', 'type' => 'typography', 'title' => esc_html__('Footer top', 'cruxstore'), 'subtitle' => esc_html__('Specify the footer top font properties.', 'cruxstore'), 'google' => true, 'text-align' => false, 'output' => array('#footer-top'), 'default' => array('color' => '', 'font-size' => '', 'font-weight' => '', 'line-height' => '')), array('id' => 'typography_footer_widgets_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Typography Footer widgets settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'typography_footer_widgets', 'type' => 'typography', 'title' => esc_html__('Footer widgets', 'cruxstore'), 'subtitle' => esc_html__('Specify the footer widgets font properties.', 'cruxstore'), 'google' => true, 'text-align' => false, 'output' => array('#footer-area'), 'default' => array('color' => '#bbbbbb')), array('id' => 'typography_footer_widgets_title', 'type' => 'typography', 'title' => esc_html__('Footer widgets title', 'cruxstore'), 'subtitle' => esc_html__('Specify the footer widgets title font properties.', 'cruxstore'), 'letter-spacing' => true, 'text-align' => true, 'text-transform' => true, 'output' => array('#footer-area h3.widget-title'), 'default' => array('color' => '#ffffff')), array('id' => 'typography_footer_widgets_link', 'type' => 'link_color', 'title' => esc_html__('Footer widgets Links Color', 'cruxstore'), 'output' => array('#footer-area a'), 'default' => array('regular' => '#bbbbbb', 'hover' => '#ffffff', 'active' => '#ffffff')), array('id' => 'typography_footer_copyright_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Typography Footer Bottom settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'typography_footer_bottom_link', 'type' => 'link_color', 'title' => esc_html__('Footer Bottom Links Color', 'cruxstore'), 'output' => array('#footer-bottom a', '#footer-bottom button'), 'default' => array('regular' => '#bbbbbb', 'hover' => '#ffffff', 'active' => '#ffffff')), array('id' => 'typography_footer_bottom', 'type' => 'typography', 'title' => esc_html__('Footer Bottom', 'cruxstore'), 'subtitle' => esc_html__('Specify the footer font properties.', 'cruxstore'), 'text-align' => false, 'output' => array('#footer-bottom'), 'default' => array('color' => '#bbbbbb', 'font-size' => '', 'font-weight' => '', 'line-height' => '')), array('id' => 'typography_footer_copyright_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Typography Footer copyright settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'typography_footer_copyright_link', 'type' => 'link_color', 'title' => esc_html__('Footer Copyright Links Color', 'cruxstore'), 'output' => array('#footer-copyright a'), 'default' => array()), array('id' => 'typography_footer_copyright', 'type' => 'typography', 'title' => esc_html__('Footer copyright', 'cruxstore'), 'subtitle' => esc_html__('Specify the footer font properties.', 'cruxstore'), 'text-align' => false, 'output' => array('#footer-copyright'), 'default' => array('color' => '', 'font-size' => '', 'font-weight' => '', 'line-height' => '')), array('id' => 'typography_footer_copyright_space', 'type' => 'raw', 'content' => '<div style="height: 120px;"></div>', 'full_width' => true)));
     /**
      *  Typography sidebar
      **/
     $this->sections[] = array('id' => 'typography_sidebar', 'title' => esc_html__('Sidebar', 'cruxstore'), 'desc' => '', 'subsection' => true, 'fields' => array(array('id' => 'typography_sidebar', 'type' => 'typography', 'title' => esc_html__('Sidebar title', 'cruxstore'), 'subtitle' => esc_html__('Specify the sidebar title font properties.', 'cruxstore'), 'letter-spacing' => true, 'text-transform' => true, 'output' => array('.side-bar .widget .widget-title', '.wpb_widgetised_column .widget .widget-title'), 'default' => array()), array('id' => 'typography_sidebar_content', 'type' => 'typography', 'title' => esc_html__('Sidebar text', 'cruxstore'), 'subtitle' => esc_html__('Specify the sidebar title font properties.', 'cruxstore'), 'text-algin' => true, 'output' => array('.side-bar', '.wpb_widgetised_column'), 'default' => array())));
     /**
      *  Typography Navigation
      **/
     $this->sections[] = array('id' => 'typography_navigation', 'title' => esc_html__('Main Navigation', 'cruxstore'), 'desc' => '', 'subsection' => true, 'fields' => array(array('id' => 'typography-navigation_top', 'type' => 'typography', 'title' => esc_html__('Top Menu Level', 'cruxstore'), 'letter-spacing' => true, 'text-align' => false, 'color' => false, 'line-height' => false, 'text-transform' => true, 'output' => array('#nav #main-navigation > li > a', '#nav #main-nav-wc > li > a'), 'default' => array('font-family' => 'Poppins', 'font-weight' => '400')), array('type' => 'divide', 'id' => 'divide_fake'), array('id' => 'typography_navigation_dropdown', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Dropdown menu', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'typography_navigation_second', 'type' => 'typography', 'title' => esc_html__('Second Menu Level', 'cruxstore'), 'letter-spacing' => true, 'text-align' => false, 'color' => false, 'line-height' => false, 'text-transform' => true, 'output' => array('#nav #main-navigation > li ul.sub-menu-dropdown li a'), 'default' => array()), array('id' => 'typography_navigation_mega', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Mega menu', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'typography_navigation_heading', 'type' => 'typography', 'title' => esc_html__('Heading title', 'cruxstore'), 'letter-spacing' => true, 'text-align' => false, 'color' => false, 'line-height' => false, 'text-transform' => true, 'output' => array('#nav #main-navigation > li .cruxstore-megamenu-wrapper > ul > li > a', '#nav #main-navigation > li .cruxstore-megamenu-wrapper > ul > li > span', '#nav #main-navigation > li .cruxstore-megamenu-wrapper > ul > li .widget-title'), 'default' => array()), array('id' => 'typography_navigation_mega_link', 'type' => 'typography', 'title' => esc_html__('Mega menu', 'cruxstore'), 'google' => true, 'text-align' => false, 'color' => false, 'text-transform' => true, 'line-height' => false, 'output' => array('#nav #main-navigation > li > .cruxstore-megamenu-wrapper > .cruxstore-megamenu-ul > li ul.sub-menu-megamenu a'), 'default' => array())));
     /**
      *  Typography mobile Navigation
      **/
     $this->sections[] = array('id' => 'typography_mobile_navigation', 'title' => esc_html__('Mobile Navigation', 'cruxstore'), 'desc' => '', 'subsection' => true, 'fields' => array(array('id' => 'typography_mobile_navigation_top', 'type' => 'typography', 'title' => esc_html__('Top Menu Level', 'cruxstore'), 'letter-spacing' => true, 'text-align' => false, 'color' => false, 'line-height' => false, 'text-transform' => true, 'output' => array('.main-nav-mobile > ul > li > a'), 'default' => array('text-transform' => 'uppercase')), array('type' => 'divide', 'id' => 'divide_fake'), array('id' => 'typography_mobile_navigation_second', 'type' => 'typography', 'title' => esc_html__('Sub Menu Level', 'cruxstore'), 'letter-spacing' => true, 'text-align' => false, 'color' => false, 'line-height' => false, 'text-transform' => true, 'output' => array('.main-nav-mobile > ul > li ul.sub-menu-dropdown li a', '.main-nav-mobile > ul > li ul.sub-menu-megamenu li a')), array('id' => 'typography_mobile_navigation_heading', 'type' => 'typography', 'title' => esc_html__('Heading title', 'cruxstore'), 'letter-spacing' => true, 'text-align' => false, 'color' => false, 'line-height' => false, 'text-transform' => true, 'output' => array('.main-nav-mobile > ul > li div.cruxstore-megamenu-wrapper > ul > li > a', '.main-nav-mobile > ul > li div.cruxstore-megamenu-wrapper > ul > li > span', '.main-nav-mobile > ul > li div.cruxstore-megamenu-wrapper > ul > li .widget-title'), 'default' => array('text-transform' => 'uppercase', 'font-weight' => '700'))));
     /**
      *	Woocommerce
      **/
     $this->sections[] = array('id' => 'woocommerce', 'title' => esc_html__('Woocommerce', 'cruxstore'), 'desc' => '', 'icon' => 'fa fa-cart-arrow-down', 'fields' => array(array('id' => 'shop_single_product', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Shop settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'catalog_mode', 'type' => 'switch', 'title' => esc_html__('Catalog Mode', 'cruxstore'), 'desc' => esc_html__('When enabled, the feature Turns Off the shopping functionality of WooCommerce.', 'cruxstore'), "default" => 0, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'time_product_new', 'type' => 'text', 'title' => esc_html__('Time Product New', 'cruxstore'), 'default' => '30', 'desc' => esc_html__('Time Product New ( unit: days ).', 'cruxstore')), array('id' => 'shop_products_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Shop Products settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'shop_page_header', 'type' => 'switch', 'title' => esc_html__('Show Page header', 'cruxstore'), 'desc' => esc_html__('Show page header or?.', 'cruxstore'), "default" => 1, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'loop_shop_quickview', 'type' => 'switch', 'title' => esc_html__('Quick View', 'cruxstore'), "default" => 1, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'shop_sidebar', 'type' => 'select', 'title' => esc_html__('Shop: Sidebar configuration', 'cruxstore'), 'subtitle' => esc_html__("Please choose sidebar for shop post", 'cruxstore'), 'options' => array('full' => esc_html__('No sidebars', 'cruxstore'), 'left' => esc_html__('Left Sidebar', 'cruxstore'), 'right' => esc_html__('Right Layout', 'cruxstore')), 'default' => 'left', 'clear' => false), array('id' => 'shop_sidebar_left', 'type' => 'select', 'title' => esc_html__('Shop: Sidebar left area', 'cruxstore'), 'subtitle' => esc_html__("Please choose left sidebar ", 'cruxstore'), 'data' => 'sidebars', 'default' => 'primary-widget-area', 'required' => array('shop_sidebar', 'equals', 'left'), 'clear' => false), array('id' => 'shop_sidebar_right', 'type' => 'select', 'title' => esc_html__('Shop: Sidebar right area', 'cruxstore'), 'subtitle' => esc_html__("Please choose left sidebar ", 'cruxstore'), 'data' => 'sidebars', 'default' => 'primary-widget-area', 'required' => array('shop_sidebar', 'equals', 'right'), 'clear' => false), array('id' => 'shop_products_layout', 'type' => 'select', 'title' => esc_html__('Shop: Products default Layout', 'cruxstore'), 'options' => array('grid' => esc_html__('Grid', 'cruxstore'), 'lists' => esc_html__('Lists', 'cruxstore')), 'default' => 'grid'), array('id' => 'shop_gird_cols', 'type' => 'select', 'title' => esc_html__('Number column to display width gird mod', 'cruxstore'), 'options' => array('2' => 2, '3' => 3, '4' => 4), 'default' => 3), array('id' => 'shop_products_effect', 'type' => 'select', 'title' => esc_html__('Shop product effect', 'cruxstore'), 'options' => array('1' => esc_html__('Effect 1', 'cruxstore'), '2' => esc_html__('Effect 2', 'cruxstore'), '3' => esc_html__('Effect 3', 'cruxstore'), '4' => esc_html__('Effect 4', 'cruxstore'), '5' => esc_html__('Effect 5', 'cruxstore')), 'default' => '1'), array('id' => 'loop_shop_per_page', 'type' => 'text', 'title' => esc_html__('Number of products displayed per page', 'cruxstore'), 'default' => '12'), array('id' => 'shop_header_products', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Shop Header Settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'shop_header_tool_bar', 'type' => 'select', 'title' => esc_html__('Shop Header', 'cruxstore'), 'desc' => esc_html__('Select type shop header.', 'cruxstore'), 'options' => array('0' => esc_html__('Disable', 'cruxstore'), '1' => esc_html__('Default', 'cruxstore'), '2' => esc_html__('Categories', 'cruxstore')), 'default' => '1'), array('id' => 'shop_header_orderby', 'type' => 'select', 'title' => esc_html__('Categories - Order by', 'cruxstore'), 'desc' => esc_html__('The column to use for ordering categories', 'cruxstore'), 'options' => array('id' => esc_html__('ID', 'cruxstore'), 'name' => esc_html__('Name/Menu-order', 'cruxstore'), 'slug' => esc_html__('Slug', 'cruxstore'), 'count' => esc_html__('Count', 'cruxstore'), 'term_group' => esc_html__('Term Group', 'cruxstore')), 'default' => 'slug', 'required' => array('shop_header_tool_bar', 'equals', '2')), array('id' => 'shop_header_order', 'type' => 'select', 'title' => esc_html__('Categories - Order', 'cruxstore'), 'desc' => esc_html__('Which direction to order categories', 'cruxstore'), 'options' => array('ASC' => esc_html__('ASC', 'cruxstore'), 'DESC' => esc_html__('DESC', 'cruxstore')), 'default' => 'ASC', 'required' => array('shop_header_tool_bar', 'equals', '2')), array('id' => 'shop_header_filters', 'type' => 'switch', 'title' => esc_html__('Show Filters', 'cruxstore'), 'desc' => esc_html__('Display filters in the shop header.', 'cruxstore'), "default" => 1, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore'), 'required' => array('shop_header_tool_bar', 'equals', '2')), array('id' => 'shop_header_search', 'type' => 'switch', 'title' => esc_html__('Show Search', 'cruxstore'), 'desc' => esc_html__('Display search box in the shop header.', 'cruxstore'), "default" => 1, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore'), 'required' => array('shop_header_tool_bar', 'equals', '2')), array('id' => 'shop_header_ajax', 'type' => 'switch', 'title' => esc_html__('Ajax for fillter', 'cruxstore'), 'desc' => esc_html__('Enable ajax when use filter.', 'cruxstore'), "default" => 1, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore'), 'required' => array('shop_header_tool_bar', 'equals', '2')), array('id' => 'shop_attribute_swatches', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Attribute swatches settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'product_attribute_swatche', 'type' => 'select', 'title' => esc_html__('Grid swatche attribute to display', 'cruxstore'), 'subtitle' => esc_html__("Choose attribute that will be show in products grid.", 'cruxstore'), 'options' => $taxonomy_names, 'default' => 'pa_color'), array('id' => 'shop_single_product', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Single Product settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'product_detail_layout', 'type' => 'select', 'title' => esc_html__('Product layout', 'cruxstore'), 'subtitle' => esc_html__("Please choose single product layout.", 'cruxstore'), 'options' => array('layout1' => esc_html__('Layout 1', 'cruxstore'), 'layout2' => esc_html__('Layout 2', 'cruxstore'), 'layout3' => esc_html__('Layout 3', 'cruxstore')), 'default' => 'layout1')));
     /**
      *	Page header
      **/
     $this->sections[] = array('id' => 'page_header_section', 'title' => esc_html__('Page header', 'cruxstore'), 'desc' => '', 'icon' => 'fa fa-header', 'fields' => array(array('id' => 'title_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Page header settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'title_layout', 'type' => 'select', 'title' => esc_html__('Page header layout', 'cruxstore'), 'subtitle' => esc_html__('Select your preferred Page header layout.', 'cruxstore'), 'options' => array('sides' => esc_html__('Sides', 'cruxstore'), 'centered' => esc_html__('Centered', 'cruxstore')), 'default' => 'centered'), array('id' => 'title_align', 'type' => 'select', 'title' => esc_html__('Page header align', 'cruxstore'), 'subtitle' => esc_html__('Please select page header align', 'cruxstore'), 'options' => array('left' => esc_html__('Left', 'cruxstore'), 'center' => esc_html__('Center', 'cruxstore'), 'right' => esc_html__('Right', 'cruxstore')), 'default' => 'center', 'desc' => esc_html__("Align Center don't support for layout Sides", 'cruxstore')), array('id' => 'title_heading', 'type' => 'switch', 'title' => esc_html__('Show title', 'cruxstore'), 'default' => true, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'title_breadcrumbs', 'type' => 'switch', 'title' => esc_html__('Show breadcrumbs', 'cruxstore'), 'default' => true, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'title_breadcrumbs_mobile', 'type' => 'switch', 'title' => esc_html__('Breadcrumbs on Mobile Devices', 'cruxstore'), 'default' => false, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'title_style_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Page header style settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'title_padding', 'type' => 'spacing', 'mode' => 'padding', 'left' => false, 'right' => false, 'output' => array('.page-header'), 'units' => array('px'), 'units_extended' => 'true', 'title' => esc_html__('Title padding', 'cruxstore'), 'default' => array()), array('id' => 'title_background', 'type' => 'background', 'title' => esc_html__('Background', 'cruxstore'), 'subtitle' => esc_html__('Page header with image, color, etc.', 'cruxstore'), 'output' => array('.page-header')), array('id' => 'title_typography_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Page header typography settings', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'title_typography', 'type' => 'typography', 'title' => esc_html__('Typography title', 'cruxstore'), 'google' => true, 'text-align' => false, 'line-height' => false, 'letter-spacing' => true, 'text-transform' => true, 'output' => array('.page-header .page-header-title')), array('id' => 'title_typography_subtitle', 'type' => 'typography', 'title' => esc_html__('Typography sub title', 'cruxstore'), 'google' => true, 'text-align' => false, 'line-height' => false, 'text-transform' => true, 'output' => array('.page-header .page-header-subtitle')), array('id' => 'title_typography_breadcrumbs', 'type' => 'typography', 'title' => esc_html__('Typography breadcrumbs', 'cruxstore'), 'google' => true, 'text-align' => false, 'line-height' => false, 'output' => array('.page-header .woocommerce-breadcrumb'))));
     /**
      * General page
      *
      */
     $this->sections[] = array('title' => esc_html__('Page', 'cruxstore'), 'desc' => esc_html__('General Page Options', 'cruxstore'), 'icon' => 'fa fa-suitcase', 'fields' => array(array('id' => 'show_page_header', 'type' => 'switch', 'title' => esc_html__('Show Page header', 'cruxstore'), 'desc' => esc_html__('Show page header or?.', 'cruxstore'), "default" => 1, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'page_sidebar', 'type' => 'select', 'title' => esc_html__('Sidebar configuration', 'cruxstore'), 'options' => array('full' => esc_html__('No sidebars', 'cruxstore'), 'left' => esc_html__('Left Sidebar', 'cruxstore'), 'right' => esc_html__('Right Layout', 'cruxstore')), 'default' => '', 'clear' => false), array('id' => 'page_sidebar_left', 'type' => 'select', 'title' => esc_html__('Sidebar left area', 'cruxstore'), 'subtitle' => esc_html__("Please choose default layout", 'cruxstore'), 'data' => 'sidebars', 'default' => 'primary-widget-area', 'required' => array('page_sidebar', 'equals', 'left')), array('id' => 'page_sidebar_right', 'type' => 'select', 'title' => esc_html__('Sidebar right area', 'cruxstore'), 'subtitle' => esc_html__("Please choose page layout", 'cruxstore'), 'data' => 'sidebars', 'default' => 'primary-widget-area', 'required' => array('page_sidebar', 'equals', 'right')), array('id' => 'show_page_comment', 'type' => 'switch', 'title' => esc_html__('Show comments on page ?', 'cruxstore'), 'desc' => esc_html__('Show or hide the readmore button.', 'cruxstore'), "default" => 1, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore'))));
     /**
      * General Blog
      *
      */
     $this->sections[] = array('title' => esc_html__('Blog', 'cruxstore'), 'icon' => 'fa fa-pencil', 'desc' => esc_html__('General Blog Options', 'cruxstore'));
     /**
      *  Archive settings
      **/
     $this->sections[] = array('id' => 'archive_section', 'title' => esc_html__('Archive', 'cruxstore'), 'desc' => 'Archive post settings', 'subsection' => true, 'fields' => array(array('id' => 'archive_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Archive post general', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'archive_page_header', 'type' => 'switch', 'title' => esc_html__('Show Page header', 'cruxstore'), 'desc' => esc_html__('Show page header or?.', 'cruxstore'), "default" => 1, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'archive_sidebar', 'type' => 'select', 'title' => esc_html__('Sidebar configuration', 'cruxstore'), 'subtitle' => esc_html__("Please choose archive page ", 'cruxstore'), 'options' => array('full' => esc_html__('No sidebars', 'cruxstore'), 'left' => esc_html__('Left Sidebar', 'cruxstore'), 'right' => esc_html__('Right Layout', 'cruxstore')), 'default' => 'right', 'clear' => false), array('id' => 'archive_sidebar_left', 'type' => 'select', 'title' => esc_html__('Sidebar left area', 'cruxstore'), 'subtitle' => esc_html__("Please choose left sidebar ", 'cruxstore'), 'data' => 'sidebars', 'default' => 'primary-widget-area', 'required' => array('archive_sidebar', 'equals', 'left'), 'clear' => false), array('id' => 'archive_sidebar_right', 'type' => 'select', 'title' => esc_html__('Sidebar right area', 'cruxstore'), 'subtitle' => esc_html__("Please choose left sidebar ", 'cruxstore'), 'data' => 'sidebars', 'default' => 'primary-widget-area', 'required' => array('archive_sidebar', 'equals', 'right'), 'clear' => false), array('type' => 'divide', 'id' => 'divide_fake'), array('id' => 'archive_loop_style', 'type' => 'select', 'title' => esc_html__('Loop Style', 'cruxstore'), 'desc' => '', 'options' => array('classic' => esc_html__('Classic', 'cruxstore'), 'list' => esc_html__('List', 'cruxstore'), 'grid' => esc_html__('Grid', 'cruxstore'), 'masonry' => esc_html__('Masonry', 'cruxstore'), 'medium' => esc_html__('Medium', 'cruxstore')), 'default' => 'grid'), array('id' => 'archive_columns', 'type' => 'select', 'title' => esc_html__('Columns on desktop', 'cruxstore'), 'desc' => '', 'options' => array('2' => esc_html__('2 columns', 'js_composer'), '3' => esc_html__('3 columns', 'js_composer'), '4' => esc_html__('4 columns', 'js_composer')), 'default' => '2', 'required' => array('archive_loop_style', 'equals', array('grid', 'masonry'))), array('type' => 'divide', 'id' => 'divide_fake'), array('id' => 'archive_posts_per_page', 'type' => 'text', 'title' => esc_html__('Posts per page', 'cruxstore'), 'desc' => esc_html__("Insert the total number of pages.", 'cruxstore'), 'default' => 14), array('id' => 'archive_excerpt_length', 'type' => 'text', 'title' => esc_html__('Excerpt Length', 'cruxstore'), 'desc' => esc_html__("Insert the number of words you want to show in the post excerpts.", 'cruxstore'), 'default' => 35), array('id' => 'archive_readmore', 'type' => 'select', 'title' => esc_html__('Readmore button', 'cruxstore'), 'desc' => '', 'options' => array('none' => esc_html__('None', 'js_composer'), 'link' => esc_html__('Link', 'js_composer')), 'default' => 'none', 'required' => array('archive_loop_style', '!=', 'medium')), array('id' => 'archive_pagination', 'type' => 'select', 'title' => esc_html__('Pagination Type', 'cruxstore'), 'desc' => esc_html__('Select the pagination type.', 'cruxstore'), 'options' => array('normal' => esc_html__('Normal pagination', 'cruxstore'), 'button' => esc_html__('Next - Previous button', 'cruxstore')), 'default' => 'normal')));
     /**
      *  Single post settings
      **/
     $this->sections[] = array('id' => 'post_single_section', 'title' => esc_html__('Single Post', 'cruxstore'), 'desc' => 'Single post settings', 'subsection' => true, 'fields' => array(array('id' => 'blog_single_heading', 'type' => 'raw', 'content' => '<div class="section-heading">' . esc_html__('Single post general', 'cruxstore') . '</div>', 'full_width' => true), array('id' => 'single_page_header', 'type' => 'text', 'title' => esc_html__('Custom Page header', 'cruxstore'), 'subtitle' => esc_html__("Empty if you want use post title", 'cruxstore'), 'default' => esc_html__('Welcome to our blog', 'cruxstore')), array('id' => 'single_sidebar', 'type' => 'select', 'title' => esc_html__('Sidebar configuration', 'cruxstore'), 'subtitle' => esc_html__("Please choose sidebar for single post", 'cruxstore'), 'options' => array('full' => esc_html__('No sidebars', 'cruxstore'), 'left' => esc_html__('Left Sidebar', 'cruxstore'), 'right' => esc_html__('Right Layout', 'cruxstore')), 'default' => 'right', 'clear' => false), array('id' => 'single_sidebar_left', 'type' => 'select', 'title' => esc_html__('Single post: Sidebar left area', 'cruxstore'), 'subtitle' => esc_html__("Please choose left sidebar ", 'cruxstore'), 'data' => 'sidebars', 'default' => 'primary-widget-area', 'required' => array('single_sidebar', 'equals', 'left'), 'clear' => false), array('id' => 'single_sidebar_right', 'type' => 'select', 'title' => esc_html__('Single post: Sidebar right area', 'cruxstore'), 'subtitle' => esc_html__("Please choose left sidebar ", 'cruxstore'), 'data' => 'sidebars', 'default' => 'primary-widget-area', 'required' => array('single_sidebar', 'equals', 'right'), 'clear' => false), array('id' => 'single_image_size', 'type' => 'select', 'options' => $image_sizes, 'title' => esc_html__('Image size', 'cruxstore'), 'desc' => esc_html__("Select image size.", 'cruxstore'), 'default' => 'full'), array('type' => 'divide', 'id' => 'divide_fake'), array('id' => 'single_share_box', 'type' => 'switch', 'title' => esc_html__('Share box in posts', 'cruxstore'), 'desc' => esc_html__('Show share box in blog posts.', 'cruxstore'), "default" => 1, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'single_next_prev', 'type' => 'switch', 'title' => esc_html__('Previous & next buttons', 'cruxstore'), 'desc' => esc_html__('Show Previous & next buttons in blog posts.', 'cruxstore'), "default" => 1, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'single_author', 'type' => 'switch', 'title' => esc_html__('Author info in posts', 'cruxstore'), 'desc' => esc_html__('Show author info in blog posts.', 'cruxstore'), "default" => 1, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'single_related', 'type' => 'switch', 'title' => esc_html__('Related posts', 'cruxstore'), 'desc' => esc_html__('Show related posts in blog posts.', 'cruxstore'), "default" => 0, 'on' => esc_html__('Enabled', 'cruxstore'), 'off' => esc_html__('Disabled', 'cruxstore')), array('id' => 'single_related_type', 'type' => 'select', 'title' => esc_html__('Related Query Type', 'cruxstore'), 'options' => array('categories' => esc_html__('Categories', 'cruxstore'), 'tags' => esc_html__('Tags', 'cruxstore'), 'author' => esc_html__('Author', 'cruxstore')), 'required' => array('single_related', 'equals', '1'), 'default' => 'categories')));
     /**
      *	Socials Link
      **/
     $this->sections[] = array('id' => 'social', 'title' => esc_html__('Socials', 'cruxstore'), 'desc' => esc_html__('Social and share settings', 'cruxstore'), 'icon' => 'fa fa-facebook', 'fields' => array(array('id' => 'twitter', 'type' => 'text', 'title' => esc_html__('Twitter', 'cruxstore'), 'subtitle' => esc_html__("Your Twitter username (no @).", 'cruxstore'), 'default' => '#'), array('id' => 'facebook', 'type' => 'text', 'title' => esc_html__('Facebook', 'cruxstore'), 'subtitle' => esc_html__("Your Facebook page/profile url", 'cruxstore'), 'default' => '#'), array('id' => 'pinterest', 'type' => 'text', 'title' => esc_html__('Pinterest', 'cruxstore'), 'subtitle' => esc_html__("Your Pinterest username", 'cruxstore'), 'default' => '#'), array('id' => 'dribbble', 'type' => 'text', 'title' => esc_html__('Dribbble', 'cruxstore'), 'subtitle' => esc_html__("Your Dribbble username", 'cruxstore'), 'desc' => '', 'default' => ''), array('id' => 'vimeo', 'type' => 'text', 'title' => esc_html__('Vimeo', 'cruxstore'), 'subtitle' => esc_html__("Your Vimeo username", 'cruxstore'), 'desc' => '', 'default' => '#'), array('id' => 'tumblr', 'type' => 'text', 'title' => esc_html__('Tumblr', 'cruxstore'), 'subtitle' => esc_html__("Your Tumblr username", 'cruxstore'), 'desc' => '', 'default' => '#'), array('id' => 'skype', 'type' => 'text', 'title' => esc_html__('Skype', 'cruxstore'), 'subtitle' => esc_html__("Your Skype username", 'cruxstore'), 'desc' => '', 'default' => ''), array('id' => 'linkedin', 'type' => 'text', 'title' => esc_html__('LinkedIn', 'cruxstore'), 'subtitle' => esc_html__("Your LinkedIn page/profile url", 'cruxstore'), 'desc' => '', 'default' => ''), array('id' => 'googleplus', 'type' => 'text', 'title' => esc_html__('Google+', 'cruxstore'), 'subtitle' => esc_html__("Your Google+ page/profile URL", 'cruxstore'), 'desc' => '', 'default' => '#'), array('id' => 'youtube', 'type' => 'text', 'title' => esc_html__('YouTube', 'cruxstore'), 'subtitle' => esc_html__("Your YouTube username", 'cruxstore'), 'desc' => '', 'default' => ''), array('id' => 'instagram', 'type' => 'text', 'title' => esc_html__('Instagram', 'cruxstore'), 'subtitle' => esc_html__("Your Instagram username", 'cruxstore'), 'desc' => '', 'default' => ''), array('id' => 'behance', 'type' => 'text', 'title' => esc_html__('Behance', 'cruxstore'), 'subtitle' => esc_html__("Your behance username", 'cruxstore'), 'desc' => '', 'default' => '')));
     /**
      *	Popup
      **/
     $this->sections[] = array('id' => 'popup', 'title' => esc_html__('Popup', 'cruxstore'), 'icon' => 'fa fa-bullhorn', 'fields' => array(array('id' => 'enable_popup', 'type' => 'switch', 'title' => esc_html__('Enable Popup', 'cruxstore'), 'subtitle' => esc_html__('', 'cruxstore'), "default" => false, 'on' => esc_html__('On', 'cruxstore'), 'off' => esc_html__('Off', 'cruxstore')), array('id' => 'time_show', 'type' => 'slider', 'title' => esc_html__('Time to show', 'cruxstore'), 'desc' => esc_html__('Delay time for show. (seconds)', 'cruxstore'), 'default' => 0, 'min' => 0, 'step' => 1, 'max' => 20, 'display_value' => 'text', 'required' => array('enable_popup', 'equals', 1))));
     /**
      *	Subscribe
      **/
     $this->sections[] = array('id' => 'subscribe', 'title' => esc_html__('Subscribe', 'cruxstore'), 'icon' => 'fa fa-envelope-o', 'fields' => array(array('id' => 'popup_image', 'type' => 'media', 'url' => true, 'compiler' => true, 'title' => esc_html__('Popup Image', 'cruxstore'), 'required' => array('enable_popup', 'equals', 1)), array('id' => 'content_popup', 'type' => 'editor', 'title' => esc_html__('Popup Content', 'cruxstore'), 'subtitle' => esc_html__('', 'cruxstore'), 'required' => array('enable_popup', 'equals', 1), 'default' => '<h3>NEWSLETTER</h3><p>Subscribe to the Universal mailing list to receive updates on new arrivals, offers and other discount information.</p>'), array('id' => 'popup_form', 'type' => 'textarea', 'title' => esc_html__('Popup form', 'cruxstore'), 'desc' => esc_html__('You can use shortcode or Embed code in here.', 'cruxstore'), 'validate' => 'html')));
     /**
      *  Advanced
      **/
     $this->sections[] = array('id' => 'advanced', 'title' => esc_html__('Advanced', 'cruxstore'), 'desc' => '', 'icon' => 'fa fa-cog');
     /**
      *  Advanced Social Share
      **/
     $this->sections[] = array('id' => 'share_section', 'title' => esc_html__('Social Share', 'cruxstore'), 'desc' => '', 'subsection' => true, 'fields' => array(array('id' => 'social_share', 'type' => 'sortable', 'mode' => 'checkbox', 'title' => esc_html__('Social Share', 'cruxstore'), 'desc' => esc_html__('Reorder and Enable/Disable Social Share Buttons.', 'cruxstore'), 'options' => array('facebook' => esc_html__('Facebook', 'cruxstore'), 'twitter' => esc_html__('Twitter', 'cruxstore'), 'google_plus' => esc_html__('Google+', 'cruxstore'), 'pinterest' => esc_html__('Pinterest', 'cruxstore'), 'linkedin' => esc_html__('Linkedin', 'cruxstore'), 'tumblr' => esc_html__('Tumblr', 'cruxstore'), 'mail' => esc_html__('Mail', 'cruxstore')), 'default' => array('facebook' => true, 'twitter' => true, 'google_plus' => false, 'pinterest' => true, 'linkedin' => false, 'tumblr' => false, 'mail' => false))));
     /**
      *  Advanced Custom CSS
      **/
     $this->sections[] = array('id' => 'advanced_css', 'title' => esc_html__('Custom CSS', 'cruxstore'), 'desc' => '', 'subsection' => true, 'fields' => array(array('id' => 'advanced_editor_css', 'type' => 'ace_editor', 'title' => esc_html__('CSS Code', 'cruxstore'), 'subtitle' => esc_html__('Paste your CSS code here.', 'cruxstore'), 'mode' => 'css', 'theme' => 'chrome', 'full_width' => true)));
     /**
      *  Advanced Custom CSS
      **/
     $this->sections[] = array('id' => 'advanced_js', 'title' => esc_html__('Custom JS', 'cruxstore'), 'desc' => '', 'subsection' => true, 'fields' => array(array('id' => 'advanced_editor_js', 'type' => 'ace_editor', 'title' => esc_html__('JS Code', 'cruxstore'), 'subtitle' => esc_html__('Paste your JS code here.', 'cruxstore'), 'mode' => 'javascript', 'theme' => 'chrome', 'default' => "jQuery(document).ready(function(){\n\n});", 'full_width' => true)));
     /**
      *  Advanced Tracking Code
      **/
     $this->sections[] = array('id' => 'advanced_tracking', 'title' => esc_html__('Tracking Code', 'cruxstore'), 'desc' => '', 'subsection' => true, 'fields' => array(array('id' => 'advanced_tracking_code', 'type' => 'textarea', 'title' => esc_html__('Tracking Code', 'cruxstore'), 'desc' => esc_html__('Paste your Google Analytics (or other) tracking code here. This will be added into the header template of your theme. Please put code inside script tags.', 'cruxstore'))));
     $info_arr = array();
     $theme = wp_get_theme();
     $info_arr[] = "<li><span>" . esc_html__('Theme Name:', 'cruxstore') . " </span>" . $theme->get('Name') . '</li>';
     $info_arr[] = "<li><span>" . esc_html__('Theme Version:', 'cruxstore') . " </span>" . $theme->get('Version') . '</li>';
     $info_arr[] = "<li><span>" . esc_html__('Theme URI:', 'cruxstore') . " </span>" . $theme->get('ThemeURI') . '</li>';
     $info_arr[] = "<li><span>" . esc_html__('Author:', 'cruxstore') . " </span>" . $theme->get('Author') . '</li>';
     $system_info = sprintf("<div class='troubleshooting'><ul>%s</ul></div>", implode('', $info_arr));
     /**
      *  Advanced Troubleshooting
      **/
     $this->sections[] = array('id' => 'advanced_troubleshooting', 'title' => esc_html__('Troubleshooting', 'cruxstore'), 'desc' => '', 'subsection' => true, 'fields' => array(array('id' => 'opt-raw_info_4', 'type' => 'raw', 'content' => $system_info, 'full_width' => true)));
 }
Example #9
0
        }
        $items_wrap .= sprintf('<li class="menu-item menu-item-currency"><a href="#">%s</a><ul class="sub-menu-dropdown">%s</ul></li>', esc_html__('Currency', 'cruxstore') . ': ' . $currency_active, $currency_html);
    }
    if (!cruxstore_option('catalog_mode', 0)) {
        $text = is_user_logged_in() ? esc_html__('My Account', 'cruxstore') : esc_html__('Login', 'cruxstore');
        $items_wrap .= sprintf('<li class="menu-item menu-item-myaccount"><a href="%s">call %s</a>', get_permalink(get_option('woocommerce_myaccount_page_id')), $text);
        if (defined('YITH_WCWL')) {
            global $yith_wcwl;
            $wishlist = sprintf('<a href="%s">%s</a>', esc_url($yith_wcwl->get_wishlist_url()), esc_html__('wishlist', 'cruxstore'));
            $items_wrap .= sprintf('<li class="menu-item menu-item-wishlist">%s</li>', $wishlist);
        }
    }
}
if (cruxstore_option('header_search', 1)) {
    $header_search_type = cruxstore_option('header_search_type', 'all');
    if ($header_search_type == 'product' && cruxstore_is_wc()) {
        $search = get_product_search_form(false);
    } else {
        $search = get_search_form(false);
    }
    $items_wrap .= sprintf('<li class="menu-item menu-item-search-form">%s</li>', $search);
}
$primary = cruxstore_get_mainmenu();
if (!$primary['custom']) {
    if (has_nav_menu($primary['menu'])) {
        wp_nav_menu(array('theme_location' => $primary['menu'], 'container' => 'nav', 'container_class' => 'main-nav-mobile', 'container_id' => 'main-nav-mobile', 'menu_class' => 'menu navigation-mobile', 'link_before' => '<span>', 'link_after' => '</span>', 'walker' => new KTMegaWalker(), 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s' . $items_wrap . '</ul>'));
    } else {
        printf('<nav id="main-nav-mobile" class="main-nav-mobile"><ul class="menu navigation-mobile"><li><a href="%s">%s</a></li>%s</ul></nav>', admin_url('nav-menus.php'), esc_html__("Define your site main menu!", 'cruxstore'), $items_wrap);
    }
} else {
    wp_nav_menu(array('menu' => $primary['menu'], 'container' => 'nav', 'container_class' => 'main-nav-mobile', 'container_id' => 'main-nav-mobile', 'menu_class' => 'menu navigation-mobile', 'link_before' => '<span>', 'link_after' => '</span>', 'walker' => new KTMegaWalker(), 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s' . $items_wrap . '</ul>'));
Example #10
0
<?php

if (cruxstore_is_wc() && cruxstore_option('header_wishlist', 1) && defined('YITH_WCWL') && !cruxstore_option('catalog_mode', 0)) {
    ?>
    <li class="shopping-bag shopping-bag-wishlist">
        <?php 
    cruxstore_woocommerce_get_wishlist();
    ?>
    </li>
<?php 
}
Example #11
0
/**
 * Theme Custom CSS
 *
 * @since       1.0
 * @return      void
 * @access      public
 */
function cruxstore_setting_script()
{
    $advanced_css = cruxstore_option('advanced_editor_css');
    $css = $advanced_css;
    $styling_link = cruxstore_option('styling_link');
    if ($styling_link['hover']) {
        $css .= 'a:hover,a:focus{color: ' . $styling_link['hover'] . ';}';
    }
    if ($styling_link['active']) {
        $css .= 'a:active{color: ' . $styling_link['active'] . ';}';
    }
    $is_shop = false;
    if (is_archive()) {
        if (cruxstore_is_wc()) {
            if (is_shop()) {
                $is_shop = true;
            }
        }
    }
    if (is_page() || is_singular() || $is_shop || is_home()) {
        global $post;
        $post_id = $post->ID;
        if ($is_shop) {
            $post_id = get_option('woocommerce_shop_page_id');
        } elseif (is_home()) {
            $post_id = get_option('page_for_posts', true);
        }
        $pageh_spacing = cruxstore_meta('_cruxstore_page_top_spacing', array(), $post_id);
        if ($pageh_spacing != '') {
            $css .= '.content-area-inner{padding-top: ' . $pageh_spacing . ';}';
        }
        $pageh_spacing = cruxstore_meta('_cruxstore_page_bottom_spacing', array(), $post_id);
        if ($pageh_spacing != '') {
            $css .= '.content-area-inner{padding-bottom:' . $pageh_spacing . ';}';
        }
        $pageh_top = cruxstore_meta('_cruxstore_page_header_top', array(), $post_id);
        if ($pageh_top != '') {
            $css .= 'div.page-header{padding-top: ' . $pageh_top . ';}';
        }
        $pageh_bottom = cruxstore_meta('_cruxstore_page_header_bottom', array(), $post_id);
        if ($pageh_bottom != '') {
            $css .= 'div.page-header{padding-bottom: ' . $pageh_bottom . ';}';
        }
        $pageh_title_color = cruxstore_meta('_cruxstore_page_header_title_color', array(), $post_id);
        if ($pageh_title_color != '') {
            $css .= 'div.page-header .page-header-title{color:' . $pageh_title_color . ';}';
        }
        $pageh_subtitle_color = cruxstore_meta('_cruxstore_page_header_subtitle_color', array(), $post_id);
        if ($pageh_subtitle_color != '') {
            $css .= 'div.page-header .page-header-subtitle{color:' . $pageh_subtitle_color . ';}';
        }
        $pageh_breadcrumbs_color = cruxstore_meta('_cruxstore_page_header_breadcrumbs_color', array(), $post_id);
        if ($pageh_breadcrumbs_color != '') {
            $css .= 'div.page-header .woocommerce-breadcrumb{color:' . $pageh_breadcrumbs_color . ';}';
        }
        $css .= cruxstore_render_custom_css('_cruxstore_page_header_background', 'div.page-header', $post_id);
    }
    if ($navigation_space = cruxstore_option('navigation_space', 20)) {
        $css .= '#nav #main-navigation > li + li{margin-left: ' . $navigation_space . 'px;}';
    }
    if ($mega_border_color = cruxstore_option('mega_border_color', '#ebebeb')) {
        $mega_border_arr = array('#nav #main-navigation > li .cruxstore-megamenu-wrapper.megamenu-layout-table > ul > li > ul > li', '#nav #main-navigation > li .cruxstore-megamenu-wrapper > ul > li > a', '#nav #main-navigation > li .cruxstore-megamenu-wrapper > ul > li > span', '#nav #main-navigation > li .cruxstore-megamenu-wrapper > ul > li .widget-title', '#nav #main-navigation > li .cruxstore-megamenu-wrapper.megamenu-layout-table > ul > li');
        $css .= implode($mega_border_arr, ',') . '{border-color: ' . $mega_border_color . ';}';
    }
    if ($toolbar_color = cruxstore_option('header_toolbar_border_color', '#ebebeb')) {
        $toolbar_color_arr = array('.topbar', '.top-navigation > li', '.header-container.header-layout8 .top-navigation > li:first-child', '.header-container:not(.header-layout8) .topbar .topbar-right .top-navigation > li:first-child');
        $css .= implode($toolbar_color_arr, ',') . '{border-color: ' . $toolbar_color . ';}';
    }
    if ($toolbar_color_light = cruxstore_option('header_toolbar_light_border_color', array('color' => '#f6f6f6', 'alpha' => '.2'))) {
        $toolbar_color_light_arr = array('.header-transparent.header-light .topbar', '.header-transparent.header-light .top-navigation > li', '.header-transparent.header-light.header-container.header-layout8 .top-navigation > li:first-child', '.header-transparent.header-light.header-container:not(.header-layout8) .topbar .topbar-right .top-navigation > li:first-child');
        $css .= implode($toolbar_color_light_arr, ',') . '{border-color: ' . cruxstore_hex2rgba($toolbar_color_light['color'], $toolbar_color_light['alpha']) . ';}';
    }
    if ($navigation_height = cruxstore_option('navigation_height', 102)) {
        if (isset($navigation_height['height'])) {
            $navigation_arr = array('#nav #main-nav-socials > li > a', '#nav #main-nav-wc > li > a', '#nav #main-nav-tool > li > a', '#nav #main-navigation > li > a');
            $css .= implode($navigation_arr, ',') . '{line-height: ' . intval($navigation_height['height']) . 'px;}';
        }
    }
    if ($navigation_height_fixed = cruxstore_option('navigation_height_fixed', 102)) {
        if (isset($navigation_height_fixed['height'])) {
            $navigation_fixed_arr = array('.is-sticky .apply-sticky #nav #main-nav-socials > li > a', '.is-sticky .apply-sticky #nav #main-nav-wc > li > a', '.is-sticky .apply-sticky #nav #main-nav-tool > li > a', '.is-sticky .apply-sticky #nav #main-navigation > li > a');
            $css .= implode($navigation_fixed_arr, ',') . '{line-height: ' . intval($navigation_height_fixed['height']) . 'px;}';
        }
    }
    $header_sticky_opacity = cruxstore_option('header_sticky_opacity', 0.8);
    $css .= '.header-sticky-background{opacity:' . $header_sticky_opacity . ';}';
    $css .= '@media (max-width: 600px){body.opened-nav-animate.admin-bar #wpadminbar{margin-top:-46px}}';
    wp_add_inline_style('cruxstore-main', $css);
}
Example #12
0
/**
 * Woocommerce cart in header
 *
 * @since 1.0
 */
function cruxstore_woocommerce_get_cart()
{
    if (cruxstore_is_wc()) {
        cruxstore_cart_link();
        if (!is_cart() && !is_checkout()) {
            ?>
            <div class="navigation-submenu shopping-bag-content woocommerce widget_shopping_cart">
                <?php 
            the_widget('WC_Widget_Cart', 'title=');
            ?>
            </div><!-- .shopping-bag-content -->
            <?php 
        }
    }
}