0byt3m1n1
Path:
/
data
/
27
/
5
/
48
/
71
/
5374886
/
user
/
6435255
/
htdocs
/
wp-content
/
themes
/
Melos_Pro
/
admin
/
main
/
[
Home
]
File: options.php
<?php /** * ReduxFramework Sample Config File * For full documentation, please visit: http://docs.reduxframework.com/ */ if ( ! class_exists( 'Redux' ) ) { return; } // This is your option name where all the Redux data is stored. $opt_name = "thinkup_redux_variables"; // This line is adding in extensions. // Redux::setExtensions( $opt_name, dirname(__FILE__).'/../main-extensions'); /* * * --> Used within different fields. Simply examples. Search for ACTUAL DECLARATION for field examples * */ $sampleHTML = ''; if ( file_exists( dirname( __FILE__ ) . '/info-html.html' ) ) { Redux_Functions::initWpFilesystem(); global $wp_filesystem; $sampleHTML = $wp_filesystem->get_contents( dirname( __FILE__ ) . '/info-html.html' ); } // Background Patterns Reader $sample_patterns_path = ReduxFramework::$_dir . '../sample/patterns/'; $sample_patterns_url = ReduxFramework::$_url . '../sample/patterns/'; $sample_patterns = array(); if ( is_dir( $sample_patterns_path ) ) { if ( $sample_patterns_dir = opendir( $sample_patterns_path ) ) { $sample_patterns = array(); while ( ( $sample_patterns_file = readdir( $sample_patterns_dir ) ) !== false ) { if ( stristr( $sample_patterns_file, '.png' ) !== false || stristr( $sample_patterns_file, '.jpg' ) !== false ) { $name = explode( '.', $sample_patterns_file ); $name = str_replace( '.' . end( $name ), '', $sample_patterns_file ); $sample_patterns[] = array( 'alt' => $name, 'img' => $sample_patterns_url . $sample_patterns_file ); } } } } /** * ---> SET ARGUMENTS * All the possible arguments for Redux. * For full documentation on arguments, please refer to: https://github.com/ReduxFramework/ReduxFramework/wiki/Arguments * */ $theme = wp_get_theme(); // For use with some settings. Not necessary. $args = array( // TYPICAL -> Change these values as you need/desire 'opt_name' => $opt_name, // This is where your data is stored in the database and also becomes your global variable name. 'display_name' => $theme->get( 'Name' ), // Name that appears at the top of your panel 'display_version' => $theme->get( 'Version' ), // Version that appears at the top of your panel 'menu_type' => 'menu', //Specify if the admin menu should appear or not. Options: menu or submenu (Under appearance only) 'allow_sub_menu' => false, // Show the sections below the admin menu item or not 'menu_title' => __( 'Theme Options', 'melos' ), 'page_title' => __( 'Theme Options', 'melos' ), // You will need to generate a Google API key to use this feature. // Please visit: https://developers.google.com/fonts/docs/developer_api#Auth 'google_api_key' => '', // Set it you want google fonts to update weekly. A google_api_key value is required. 'google_update_weekly' => false, // Must be defined to add google fonts to the typography module 'async_typography' => false, // Use a asynchronous font on the front end or font string //'disable_google_fonts_link' => true, // Disable this in case you want to create your own google fonts loader 'admin_bar' => true, // Show the panel pages on the admin bar 'admin_bar_icon' => 'dashicons-portfolio', // Choose an icon for the admin bar menu 'admin_bar_priority' => 50, // Choose an priority for the admin bar menu 'global_variable' => '', // Set a different name for your global variable other than the opt_name 'dev_mode' => false, // Show the time the page took to load, etc 'update_notice' => false, // If dev_mode is enabled, will notify developer of updated versions available in the GitHub Repo 'customizer_only' => false, 'customizer' => true, // Enable basic customizer support //'open_expanded' => true, // Allow you to start the panel in an expanded way initially. //'disable_save_warn' => true, // Disable the save warning when a user changes a field // OPTIONAL -> Give you extra features 'page_priority' => null, // Order where the menu appears in the admin area. If there is any conflict, something will not show. Warning. 'page_parent' => 'themes.php', // For a full list of options, visit: http://codex.wordpress.org/Function_Reference/add_submenu_page#Parameters 'page_permissions' => 'manage_options', // Permissions needed to access the options panel. 'menu_icon' => '', // Specify a custom URL to an icon 'last_tab' => '', // Force your panel to always open to a specific tab (by id) 'page_icon' => 'icon-themes', // Icon displayed in the admin panel next to your menu_title 'page_slug' => '', // Page slug used to denote the panel, will be based off page title then menu title then opt_name if not provided 'save_defaults' => false, // On load save the defaults to DB before user clicks save or not 'default_show' => false, // If true, shows the default value next to each field that is not the default value. 'default_mark' => '', // What to print by the field's title if the value shown is default. Suggested: * 'show_import_export' => true, // Shows the Import/Export panel when not used as a field. // CAREFUL -> These options are for advanced use only 'transient_time' => 60 * MINUTE_IN_SECONDS, 'output' => true, // Global shut-off for dynamic CSS output by the framework. Will also disable google fonts output 'output_tag' => true, // Allows dynamic CSS to be generated for customizer and google fonts, but stops the dynamic CSS from going to the head // 'footer_credit' => '', // Disable the footer credit of Redux. Please leave if you can help it. // FUTURE -> Not in use yet, but reserved or partially implemented. Use at your own risk. 'database' => '', // possible: options, theme_mods, theme_mods_expanded, transient. Not fully functional, warning! 'use_cdn' => true, // If you prefer not to use the CDN for Select2, Ace Editor, and others, you may download the Redux Vendor Support plugin yourself and run locally or embed it in your code. // HINTS 'hints' => array( 'icon' => 'el el-question-sign', 'icon_position' => 'right', 'icon_color' => 'lightgray', 'icon_size' => 'normal', 'tip_style' => array( 'color' => 'red', 'shadow' => true, 'rounded' => false, 'style' => '', ), 'tip_position' => array( 'my' => 'top left', 'at' => 'bottom right', ), 'tip_effect' => array( 'show' => array( 'effect' => 'slide', 'duration' => '500', 'event' => 'mouseover', ), 'hide' => array( 'effect' => 'slide', 'duration' => '500', 'event' => 'click mouseleave', ), ), ) ); // ADMIN BAR LINKS -> Setup custom links in the admin bar menu as external items. // $args['admin_bar_links'][] = array( // 'id' => 'redux-docs', // 'href' => 'http://docs.reduxframework.com/', // 'title' => __( 'Documentation', 'melos' ), // ); // $args['admin_bar_links'][] = array( // //'id' => 'redux-support', // 'href' => 'https://github.com/ReduxFramework/redux-framework/issues', // 'title' => __( 'Support', 'melos' ), // ); // $args['admin_bar_links'][] = array( // 'id' => 'redux-extensions', // 'href' => 'reduxframework.com/extensions', // 'title' => __( 'Extensions', 'melos' ), // ); // SOCIAL ICONS -> Setup custom links in the footer for quick links in your panel footer icons. // $args['share_icons'][] = array( // 'url' => 'https://github.com/', // 'title' => 'Visit us on GitHub', // 'icon' => 'el el-github' // //'img' => '', // You can use icon OR img. IMG needs to be a full URL. // ); $args['share_icons'][] = array( 'url' => 'https://www.facebook.com/thinkupthemes', 'title' => 'Like us on Facebook', 'icon' => 'el el-facebook' ); $args['share_icons'][] = array( 'url' => 'http://www.twitter.com/thinkupthemes', 'title' => 'Follow us on Twitter', 'icon' => 'el el-twitter' ); // $args['share_icons'][] = array( // 'url' => 'http://www.linkedin.com/', // 'title' => 'Find us on LinkedIn', // 'icon' => 'el el-linkedin' // ); // Panel Intro text -> before the form if ( ! isset( $args['global_variable'] ) || $args['global_variable'] !== false ) { if ( ! empty( $args['global_variable'] ) ) { $v = $args['global_variable']; } else { $v = str_replace( '-', '_', $args['opt_name'] ); } // $args['intro_text'] = sprintf( __( '<p>Did you know that Redux sets a global variable for you? To access any of your saved options from within your code you can use your global variable: <strong>$%1$s</strong></p>', 'melos' ), $v ); } else { // $args['intro_text'] = __( '<p>This text is displayed above the options panel. It isn\'t required, but more info is always better! The intro_text field accepts all HTML.</p>', 'melos' ); } // Add content after the form. // $args['footer_text'] = __( '<p>This text is displayed below the options panel. It isn\'t required, but more info is always better! The footer_text field accepts all HTML.</p>', 'melos' ); Redux::setArgs( $opt_name, $args ); /* * ---> END ARGUMENTS */ /* * ---> START HELP TABS */ // $tabs = array( // array( // 'id' => 'redux-help-tab-1', // 'title' => __( 'Theme Information 1', 'melos' ), // 'content' => __( '<p>This is the tab content, HTML is allowed.</p>', 'melos' ) // ), // array( // 'id' => 'redux-help-tab-2', // 'title' => __( 'Theme Information 2', 'melos' ), // 'content' => __( '<p>This is the tab content, HTML is allowed.</p>', 'melos' ) // ) // ); // Redux::setHelpTab( $opt_name, $tabs ); // Set the help sidebar // $content = __( '<p>This is the sidebar content, HTML is allowed.</p>', 'melos' ); // Redux::setHelpSidebar( $opt_name, $content ); /* * <--- END HELP TABS */ /* * * ---> START SECTIONS * */ /* As of Redux 3.5+, there is an extensive API. This API can be used in a mix/match mode allowing for */ // ----------------------------------------------------------------------------------- // 0. Customizer - Set subsections // ----------------------------------------------------------------------------------- if ( is_customize_preview() ) { // Change subtitle text in customizer / options panel $thinkup_subtitle_customizer = 'subtitle'; $thinkup_subtitle_panel = NULL; // Change section field used in customizer / options panel $thinkup_section_field = 'thinkup_section'; // Enable sub-sections in customizer $thinkup_customizer_subsection = true; Redux::setSection( $opt_name, array( 'title' => __( 'Theme Options', 'melos' ), 'id' => 'thinkup_theme_options', 'desc' => __( 'Use the options below to customize your theme!', 'melos' ), 'customizer_width' => '400px', 'icon' => 'el el-home', 'customizer' => true, ) ); } else { // Disable sub-sections in theme options panel $thinkup_customizer_subsection = false; // Change subtitle text in customizer / options panel $thinkup_subtitle_customizer = NULL; $thinkup_subtitle_panel = 'subtitle'; // Change section field used in customizer / options panel $thinkup_section_field = 'section'; } // ----------------------------------------------------------------------------------- // 1. General Settings // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('General Settings', 'melos'), 'desc' => __('<span class="redux-title">Logo & Favicon Settings</span>', 'melos'), 'icon_class' => '', 'icon' => 'el el-wrench', 'id' => 'thinkup_section_general', 'subsection' => $thinkup_customizer_subsection, 'customizer' => true, 'fields' => array( array( 'title' => __('Enable Theme Logo Settings', 'melos'), $thinkup_subtitle_panel => __('Switch on to control logo settings from theme options panel. Leave off to control using antive WP options', 'melos'), $thinkup_subtitle_customizer => __('Switch on to control logo settings from theme options panel. Leave off to control using antive WP options', 'melos'), 'id' => 'thinkup_general_logosetting', 'type' => 'switch', ), array( 'title' => __('Logo Settings', 'melos'), $thinkup_subtitle_panel => __('If you have an image logo you can upload it, otherwise you can display a text site title.', 'melos'), $thinkup_subtitle_customizer => __('Display image logo or site title.', 'melos'), 'id' => 'thinkup_general_logoswitch', 'type' => 'radio', 'options' => array( 'option1' => 'Custom Image Logo', 'option2' => 'Display Site Title', ), ), array( 'title' => __('Custom Image Logo', 'melos'), $thinkup_subtitle_panel => __('Upload image logo or specify the image url.<br />Name the logo image logo.png.', 'melos'), $thinkup_subtitle_customizer => __('Upload image logo or specify the image url.<br />Name the logo image logo.png.', 'melos'), 'id' => 'thinkup_general_logolink', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_general_logoswitch', '=', array( 'option1' ), ), ) ), array( 'title' => __('Custom Image Logo (Retina display)', 'melos'), $thinkup_subtitle_panel => __('Upload a logo image twice the size of logo.png. Name the logo image logo@2x.png.', 'melos'), $thinkup_subtitle_customizer => __('Upload a logo image twice the size of logo.png. Name the logo image logo@2x.png.', 'melos'), 'id' => 'thinkup_general_logolinkretina', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_general_logoswitch', '=', array( 'option1' ), ), ) ), array( 'title' => __('Site Title', 'melos'), $thinkup_subtitle_panel => __('Input a message to display as your site title. Leave blank to display your default site title.', 'melos'), $thinkup_subtitle_customizer => __('Input a message to display as your site title. Leave blank to display your default site title.', 'melos'), 'id' => 'thinkup_general_sitetitle', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_general_logoswitch', '=', array( 'option2' ), ), ) ), array( 'title' => __('Site Description', 'melos'), $thinkup_subtitle_panel => __('Input a message to display as site description. Leave blank to display default site description.', 'melos'), $thinkup_subtitle_customizer => __('Input a message to display as site description. Leave blank to display default site description.', 'melos'), 'id' => 'thinkup_general_sitedescription', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_general_logoswitch', '=', array( 'option2' ), ), ) ), array( 'title' => __('Custom Favicon', 'melos'), $thinkup_subtitle_panel => __('Uploads favicon or specify the favicon url.', 'melos'), $thinkup_subtitle_customizer => __('Uploads favicon or specify the favicon url.', 'melos'), 'id' => 'thinkup_general_faviconlink', 'type' => 'media', 'url' => true, ), array( 'id' => 'thinkup_section_general_page', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Page Structure</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Page Structure</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Page Layout', 'melos'), $thinkup_subtitle_panel => __('Select page layout. This will only be applied to published Pages (I.e. Not posts, blog or home).', 'melos'), $thinkup_subtitle_customizer => __('Select page layout. This will only be applied to published Pages (I.e. Not posts, blog or home).', 'melos'), 'id' => 'thinkup_general_layout', 'type' => 'image_select', 'compiler' => true, 'default' => '0', 'options' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option01.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option02.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option03.png', ), ), array( 'title' => __('Select a Sidebar', 'melos'), $thinkup_subtitle_panel => __('Choose a sidebar to use with the page layout.', 'melos'), $thinkup_subtitle_customizer => __('Choose a sidebar to use with the page layout.', 'melos'), 'id' => 'thinkup_general_sidebars', 'type' => 'select', 'data' => 'sidebars', 'required' => array( array( 'thinkup_general_layout', '=', array( 'option2', 'option3' ), ), ) ), array( 'title' => __('Enable Fixed Layout', 'melos'), $thinkup_subtitle_panel => __('Check to enable fixed layout.<br />(i.e. Disable responsive layout)', 'melos'), $thinkup_subtitle_customizer => __('Check to enable fixed layout.<br />(i.e. Disable responsive layout)', 'melos'), 'id' => 'thinkup_general_fixedlayoutswitch', 'type' => 'switch', ), array( 'title' => __('Enable Boxed Layout', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable boxed layout.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable boxed layout.', 'melos'), 'id' => 'thinkup_general_boxlayout', 'type' => 'switch', // 'default' => 0, ), array( 'title' => __('Background Color For Boxed Layout', 'melos'), $thinkup_subtitle_panel => __('Select a custom color to use as background.', 'melos'), $thinkup_subtitle_customizer => __('Select a custom color to use as background.', 'melos'), 'id' => 'thinkup_general_boxbackgroundcolor', 'type' => 'color', 'validate' => 'color', 'default' => '#F1F1F1', 'required' => array( array( 'thinkup_general_boxlayout', '=', array( '1' ), ), ) ), array( 'title' => __('Background Image For Boxed Layout', 'melos'), $thinkup_subtitle_panel => __('Upload an image to use as background.<br />Leave blank to use custom color.', 'melos'), $thinkup_subtitle_customizer => __('Upload an image to use as background.<br />Leave blank to use custom color.', 'melos'), 'id' => 'thinkup_general_boxbackgroundimage', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_general_boxlayout', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Position. Find out more <a href="http://www.w3schools.com/cssref/pr_background-position.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Background Position. Find out more <a href="http://www.w3schools.com/cssref/pr_background-position.asp">here</a>.', 'melos'), 'id' => 'thinkup_general_boxedposition', 'type' => 'select', 'options' => array( 'left top' => 'left top', 'left center' => 'left center', 'left bottom' => 'left bottom', 'right top' => 'right top', 'right center' => 'right center', 'right bottom' => 'right bottom', 'center top' => 'center top', 'center center' => 'center center', 'center bottom' => 'center bottom', ), 'required' => array( array( 'thinkup_general_boxlayout', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Repeat. Find out more <a href="http://www.w3schools.com/cssref/pr_background-repeat.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Background Repeat. Find out more <a href="http://www.w3schools.com/cssref/pr_background-repeat.asp">here</a>.', 'melos'), 'id' => 'thinkup_general_boxedrepeat', 'type' => 'select', 'options' => array( "repeat" => "repeat", "repeat-x" => "repeat-x", "repeat-y" => "repeat-y", "no-repeat" => "no-repeat", ), 'required' => array( array( 'thinkup_general_boxlayout', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Size? Find out more <a href="http://www.w3schools.com/cssref/css3_pr_background-size.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Background Size? Find out more <a href="http://www.w3schools.com/cssref/css3_pr_background-size.asp">here</a>.', 'melos'), 'id' => 'thinkup_general_boxedsize', 'type' => 'select', 'options' => array( "auto" => "auto", "cover" => "cover", "constrain" => "constrain", ), 'required' => array( array( 'thinkup_general_boxlayout', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Fix background or scroll? Find out more <a href="http://www.w3schools.com/cssref/pr_background-attachment.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Fix background or scroll? Find out more <a href="http://www.w3schools.com/cssref/pr_background-attachment.asp">here</a>.', 'melos'), 'id' => 'thinkup_general_boxedattachment', 'type' => 'select', 'options' => array( "scroll" => "scroll", "fixed" => "fixed", ), 'required' => array( array( 'thinkup_general_boxlayout', '=', array( '1' ), ), ) ), array( 'title' => __('Enable Intro', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable intro.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable intro.', 'melos'), 'id' => 'thinkup_general_introswitch', 'type' => 'switch', 'default' => '1', ), array( 'title' => __('Enable Breadcrumbs', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable breadcrumbs.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable breadcrumbs.', 'melos'), 'id' => 'thinkup_general_breadcrumbswitch', 'type' => 'switch', 'default' => '1', 'required' => array( array( 'thinkup_general_introswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Breadcrumb Delimiter', 'melos'), $thinkup_subtitle_panel => __('Specify a custom delimiter to use instead of the default ( / ) when displaying breadcrumbs.', 'melos'), $thinkup_subtitle_customizer => __('Specify a custom delimiter to use instead of the default ( / ) when displaying breadcrumbs.', 'melos'), 'default' => '/', 'id' => 'thinkup_general_breadcrumbdelimeter', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_general_breadcrumbswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_section_general_code', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Custom Code</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Custom Code</span>', 'melos'), 'indent' => false, ), array( 'id' => 'thinkup_general_analyticscode', 'title' => __( 'Google Analytics Code', 'melos' ), $thinkup_subtitle_panel => __('Copy and paste your Google Analytics code here to apply it to all pages on your website.', 'melos'), $thinkup_subtitle_customizer => __('Copy and paste your Google Analytics code here to apply it to all pages on your website.', 'melos'), 'type' => 'textarea', ), array( 'id' => 'thinkup_general_customcss', 'title' => __( 'Custom CSS', 'melos' ), $thinkup_subtitle_panel => __('Developers can use this to apply custom css. Use this to control, by styling of any element on the webpage by targeting id's and classes.', 'melos'), $thinkup_subtitle_customizer => __('Developers can use this to apply custom css. Use this to control, by styling of any element on the webpage by targeting id's and classes.', 'melos'), 'type' => 'textarea', 'validate' => 'html', ), array( 'id' => 'thinkup_general_customjavafront', 'title' => __( 'Custom jQuery - Front End', 'melos' ), $thinkup_subtitle_panel => __('Developers can use this to apply custom jQuery which will only affect the front end of the website.<br /><br />Use this to control your site by adding great jQuery features.', 'melos'), $thinkup_subtitle_customizer => __('Developers can use this to apply custom jQuery which will only affect the front end of the website.<br /><br />Use this to control your site by adding great jQuery features.', 'melos'), 'type' => 'textarea', 'validate' => 'html', ), // Ensures ThinkUpThemes custom code is output array( 'title' => __('Custom Code', 'melos'), $thinkup_subtitle_panel => __('Custom Code', 'melos'), $thinkup_subtitle_customizer => __('Custom Code', 'melos'), 'id' => 'thinkup_customization', 'type' => 'thinkup_custom_code', ), ) ) ); Redux::setSection( $opt_name, array( 'type' => 'divide', 'subsection' => $thinkup_customizer_subsection, ) ); // ----------------------------------------------------------------------------------- // 2.1. Home Settings // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Homepage', 'melos'), 'desc' => __('<span class="redux-title">Control Homepage Layout</span>', 'melos'), 'icon_class' => '', 'icon' => 'el el-home', 'id' => 'thinkup_section_homepage', 'subsection' => $thinkup_customizer_subsection, 'customizer' => true, 'fields' => array( array( 'title' => __('Homepage Layout', 'melos'), $thinkup_subtitle_panel => __('Select page layout. This will only be applied to static homepages (front page) and not to homepage blogs.', 'melos'), $thinkup_subtitle_customizer => __('Select page layout. This will only be applied to static homepages (front page) and not to homepage blogs.', 'melos'), 'id' => 'thinkup_homepage_layout', 'type' => 'image_select', 'compiler' => true, 'default' => '0', 'options' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option01.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option02.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option03.png', ), ), array( 'title' => __('Select a Sidebar', 'melos'), $thinkup_subtitle_panel => __('Choose a sidebar to use with the layout.', 'melos'), $thinkup_subtitle_customizer => __('Choose a sidebar to use with the layout.', 'melos'), 'id' => 'thinkup_homepage_sidebars', 'type' => 'select', 'data' => 'sidebars', 'required' => array( array( 'thinkup_homepage_layout', '=', array( 'option2', 'option3' ), ), ) ), array( 'id' => 'thinkup_section_homepage_slider', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Homepage Slider</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Homepage Slider</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Choose Homepage Slider', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable home page slider.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable home page slider.', 'melos'), 'id' => 'thinkup_homepage_sliderswitch', 'type' => 'button_set', 'options' => array( 'option1' => 'ThinkUpSlider', 'option2' => 'Custom Slider', 'option3' => 'Disable' ), 'default' => 'option1' ), array( 'title' => __('Homepage Slider Shortcode', 'melos'), $thinkup_subtitle_panel => __('Input the shortcode of the slider you want to display. I.e. [shortcode_name].', 'melos'), $thinkup_subtitle_customizer => __('Input the shortcode of the slider you want to display. I.e. [shortcode_name].', 'melos'), 'id' => 'thinkup_homepage_slidername', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sliderswitch', '=', array( 'option2' ), ), ) ), array( 'title' => __('Built-In Slider', 'melos'), $thinkup_subtitle_panel => __('Unlimited slides with drag and drop sortings.', 'melos'), $thinkup_subtitle_customizer => __('Unlimited slides with drag and drop sortings.', 'melos'), 'id' => 'thinkup_homepage_sliderpreset', 'type' => 'thinkup_slider_v3', 'required' => array( array( 'thinkup_homepage_sliderswitch', '=', array( 'option1' ), ), ) ), array( 'title' => __('Slider Style', 'melos'), $thinkup_subtitle_panel => __('Choose a slider style. HTML, YouTube and Vimeo urls are supported for video layouts.', 'melos'), $thinkup_subtitle_customizer => __('Choose a slider style. HTML, YouTube and Vimeo urls are supported for video layouts.', 'melos'), 'id' => 'thinkup_homepage_sliderstyle', 'type' => 'select', 'options' => array( 'option1' => 'Standard', 'option2' => 'Video on left', 'option3' => 'Video on right' ), 'required' => array( array( 'thinkup_homepage_sliderswitch', '=', array( 'option1' ), ), ) ), array( 'title' => __('Slider Speed', 'melos'), $thinkup_subtitle_panel => __('Specify the time it takes to move to the next slide.<br />Tip: Set to 0 to disable automatic transitions.', 'melos'), $thinkup_subtitle_customizer => __('Specify the time it takes to move to the next slide.<br />Tip: Set to 0 to disable automatic transitions.', 'melos'), 'id' => 'thinkup_homepage_sliderspeed', 'type' => 'slider', "default" => "6", "min" => "0", "step" => "1", "max" => "30", 'required' => array( array( 'thinkup_homepage_sliderswitch', '=', array( 'option1' ), ), ) ), array( 'id' => 'thinkup_homepage_sliderpresetheight', 'type' => 'slider', 'title' => __('Slider Height (Max)', 'melos'), $thinkup_subtitle_panel => __('Specify the maximum slider height (px).', 'melos'), $thinkup_subtitle_customizer => __('Specify the maximum slider height (px).', 'melos'), "default" => "350", "min" => "200", "step" => "5", "max" => "1000", 'required' => array( array( 'thinkup_homepage_sliderswitch', '=', array( 'option1' ), ), ) ), array( 'title' => __('Enable Full-Width Slider', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable full-width slider.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable full-width slider.', 'melos'), 'id' => 'thinkup_homepage_sliderpresetwidth', 'type' => 'switch', 'default' => '1', 'required' => array( array( 'thinkup_homepage_sliderswitch', '=', array( 'option1' ), ), ) ), array( 'id' => 'thinkup_section_homepage_ctaintro', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Call To Action - Intro</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Call To Action - Intro</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Message', 'melos'), 'desc' => __('Check to enable intro on home page.', 'melos'), 'id' => 'thinkup_homepage_introswitch', 'type' => 'checkbox', 'default' => '1', ), array( $thinkup_subtitle_panel => __('Enter a <strong>title</strong> message.<br /><br />This will be one of the first messages your visitors see. Use this to get their attention.', 'melos'), $thinkup_subtitle_customizer => __('Enter a <strong>title</strong> message.<br /><br />This will be one of the first messages your visitors see. Use this to get their attention.', 'melos'), 'id' => 'thinkup_homepage_introaction', 'type' => 'textarea', 'validate' => 'html', ), array( $thinkup_subtitle_panel => __('Enter a <strong>teaser</strong> message.<br /><br />Use this to provide more details about what you offer.', 'melos'), $thinkup_subtitle_customizer => __('Enter a <strong>teaser</strong> message.<br /><br />Use this to provide more details about what you offer.', 'melos'), 'id' => 'thinkup_homepage_introactionteaser', 'type' => 'textarea', 'validate' => 'html', ), array( 'title' => __('Button - Text', 'melos'), $thinkup_subtitle_panel => __('Specify a text for button 1.', 'melos'), $thinkup_subtitle_customizer => __('Specify a text for button 1.', 'melos'), 'id' => 'thinkup_homepage_introactiontext1', 'type' => 'text', 'validate' => 'html', ), array( 'title' => __('Button - Link', 'melos'), $thinkup_subtitle_panel => __('Specify whether the action button should link to a page on your site, out to external webpage or disable the link altogether.', 'melos'), $thinkup_subtitle_customizer => __('Specify whether the action button should link to a page on your site, out to external webpage or disable the link altogether.', 'melos'), 'id' => 'thinkup_homepage_introactionlink1', 'type' => 'radio', 'options' => array( 'option1' => 'Link to a Page', 'option2' => 'Specify Custom link', 'option3' => 'Disable Link', ), ), array( 'title' => __('Button - Link to a page', 'melos'), $thinkup_subtitle_panel => __('Select a target page for action button link.', 'melos'), $thinkup_subtitle_customizer => __('Select a target page for action button link.', 'melos'), 'id' => 'thinkup_homepage_introactionpage1', 'type' => 'select', 'data' => 'pages', 'required' => array( array( 'thinkup_homepage_introactionlink1', '=', array( 'option1' ), ), ) ), array( 'title' => __('Button - Custom link', 'melos'), $thinkup_subtitle_panel => __('Input a custom url for the action button link.<br>Add http:// if linking to an external webpage.', 'melos'), $thinkup_subtitle_customizer => __('Input a custom url for the action button link.<br>Add http:// if linking to an external webpage.', 'melos'), 'id' => 'thinkup_homepage_introactioncustom1', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_introactionlink1', '=', array( 'option2' ), ), ) ), array( 'id' => 'thinkup_section_homepage_ctaoutro', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Call To Action - Outro</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Call To Action - Outro</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Message', 'melos'), 'desc' => __('Check to enable outro on home page.', 'melos'), 'id' => 'thinkup_homepage_outroswitch', 'type' => 'checkbox', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Enter a <strong>title</strong> message.<br /><br />This will be one of the first messages your visitors see. Use this to get their attention.', 'melos'), $thinkup_subtitle_customizer => __('Enter a <strong>title</strong> message.<br /><br />This will be one of the first messages your visitors see. Use this to get their attention.', 'melos'), 'id' => 'thinkup_homepage_outroaction', 'type' => 'textarea', 'validate' => 'html', ), array( $thinkup_subtitle_panel => __('Enter a <strong>teaser</strong> message.<br /><br />Use this to provide more details about what you offer.', 'melos'), $thinkup_subtitle_customizer => __('Enter a <strong>teaser</strong> message.<br /><br />Use this to provide more details about what you offer.', 'melos'), 'id' => 'thinkup_homepage_outroactionteaser', 'type' => 'textarea', 'validate' => 'html', ), array( 'title' => __('Button - Text', 'melos'), $thinkup_subtitle_panel => __('Specify a text for button 1.', 'melos'), $thinkup_subtitle_customizer => __('Specify a text for button 1.', 'melos'), 'id' => 'thinkup_homepage_outroactiontext1', 'type' => 'text', 'validate' => 'html', ), array( 'title' => __('Button - Link', 'melos'), $thinkup_subtitle_panel => __('Specify whether the action button should link to a page on your site, out to external webpage or disable the link altogether.', 'melos'), $thinkup_subtitle_customizer => __('Specify whether the action button should link to a page on your site, out to external webpage or disable the link altogether.', 'melos'), 'id' => 'thinkup_homepage_outroactionlink1', 'type' => 'radio', 'options' => array( 'option1' => 'Link to a Page', 'option2' => 'Specify Custom link', 'option3' => 'Disable Link', ), ), array( 'title' => __('Button - Link to a page', 'melos'), $thinkup_subtitle_panel => __('Select a target page for action button link.', 'melos'), $thinkup_subtitle_customizer => __('Select a target page for action button link.', 'melos'), 'id' => 'thinkup_homepage_outroactionpage1', 'type' => 'select', 'data' => 'pages', 'required' => array( array( 'thinkup_homepage_outroactionlink1', '=', array( 'option1' ), ), ) ), array( 'title' => __('Button - Custom link', 'melos'), $thinkup_subtitle_panel => __('Input a custom url for the action button link.<br>Add http:// if linking to an external webpage.', 'melos'), $thinkup_subtitle_customizer => __('Input a custom url for the action button link.<br>Add http:// if linking to an external webpage.', 'melos'), 'id' => 'thinkup_homepage_outroactioncustom1', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_outroactionlink1', '=', array( 'option2' ), ), ) ), ) ) ); // ----------------------------------------------------------------------------------- // 2.2. Homepage (Featured) // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Homepage (Featured)', 'melos'), 'desc' => __('<span class="redux-title">Display Pre-Designed Homepage Layout</span>', 'melos'), 'icon_class' => '', 'icon' => 'el el-pencil', 'id' => 'thinkup_section_homepage_content', 'subsection' => $thinkup_customizer_subsection, 'customizer' => true, 'fields' => array( array( 'title' => __('Enable Pre-Made Homepage ', 'melos'), $thinkup_subtitle_panel => __('switch on to enable pre-designed homepage layout.', 'melos'), $thinkup_subtitle_customizer => __('switch on to enable pre-designed homepage layout.', 'melos'), 'id' => 'thinkup_homepage_sectionswitch', 'type' => 'switch', // 'default' => '1', ), array( 'title' => __('Content Area 1', 'melos'), 'desc' => __('Add an image for the section background.', 'melos'), 'id' => 'thinkup_homepage_section1_image', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Check to disable image cropping.', 'melos'), 'id' => 'thinkup_homepage_section1_imagesize', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section1_title', 'desc' => __('Add a title to the section.', 'melos'), 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section1_desc', 'desc' => __('Add some text to featured section 1.', 'melos'), 'type' => 'textarea', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section1_link', 'desc' => __('Link to a page', 'melos'), 'type' => 'select', 'data' => 'pages', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section1_url', 'desc' => __('Link to a custom page.', 'melos'), 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section1_button', 'desc' => __('Add a custom button text.', 'melos'), 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section1_target', 'desc' => __('Link target', 'melos'), 'type' => 'select', 'options' => array( 'option1' => 'Current tab', 'option2' => 'New tab', ), 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Content Area 2', 'melos'), 'desc' => __('Add an image for the section background.', 'melos'), 'id' => 'thinkup_homepage_section2_image', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Check to disable image cropping.', 'melos'), 'id' => 'thinkup_homepage_section2_imagesize', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section2_title', 'desc' => __('Add a title to the section.', 'melos'), 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section2_desc', 'desc' => __('Add some text to featured section 2.', 'melos'), 'type' => 'textarea', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section2_link', 'desc' => __('Link to a page', 'melos'), 'type' => 'select', 'data' => 'pages', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section2_url', 'desc' => __('Link to a custom page.', 'melos'), 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section2_button', 'desc' => __('Add a custom button text.', 'melos'), 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section2_target', 'desc' => __('Link target', 'melos'), 'type' => 'select', 'options' => array( 'option1' => 'Current tab', 'option2' => 'New tab', ), 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Content Area 3', 'melos'), 'desc' => __('Add an image for the section background.', 'melos'), 'id' => 'thinkup_homepage_section3_image', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Check to disable image cropping.', 'melos'), 'id' => 'thinkup_homepage_section3_imagesize', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section3_title', 'desc' => __('Add a title to the section.', 'melos'), 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section3_desc', 'desc' => __('Add some text to featured section 3.', 'melos'), 'type' => 'textarea', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section3_link', 'desc' => __('Link to a page', 'melos'), 'type' => 'select', 'data' => 'pages', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section3_url', 'desc' => __('Link to a custom page.', 'melos'), 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section3_button', 'desc' => __('Add a custom button text.', 'melos'), 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section3_target', 'desc' => __('Link target', 'melos'), 'type' => 'select', 'options' => array( 'option1' => 'Current tab', 'option2' => 'New tab', ), 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), ) ) ); // ----------------------------------------------------------------------------------- // 3. Header // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Header', 'melos'), 'desc' => __('<span class="redux-title">Pre Header Style</span>', 'melos'), 'icon' => 'el el-chevron-up', 'icon_class' => '', 'id' => 'thinkup_section_header', 'subsection' => $thinkup_customizer_subsection, 'customizer' => true, 'fields' => array( array( 'title' => __('Choose Pre Header Style', 'melos'), $thinkup_subtitle_panel => __('Specify the pre header style.', 'melos'), $thinkup_subtitle_customizer => __('Specify the pre header style.', 'melos'), 'id' => 'thinkup_header_styleswitchpre', 'type' => 'radio', 'options' => array( 'option1' => 'Style 1 (Dark)', 'option2' => 'Style 2 (Light)', ), ), array( 'id' => 'thinkup_section_header_style', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Control Header Style</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Control Header Style</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Choose Header Style', 'melos'), $thinkup_subtitle_panel => __('Specify the header layout.', 'melos'), $thinkup_subtitle_customizer => __('Specify the header layout.', 'melos'), 'id' => 'thinkup_header_styleswitch', 'type' => 'radio', 'options' => array( 'option1' => 'Style 1', 'option2' => 'Style 2', ), ), array( 'title' => __('Choose Header Location', 'melos'), $thinkup_subtitle_panel => __('Specify the header location.<br />Feature only works with header style 1.', 'melos'), $thinkup_subtitle_customizer => __('Specify the header location.<br />Feature only works with header style 1.', 'melos'), 'id' => 'thinkup_header_locationswitch', 'type' => 'radio', 'options' => array( 'option1' => 'Above Slider', 'option2' => 'Below Slider', ), 'required' => array( array( 'thinkup_header_styleswitch', '=', array( 'option1' ), ), ) ), array( 'title' => __('Sticky Header', 'melos'), $thinkup_subtitle_panel => __('Switch on to fix header to top of page.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to fix header to top of page.', 'melos'), 'id' => 'thinkup_header_stickyswitch', 'type' => 'switch', 'default' => '0', ), array( 'title' => __('Header Image', 'melos'), $thinkup_subtitle_panel => __('Switch on to add image above header.<br />Note: Image will be centered in the header area.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to add image above header.<br />Note: Image will be centered in the header area.', 'melos'), 'id' => 'thinkup_header_imageswitch', 'type' => 'switch', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Choose header image. <strong>Tip:</strong> Remember you can always crop your images directly from the media library so your image shows only what you want.', 'melos'), $thinkup_subtitle_customizer => __('Choose header image. <strong>Tip:</strong> Remember you can always crop your images directly from the media library so your image shows only what you want.', 'melos'), 'id' => 'thinkup_header_imagelink', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_imageswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Link header image.<br />Add http:// as the url is an external link.', 'melos'), $thinkup_subtitle_customizer => __('Link header image.<br />Add http:// as the url is an external link.', 'melos'), 'id' => 'thinkup_header_imageurl', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_imageswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Header image width', 'melos'), $thinkup_subtitle_customizer => __('Header image width', 'melos'), 'desc' => __('Check to restrict header image width to 1170px', 'melos'), 'id' => 'thinkup_header_imagewidth', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_header_imageswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_section_header_content', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Control Header Content</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Control Header Content</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Enable Search (Pre Header)', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable pre header search.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable pre header search.', 'melos'), 'id' => 'thinkup_header_searchswitchpre', 'type' => 'switch', 'default' => '0', ), array( 'title' => __('Enable Search (Main Header)', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable header search.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable header search.', 'melos'), 'id' => 'thinkup_header_searchswitch', 'type' => 'switch', 'default' => '0', ), ) ) ); // ----------------------------------------------------------------------------------- // 4. Footer // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Footer', 'melos'), 'desc' => __('<span class="redux-title">Control Footer Content</span>', 'melos'), 'icon' => 'el el-chevron-down', 'icon_class' => '', 'id' => 'thinkup_section_footer', 'subsection' => $thinkup_customizer_subsection, 'customizer' => true, 'fields' => array( array( 'title' => __('Footer Widgets Layout', 'melos'), $thinkup_subtitle_panel => __('Select footer layout. Take complete control of the footer content by adding widgets.', 'melos'), $thinkup_subtitle_customizer => __('Select footer layout. Take complete control of the footer content by adding widgets.', 'melos'), 'id' => 'thinkup_footer_layout', 'type' => 'image_select', 'compiler' => true, 'default' => '0', 'options' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option01.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option02.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option03.png', 'option4' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option04.png', 'option5' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option05.png', 'option6' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option06.png', 'option7' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option07.png', 'option8' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option08.png', 'option9' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option09.png', 'option10' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option10.png', 'option11' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option11.png', 'option12' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option12.png', 'option13' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option13.png', 'option14' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option14.png', 'option15' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option15.png', 'option16' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option16.png', 'option17' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option17.png', 'option18' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/footer/option18.png', ), ), array( 'title' => __('Disable Footer Widgets', 'melos'), 'desc' => __('Check to disable footer widgets.', 'melos'), 'id' => 'thinkup_footer_widgetswitch', 'type' => 'checkbox', 'default' => '0', ), array( 'title' => __('Enable Scroll To Top', 'melos'), $thinkup_subtitle_panel => __('Check to enable scroll to top.', 'melos'), $thinkup_subtitle_customizer => __('Check to enable scroll to top.', 'melos'), 'id' => 'thinkup_footer_scroll', 'type' => 'switch', 'default' => '0', ), array( 'title' => __('Copyright Text', 'melos'), $thinkup_subtitle_panel => __('Add custom copyright text.<br />Leave blank to display default message.', 'melos'), $thinkup_subtitle_customizer => __('Add custom copyright text.<br />Leave blank to display default message.', 'melos'), 'id' => 'thinkup_footer_copyright', 'type' => 'text', 'validate' => 'html', ), array( 'id' => 'thinkup_section_subfooter', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Control Sub-Footer Content</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Control Sub-Footer Content</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Post-Footer Widgets Layout', 'melos'), $thinkup_subtitle_panel => __('Select post-footer layout. Take complete control of the post-footer content by adding widgets.', 'melos'), $thinkup_subtitle_customizer => __('Select post-footer layout. Take complete control of the post-footer content by adding widgets.', 'melos'), 'id' => 'thinkup_subfooter_layout', 'type' => 'image_select', 'compiler' => true, 'default' => '0', 'options' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/sub-footer/option01.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/sub-footer/option02.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/sub-footer/option03.png', 'option4' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/sub-footer/option04.png', 'option5' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/sub-footer/option05.png', 'option6' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/sub-footer/option06.png', 'option7' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/sub-footer/option07.png', 'option8' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/sub-footer/option08.png', ), ), array( 'title' => __('Disable Post-Footer Widgets', 'melos'), 'desc' => __('Check to disable post-footer widgets.', 'melos'), 'id' => 'thinkup_subfooter_widgetswitch', 'type' => 'checkbox', 'default' => '0', ), array( 'title' => __('Enable Widget Close Button', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable button to hide post-footer widgets.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable button to hide post-footer widgets.', 'melos'), 'id' => 'thinkup_subfooter_widgetclose', 'type' => 'switch', 'default' => '0', ), array( 'id' => 'thinkup_section_footer_ctaoutro', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Call To Action - Outro Inner Pages</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Call To Action - Outro Inner Pages</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Message', 'melos'), 'desc' => __('Check to enable outro on all inner pages.', 'melos'), 'id' => 'thinkup_footer_outroswitch', 'type' => 'checkbox', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Enter a <strong>title</strong> message.<br /><br />This will be one of the first messages your visitors see. Use this to get their attention.', 'melos'), $thinkup_subtitle_customizer => __('Enter a <strong>title</strong> message.<br /><br />This will be one of the first messages your visitors see. Use this to get their attention.', 'melos'), 'id' => 'thinkup_footer_outroaction', 'type' => 'textarea', 'validate' => 'html', ), array( $thinkup_subtitle_panel => __('Enter a <strong>teaser</strong> message.<br /><br />Use this to provide more details about what you offer.', 'melos'), $thinkup_subtitle_customizer => __('Enter a <strong>teaser</strong> message.<br /><br />Use this to provide more details about what you offer.', 'melos'), 'id' => 'thinkup_footer_outroactionteaser', 'type' => 'textarea', 'validate' => 'html', ), array( 'title' => __('Button - Text', 'melos'), $thinkup_subtitle_panel => __('Specify a text for button 1.', 'melos'), $thinkup_subtitle_customizer => __('Specify a text for button 1.', 'melos'), 'id' => 'thinkup_footer_outroactiontext1', 'type' => 'text', 'validate' => 'html', ), array( 'title' => __('Button - Link', 'melos'), $thinkup_subtitle_panel => __('Specify whether the action button should link to a page on your site, out to external webpage or disable the link altogether.', 'melos'), $thinkup_subtitle_customizer => __('Specify whether the action button should link to a page on your site, out to external webpage or disable the link altogether.', 'melos'), 'id' => 'thinkup_footer_outroactionlink1', 'type' => 'radio', 'options' => array( 'option1' => 'Link to a Page', 'option2' => 'Specify Custom link', 'option3' => 'Disable Link', ), ), array( 'title' => __('Button - Link to a page', 'melos'), $thinkup_subtitle_panel => __('Select a target page for action button link.', 'melos'), $thinkup_subtitle_customizer => __('Select a target page for action button link.', 'melos'), 'id' => 'thinkup_footer_outroactionpage1', 'type' => 'select', 'data' => 'pages', 'required' => array( array( 'thinkup_footer_outroactionlink1', '=', array( 'option1' ), ), ) ), array( 'title' => __('Button - Custom link', 'melos'), $thinkup_subtitle_panel => __('Input a custom url for the action button link.<br>Add http:// if linking to an external webpage.', 'melos'), $thinkup_subtitle_customizer => __('Input a custom url for the action button link.<br>Add http:// if linking to an external webpage.', 'melos'), 'id' => 'thinkup_footer_outroactioncustom1', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_footer_outroactionlink1', '=', array( 'option2' ), ), ) ), ) ) ); // ----------------------------------------------------------------------------------- // 3 & 4. Social Media // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Social Media', 'melos'), 'desc' => __('<span class="redux-title">Social Media Control</span>', 'melos'), 'icon' => 'el el-facebook', 'icon_class' => '', 'id' => 'thinkup_header_social', 'subsection' => $thinkup_customizer_subsection, 'customizer' => true, 'fields' => array( array( 'title' => __('Enable Social Media Links (Pre Header)', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable links to social media pages.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable links to social media pages.', 'melos'), 'id' => 'thinkup_header_socialswitchpre', 'type' => 'switch', 'default' => '0', ), // array( // 'title' => __('Enable Social Media Links (Main Header)', 'melos'), // $thinkup_subtitle_panel => __('Switch on to enable links to social media pages.', 'melos'), // $thinkup_subtitle_customizer => __('Switch on to enable links to social media pages.', 'melos'), // 'id' => 'thinkup_header_socialswitchmain', // 'type' => 'switch', // 'default' => '0', // ), array( 'title' => __('Enable Social Media Links (footer)', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable links to social media pages.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable links to social media pages.', 'melos'), 'id' => 'thinkup_header_socialswitchfooter', 'type' => 'switch', 'default' => '0', ), array( 'id' => 'thinkup_section_header_social', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Social Media Content</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Social Media Content</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Display Message', 'melos'), $thinkup_subtitle_panel => __('Add a message here. E.g. "Follow Us".<br />(Only shown in header)', 'melos'), $thinkup_subtitle_customizer => __('Add a message here. E.g. "Follow Us".<br />(Only shown in header)', 'melos'), 'id' => 'thinkup_header_socialmessage', 'type' => 'text', 'validate' => 'html', ), // Facebook social settings array( 'title' => __('Facebook', 'melos'), $thinkup_subtitle_panel => __('Enable link to Facebook profile.', 'melos'), $thinkup_subtitle_customizer => __('Enable link to Facebook profile.', 'melos'), 'id' => 'thinkup_header_facebookswitch', 'type' => 'switch', 'default' => '0', ), array( 'desc' => __('Input the url to your Facebook page. <strong>Note:</strong> Add http:// as the url is an external link.', 'melos'), 'id' => 'thinkup_header_facebooklink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_facebookswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom Facebook Icon', 'melos'), 'id' => 'thinkup_header_facebookiconswitch', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_header_facebookswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Add a link to the image or upload one from your desktop. The image will be resized.', 'melos'), 'id' => 'thinkup_header_facebookcustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_facebookswitch', '=', array( '1' ), ), ) ), // Twitter social settings array( 'title' => __('Twitter', 'melos'), $thinkup_subtitle_panel => __('Enable link to Twitter profile.', 'melos'), $thinkup_subtitle_customizer => __('Enable link to Twitter profile.', 'melos'), 'id' => 'thinkup_header_twitterswitch', 'type' => 'switch', 'default' => '0', ), array( 'desc' => __('Input the url to your Twitter page. <strong>Note:</strong> Add http:// as the url is an external link.', 'melos'), 'id' => 'thinkup_header_twitterlink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_twitterswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom Twitter Icon', 'melos'), 'id' => 'thinkup_header_twittericonswitch', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_header_twitterswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Add a link to the image or upload one from your desktop. The image will be resized.', 'melos'), 'id' => 'thinkup_header_twittercustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_twitterswitch', '=', array( '1' ), ), ) ), // Google+ social settings array( 'title' => __('Google+', 'melos'), $thinkup_subtitle_panel => __('Enable link to Google+ profile.', 'melos'), $thinkup_subtitle_customizer => __('Enable link to Google+ profile.', 'melos'), 'id' => 'thinkup_header_googleswitch', 'type' => 'switch', 'default' => '0', ), array( 'desc' => __('Input the url to your Google+ page. <strong>Note:</strong> Add http:// as the url is an external link.', 'melos'), 'id' => 'thinkup_header_googlelink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_googleswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom Google+ Icon', 'melos'), 'id' => 'thinkup_header_googleiconswitch', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_header_googleswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Add a link to the image or upload one from your desktop. The image will be resized.', 'melos'), 'id' => 'thinkup_header_googlecustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_googleswitch', '=', array( '1' ), ), ) ), // Instagram social settings array( 'title' => __('Instagram', 'melos'), $thinkup_subtitle_panel => __('Enable link to Instagram profile.', 'melos'), $thinkup_subtitle_customizer => __('Enable link to Instagram profile.', 'melos'), 'id' => 'thinkup_header_instagramswitch', 'type' => 'switch', 'default' => '0', ), array( 'desc' => __('Input the url to your Instagram page. <strong>Note:</strong> Add http:// as the url is an external link.', 'melos'), 'id' => 'thinkup_header_instagramlink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_instagramswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom Instagram Icon', 'melos'), 'id' => 'thinkup_header_instagramiconswitch', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_header_instagramswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Add a link to the image or upload one from your desktop. The image will be resized.', 'melos'), 'id' => 'thinkup_header_instagramcustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_instagramswitch', '=', array( '1' ), ), ) ), // Tumblr social settings array( 'title' => __('Tumblr', 'melos'), $thinkup_subtitle_panel => __('Enable link to Tumblr profile.', 'melos'), $thinkup_subtitle_customizer => __('Enable link to Tumblr profile.', 'melos'), 'id' => 'thinkup_header_tumblrswitch', 'type' => 'switch', 'default' => '0', ), array( 'desc' => __('Input the url to your Tumblr page. <strong>Note:</strong> Add http:// as the url is an external link.', 'melos'), 'id' => 'thinkup_header_tumblrlink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_tumblrswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom Tumblr Icon', 'melos'), 'id' => 'thinkup_header_tumblriconswitch', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_header_tumblrswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Add a link to the image or upload one from your desktop. The image will be resized.', 'melos'), 'id' => 'thinkup_header_tumblrcustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_tumblrswitch', '=', array( '1' ), ), ) ), // LinkedIn social settings array( 'title' => __('LinkedIn', 'melos'), $thinkup_subtitle_panel => __('Enable link to LinkedIn profile.', 'melos'), $thinkup_subtitle_customizer => __('Enable link to LinkedIn profile.', 'melos'), 'id' => 'thinkup_header_linkedinswitch', 'type' => 'switch', 'default' => '0', ), array( 'desc' => __('Input the url to your LinkedIn page. <strong>Note:</strong> Add http:// as the url is an external link.', 'melos'), 'id' => 'thinkup_header_linkedinlink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_linkedinswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom LinkedIn Icon', 'melos'), 'id' => 'thinkup_header_linkediniconswitch', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_header_linkedinswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Add a link to the image or upload one from your desktop. The image will be resized.', 'melos'), 'id' => 'thinkup_header_linkedincustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_linkedinswitch', '=', array( '1' ), ), ) ), // Flickr social settings array( 'title' => __('Flickr', 'melos'), $thinkup_subtitle_panel => __('Enable link to Flickr profile.', 'melos'), $thinkup_subtitle_customizer => __('Enable link to Flickr profile.', 'melos'), 'id' => 'thinkup_header_flickrswitch', 'type' => 'switch', ), array( 'desc' => __('Input the url to your Flickr page. <strong>Note:</strong> Add http:// as the url is an external link.', 'melos'), 'id' => 'thinkup_header_flickrlink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_flickrswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom Flickr Icon', 'melos'), 'id' => 'thinkup_header_flickriconswitch', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_header_flickrswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Add a link to the image or upload one from your desktop. The image will be resized.', 'melos'), 'id' => 'thinkup_header_flickrcustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_flickrswitch', '=', array( '1' ), ), ) ), // Pinterest social settings array( 'title' => __('Pinterest', 'melos'), $thinkup_subtitle_panel => __('Enable link to Pinterest profile.', 'melos'), $thinkup_subtitle_customizer => __('Enable link to Pinterest profile.', 'melos'), 'id' => 'thinkup_header_pinterestswitch', 'type' => 'switch', 'default' => '0', ), array( 'desc' => __('Input the url to your Pinterest page. <strong>Note:</strong> Add http:// as the url is an external link.', 'melos'), 'id' => 'thinkup_header_pinterestlink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_pinterestswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom Pinterest Icon', 'melos'), 'id' => 'thinkup_header_pinteresticonswitch', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_header_pinterestswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Add a link to the image or upload one from your desktop. The image will be resized.', 'melos'), 'id' => 'thinkup_header_pinterestcustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_pinterestswitch', '=', array( '1' ), ), ) ), // Xing social settings array( 'title' => __('Xing', 'melos'), $thinkup_subtitle_panel => __('Enable link to Xing profile.', 'melos'), $thinkup_subtitle_customizer => __('Enable link to Xing profile.', 'melos'), 'id' => 'thinkup_header_xingswitch', 'type' => 'switch', 'default' => '0', ), array( 'desc' => __('Input the url to your Xing page. <strong>Note:</strong> Add http:// as the url is an external link.', 'melos'), 'id' => 'thinkup_header_xinglink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_xingswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom Xing Icon', 'melos'), 'id' => 'thinkup_header_xingiconswitch', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_header_xingswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Add a link to the image or upload one from your desktop. The image will be resized.', 'melos'), 'id' => 'thinkup_header_xingcustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_xingswitch', '=', array( '1' ), ), ) ), // PayPal social settings array( 'title' => __('PayPal', 'melos'), $thinkup_subtitle_panel => __('Enable link to PayPal profile.', 'melos'), $thinkup_subtitle_customizer => __('Enable link to PayPal profile.', 'melos'), 'id' => 'thinkup_header_paypalswitch', 'type' => 'switch', 'default' => '0', ), array( 'desc' => __('Input the url to your PayPal page. <strong>Note:</strong> Add http:// as the url is an external link.', 'melos'), 'id' => 'thinkup_header_paypallink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_paypalswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom PayPal Icon', 'melos'), 'id' => 'thinkup_header_paypaliconswitch', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_header_paypalswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Add a link to the image or upload one from your desktop. The image will be resized.', 'melos'), 'id' => 'thinkup_header_paypalcustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_paypalswitch', '=', array( '1' ), ), ) ), // YouTube social settings array( 'title' => __('YouTube', 'melos'), $thinkup_subtitle_panel => __('Enable link to YouTube profile.', 'melos'), $thinkup_subtitle_customizer => __('Enable link to YouTube profile.', 'melos'), 'id' => 'thinkup_header_youtubeswitch', 'type' => 'switch', 'default' => '0', ), array( 'desc' => __('Input the url to your YouTube page. <strong>Note:</strong> Add http:// as the url is an external link.', 'melos'), 'id' => 'thinkup_header_youtubelink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_youtubeswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom YouTube Icon', 'melos'), 'id' => 'thinkup_header_youtubeiconswitch', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_header_youtubeswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Add a link to the image or upload one from your desktop. The image will be resized.', 'melos'), 'id' => 'thinkup_header_youtubecustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_youtubeswitch', '=', array( '1' ), ), ) ), // Vimeo social settings array( 'title' => __('Vimeo', 'melos'), $thinkup_subtitle_panel => __('Enable link to Vimeo profile.', 'melos'), $thinkup_subtitle_customizer => __('Enable link to Vimeo profile.', 'melos'), 'id' => 'thinkup_header_vimeoswitch', 'type' => 'switch', 'default' => '0', ), array( 'desc' => __('Input the url to your Vimeo page. <strong>Note:</strong> Add http:// as the url is an external link.', 'melos'), 'id' => 'thinkup_header_vimeolink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_vimeoswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom Vimeo Icon', 'melos'), 'id' => 'thinkup_header_vimeoiconswitch', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_header_vimeoswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Add a link to the image or upload one from your desktop. The image will be resized.', 'melos'), 'id' => 'thinkup_header_vimeocustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_vimeoswitch', '=', array( '1' ), ), ) ), // RSS social settings array( 'title' => __('RSS', 'melos'), $thinkup_subtitle_panel => __('Enable link to RSS profile.', 'melos'), $thinkup_subtitle_customizer => __('Enable link to RSS profile.', 'melos'), 'id' => 'thinkup_header_rssswitch', 'type' => 'switch', 'default' => '0', ), array( 'desc' => __('Input the url to your RSS page. <strong>Note:</strong> Add http:// as the url is an external link.', 'melos'), 'id' => 'thinkup_header_rsslink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_rssswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom RSS Icon', 'melos'), 'id' => 'thinkup_header_rssiconswitch', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_header_rssswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Add a link to the image or upload one from your desktop. The image will be resized.', 'melos'), 'id' => 'thinkup_header_rsscustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_rssswitch', '=', array( '1' ), ), ) ), // Email social settings array( 'title' => __('Email', 'melos'), $thinkup_subtitle_panel => __('Enable link to Email.', 'melos'), $thinkup_subtitle_customizer => __('Enable link to Email.', 'melos'), 'id' => 'thinkup_header_emailswitch', 'type' => 'switch', 'default' => '0', ), array( 'desc' => __('Input your email address. <strong>Note:</strong> Add mailto: as prefix to open link as email.', 'melos'), 'id' => 'thinkup_header_emaillink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_emailswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom Email Icon', 'melos'), 'id' => 'thinkup_header_emailiconswitch', 'type' => 'checkbox', 'default' => '0', 'required' => array( array( 'thinkup_header_emailswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Add a link to the image or upload one from your desktop. The image will be resized.', 'melos'), 'id' => 'thinkup_header_emailcustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_emailswitch', '=', array( '1' ), ), ) ), ) ) ); // ----------------------------------------------------------------------------------- // 5. Blog // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Blog', 'melos'), 'desc' => __('<span class="redux-title">Control Blog (Archive) Pages</span>', 'melos'), 'icon' => 'el el-comment', 'icon_class' => '', 'id' => 'thinkup_section_blog', 'subsection' => $thinkup_customizer_subsection, 'customizer' => true, 'fields' => array( array( 'title' => __('Blog Layout', 'melos'), $thinkup_subtitle_panel => __('Select blog page layout. Only applied to the main blog page and not individual posts.', 'melos'), $thinkup_subtitle_customizer => __('Select blog page layout. Only applied to the main blog page and not individual posts.', 'melos'), 'id' => 'thinkup_blog_layout', 'type' => 'image_select', 'compiler' => true, 'options' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option01.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option02.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option03.png', ), ), array( 'title' => __('Select a Sidebar', 'melos'), $thinkup_subtitle_panel => __('<strong>Note:</strong> Sidebars will not be applied to homepage Blog. Control sidebars on the homepage from the 'Home Settings' option.', 'melos'), $thinkup_subtitle_customizer => __('<strong>Note:</strong> Sidebars will not be applied to homepage Blog. Control sidebars on the homepage from the 'Home Settings' option.', 'melos'), 'id' => 'thinkup_blog_sidebars', 'type' => 'select', 'data' => 'sidebars', 'required' => array( array( 'thinkup_blog_layout', '=', array( 'option2', 'option3' ), ), ) ), array( 'title' => __('Blog Style', 'melos'), $thinkup_subtitle_panel => __('Select a style for the blog page. This will also be applied to all pages set using the blog template.', 'melos'), $thinkup_subtitle_customizer => __('Select a style for the blog page. This will also be applied to all pages set using the blog template.', 'melos'), 'id' => 'thinkup_blog_style', 'type' => 'radio', 'options' => array( 'option1' => 'Style 1', 'option2' => 'Style 2', ), ), array( 'title' => __('Blog Traditional Layout', 'melos'), $thinkup_subtitle_panel => __('Select a layout for your blog page. This will also be applied to all pages set using the blog template.', 'melos'), $thinkup_subtitle_customizer => __('Select a layout for your blog page. This will also be applied to all pages set using the blog template.', 'melos'), 'id' => 'thinkup_blog_style1layout', 'type' => 'radio', 'options' => array( 'option1' => 'Style 1 (Quarter Width)', 'option2' => 'Style 2 (Full Width)', ), 'required' => array( array( 'thinkup_blog_style', '=', array( 'option1' ), ), ) ), array( 'title' => __('Blog Grid Layout', 'melos'), $thinkup_subtitle_panel => __('Select a column layout for your blog page. This will also be applied to all pages set using the blog template.', 'melos'), $thinkup_subtitle_customizer => __('Select a column layout for your blog page. This will also be applied to all pages set using the blog template.', 'melos'), 'id' => 'thinkup_blog_style2layout', 'type' => 'radio', 'options' => array( 'option1' => '1 column', 'option2' => '2 column', 'option3' => '3 column', 'option4' => '4 column', ), 'required' => array( array( 'thinkup_blog_style', '=', array( 'option2' ), ), ) ), array( 'title' => __('Blog Links', 'melos'), $thinkup_subtitle_panel => __('Choose which links to show on the post hover.', 'melos'), $thinkup_subtitle_customizer => __('Choose which links to show on the post hover.', 'melos'), 'id' => 'thinkup_blog_hovercheck', 'type' => 'checkbox', 'options' => array( 'option1' => 'Check to show lightbox link', 'option2' => 'Check to show project link', ), 'default' => array( 'option1' => '1', 'option2' => '1', ), ), array( 'title' => __('Hide Post Title', 'melos'), 'desc' => __('Check to disable post title on blog page.', 'melos'), 'id' => 'thinkup_blog_title', 'type' => 'checkbox', 'default' => '0', ), array( 'title' => __('Blog Meta Content', 'melos'), 'id' => 'thinkup_blog_contentcheck', 'type' => 'checkbox', 'options' => array( 'option1' => 'Hide date posted.', 'option2' => 'Hide post author.', 'option3' => 'Hide total comments.', 'option4' => 'Hide post categories.', 'option5' => 'Hide post tags.' ), ), array( 'title' => __('Post Content', 'melos'), $thinkup_subtitle_panel => __('Control how much content you want to show from each post on the main blog page. Remember to control the full article content by using the Wordpress <a href="http://en.support.wordpress.com/splitting-content/more-tag/">more</a> tag in your post.', 'melos'), $thinkup_subtitle_customizer => __('Control how much content you want to show from each post on the main blog page. Remember to control the full article content by using the Wordpress <a href="http://en.support.wordpress.com/splitting-content/more-tag/">more</a> tag in your post.', 'melos'), 'id' => 'thinkup_blog_postswitch', 'type' => 'radio', 'options' => array( 'option1' => 'Show excerpt', 'option2' => 'Show full article', 'option3' => 'Hide article', ), ), array( 'title' => __('Excerpt Length', 'melos'), $thinkup_subtitle_panel => __('Specify number of words in post excerpt.<br />Default = 55.', 'melos'), $thinkup_subtitle_customizer => __('Specify number of words in post excerpt.<br />Default = 55.', 'melos'), 'id' => 'thinkup_blog_postexcerpt', 'type' => 'select', 'data' => 'excerpt', 'required' => array( array( 'thinkup_blog_postswitch', '=', array( 'option1' ), ), ) ), array( 'id' => 'thinkup_section_post_layout', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Control Single Post Page</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Control Single Post Page</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Post Layout', 'melos'), $thinkup_subtitle_panel => __('Select blog page layout. This will only be applied to individual posts and not the main blog page.', 'melos'), $thinkup_subtitle_customizer => __('Select blog page layout. This will only be applied to individual posts and not the main blog page.', 'melos'), 'id' => 'thinkup_post_layout', 'type' => 'image_select', 'compiler' => true, 'options' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option01.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option02.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option03.png', ), ), array( 'title' => __('Select a Sidebar', 'melos'), $thinkup_subtitle_panel => __('Choose a sidebar to use with the layout.', 'melos'), $thinkup_subtitle_customizer => __('Choose a sidebar to use with the layout.', 'melos'), 'id' => 'thinkup_post_sidebars', 'type' => 'select', 'data' => 'sidebars', 'required' => array( array( 'thinkup_post_layout', '=', array( 'option2', 'option3' ), ), ) ), array( 'title' => __('Post Meta Content', 'melos'), 'id' => 'thinkup_post_contentcheck', 'type' => 'checkbox', 'options' => array( 'option1' => 'Hide date posted.', 'option2' => 'Hide post author.', 'option3' => 'Hide total comments.', 'option4' => 'Hide post categories.', 'option5' => 'Hide post tags.', 'option6' => 'Hide post title.', ), ), array( 'title' => __('Show Author Bio', 'melos'), $thinkup_subtitle_panel => __('Check to enable the author biography.', 'melos'), $thinkup_subtitle_customizer => __('Check to enable the author biography.', 'melos'), 'id' => 'thinkup_post_authorbio', 'type' => 'switch', 'default' => '0', ), array( 'title' => __('Show Social Sharing', 'melos'), $thinkup_subtitle_panel => __('Check to enable social media sharing.', 'melos'), $thinkup_subtitle_customizer => __('Check to enable social media sharing.', 'melos'), 'id' => 'thinkup_post_share', 'type' => 'switch', 'default' => '0', ), array( 'title' => __('Sharing Message', 'melos'), $thinkup_subtitle_panel => __('Specify a message to encourage sharing.<br />Leave blank to display the default message.', 'melos'), $thinkup_subtitle_customizer => __('Specify a message to encourage sharing.<br />Leave blank to display the default message.', 'melos'), 'id' => 'thinkup_post_sharemessage', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_post_share', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_post_sharecheck', 'type' => 'checkbox', 'options' => array( 'option1' => 'Enable sharing on Facebook', 'option2' => 'Enable sharing on Twitter', 'option3' => 'Enable sharing on Google+', 'option4' => 'Enable sharing on LinkedIn', 'option5' => 'Enable sharing on Tumblr', 'option6' => 'Enable sharing on Pinterest', 'option7' => 'Enable sharing on email', ), 'required' => array( array( 'thinkup_post_share', '=', array( '1' ), ), ) ), ) ) ); // ----------------------------------------------------------------------------------- // 6. Portfolio // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Portfolio', 'melos'), 'desc' => __('<span class="redux-title">Portfolio Settings</span>', 'melos'), 'icon' => 'el el-th', 'icon_class' => '', 'id' => 'thinkup_section_portfolio', 'subsection' => $thinkup_customizer_subsection, 'customizer' => false, 'fields' => array( array( 'title' => __('Portfolio Layout', 'melos'), $thinkup_subtitle_panel => __('Select Portfolio page layout. This will only be applied to the main portfolio page and not individual projects.', 'melos'), $thinkup_subtitle_customizer => __('Select Portfolio page layout. This will only be applied to the main portfolio page and not individual projects.', 'melos'), 'id' => 'thinkup_portfolio_layout', 'type' => 'image_select', 'compiler' => true, 'options' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option01.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option02.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option03.png', 'option4' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option04.png', 'option5' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option05.png', 'option6' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option06.png', 'option7' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option07.png', 'option8' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option08.png', ), ), array( 'title' => __('Select a Sidebar', 'melos'), $thinkup_subtitle_panel => __('Choose a sidebar to use with the layout.', 'melos'), $thinkup_subtitle_customizer => __('Choose a sidebar to use with the layout.', 'melos'), 'id' => 'thinkup_portfolio_sidebars', 'type' => 'select', 'data' => 'sidebars', 'required' => array( array( 'thinkup_portfolio_layout', '=', array( 'option5', 'option6', 'option7', 'option8' ), ), ) ), array( 'title' => __('Portfolio Filter', 'melos'), $thinkup_subtitle_panel => __('Choose which filter style to use.', 'melos'), $thinkup_subtitle_customizer => __('Choose which filter style to use.', 'melos'), 'id' => 'thinkup_portfolio_filter', 'type' => 'radio', 'options' => array( 'option1' => 'Style 1 (underline)', 'option2' => 'Style 2 (button)', ), ), array( 'title' => __('Portfolio Links', 'melos'), $thinkup_subtitle_panel => __('Choose which links to show on the project hover.', 'melos'), $thinkup_subtitle_customizer => __('Choose which links to show on the project hover.', 'melos'), 'id' => 'thinkup_portfolio_hovercheck', 'type' => 'checkbox', 'options' => array( 'option1' => 'Check to show lightbox link', 'option2' => 'Check to show project link', ), 'default' => array( 'option1' => '1', 'option2' => '1', ), ), array( 'title' => __('Portfolio Content', 'melos'), $thinkup_subtitle_panel => __('Choose which content to display below the project image.', 'melos'), $thinkup_subtitle_customizer => __('Choose which content to display below the project image.', 'melos'), 'id' => 'thinkup_portfolio_check', 'type' => 'checkbox', 'options' => array( 'option1' => 'Check to show project title', 'option2' => 'Check to show project excerpt', ), ), array( 'title' => __('Portfolio Content Style', 'melos'), $thinkup_subtitle_panel => __('Choose a style for the portfolio content area.<br />Style 2 has a button and a grey background.', 'melos'), $thinkup_subtitle_customizer => __('Choose a style for the portfolio content area.<br />Style 2 has a button and a grey background.', 'melos'), 'id' => 'thinkup_portfolio_contentstyleswitch', 'type' => 'radio', 'options' => array( 'option1' => 'Style 1', 'option2' => 'Style 2', ), ), array( 'title' => __('Enable Portfolio Slider', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable portfolio slider.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable portfolio slider.', 'melos'), 'id' => 'thinkup_portfolio_sliderswitch', 'type' => 'switch', 'default' => 0, ), array( 'title' => __('Slider Categories', 'melos'), $thinkup_subtitle_panel => __('Select the project category for slides.<br />(Leave blank for all).', 'melos'), $thinkup_subtitle_customizer => __('Select the project category for slides.<br />(Leave blank for all).', 'melos'), 'id' => 'thinkup_portfolio_slidercategory', 'type' => 'select', 'data' => 'category', 'required' => array( array( 'thinkup_portfolio_sliderswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_portfolio_sliderheight', 'type' => 'slider', 'title' => __('Slider Height (Max)', 'melos'), $thinkup_subtitle_panel => __('Specify the maximum slider height (px).', 'melos'), $thinkup_subtitle_customizer => __('Specify the maximum slider height (px).', 'melos'), "default" => "300", "min" => "200", "step" => "5", "max" => "600", 'required' => array( array( 'thinkup_portfolio_sliderswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Enable Featured Projects', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable featured projects.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable featured projects.', 'melos'), 'id' => 'thinkup_portfolio_featuredswitch', 'type' => 'switch', 'default' => 0, ), array( 'title' => __('Featured Category', 'melos'), $thinkup_subtitle_panel => __('Select the project category for carousel.<br />(Leave blank for all).', 'melos'), $thinkup_subtitle_customizer => __('Select the project category for carousel.<br />(Leave blank for all).', 'melos'), 'id' => 'thinkup_portfolio_featuredcategory', 'type' => 'select', 'data' => 'category', 'required' => array( array( 'thinkup_portfolio_featuredswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Visible Projects', 'melos'), $thinkup_subtitle_panel => __('Specify number of visible projects in carousel.', 'melos'), $thinkup_subtitle_customizer => __('Specify number of visible projects in carousel.', 'melos'), 'id' => 'thinkup_portfolio_featuredcategoryitems', 'type' => 'select', 'options' => array( '2' => '2', '3' => '3', '4' => '4', '5' => '5', ), 'default' => '2', 'required' => array( array( 'thinkup_portfolio_featuredswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Scroll Projects', 'melos'), $thinkup_subtitle_panel => __('Specify number of projects to scroll on navigation.', 'melos'), $thinkup_subtitle_customizer => __('Specify number of projects to scroll on navigation.', 'melos'), 'id' => 'thinkup_portfolio_featuredcategoryscroll', 'type' => 'select', 'options' => array( '1' => '1', '2' => '2', '3' => '3', '4' => '4', ), 'default' => '1', 'required' => array( array( 'thinkup_portfolio_featuredswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Portolio Redirect', 'melos'), $thinkup_subtitle_panel => __('Redirect all project pages to the main portfolio page (www.your-site.com/portfolio)', 'melos'), $thinkup_subtitle_customizer => __('Redirect all project pages to the main portfolio page (www.your-site.com/portfolio)', 'melos'), 'desc' => __('Check to disable individual project pages.', 'melos'), 'id' => 'thinkup_portfolio_redirect', 'type' => 'checkbox', 'default' => '0', ), array( 'id' => 'thinkup_section_project_layout', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Project Settings</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Project Settings</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Project Layout', 'melos'), $thinkup_subtitle_panel => __('Select project layout. This will only be applied to individual project pages (I.e. Not portfolio page).', 'melos'), $thinkup_subtitle_customizer => __('Select project layout. This will only be applied to individual project pages (I.e. Not portfolio page).', 'melos'), 'id' => 'thinkup_project_layout', 'type' => 'image_select', 'compiler' => true, 'default' => 'option1', 'options' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option01.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option02.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option03.png', ), ), array( 'title' => __('Select a Sidebar', 'melos'), $thinkup_subtitle_panel => __('Choose a sidebar to use with the layout.', 'melos'), $thinkup_subtitle_customizer => __('Choose a sidebar to use with the layout.', 'melos'), 'id' => 'thinkup_project_sidebars', 'type' => 'select', 'data' => 'sidebars', 'required' => array( array( 'thinkup_project_layout', '=', array( 'option2', 'option3' ), ), ) ), array( 'title' => __('Project Navigation', 'melos'), $thinkup_subtitle_panel => __('Switch on to allow navigation between projects.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to allow navigation between projects.', 'melos'), 'id' => 'thinkup_project_navigationswitch', 'type' => 'switch', 'default' => 0, ), ) ) ); // ----------------------------------------------------------------------------------- // 7. Contact Page // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Contact Page', 'melos'), 'desc' => __('<span class="redux-title">Contact Us Page</span>', 'melos'), 'icon' => 'el el-envelope', 'icon_class' => '', 'id' => 'thinkup_section_contact', 'subsection' => $thinkup_customizer_subsection, 'customizer' => false, 'fields' => array( array( 'title' => __('Map Address', 'melos'), $thinkup_subtitle_panel => __('Enter the address for the map position.<br><br>You can also add a shortcode from any Maps plugin you like. Alternatively get the embed code from <a href="https://maps.google.com/" target="_blank" style="text-decoration: none;">Google Maps</a>.', 'melos'), $thinkup_subtitle_customizer => __('Enter the address for the map position.<br><br>You can also add a shortcode from any Maps plugin you like. Alternatively get the embed code from <a href="https://maps.google.com/" target="_blank" style="text-decoration: none;">Google Maps</a>.', 'melos'), 'id' => 'thinkup_contact_map', 'type' => 'textarea', 'validate' => 'html', ), array( 'title' => __('Map Position', 'melos'), 'id' => 'thinkup_contact_mapposition', 'type' => 'select', 'options' => array( 'option1' => 'Top.', 'option2' => 'Bottom.', ), ), array( 'title' => __('Contact Form Shortcode', 'melos'), $thinkup_subtitle_panel => __('Insert contact form shortcode.', 'melos'), $thinkup_subtitle_customizer => __('Insert contact form shortcode.', 'melos'), 'id' => 'thinkup_contact_form', 'type' => 'textarea', 'validate' => 'html', ), array( 'title' => __('Company Information', 'melos'), $thinkup_subtitle_panel => __('Add more details about your company.<br />Give more information about what you do.', 'melos'), $thinkup_subtitle_customizer => __('Add more details about your company.<br />Give more information about what you do.', 'melos'), 'id' => 'thinkup_contact_info', 'type' => 'textarea', 'validate' => 'html', ), array( 'id' => 'thinkup_section_contact_address', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Contact Details</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Contact Details</span>', 'melos'), 'indent' => false, ), array( $thinkup_subtitle_panel => __('Address.', 'melos'), $thinkup_subtitle_customizer => __('Address.', 'melos'), 'id' => 'thinkup_contact_address', 'type' => 'text', 'validate' => 'html', ), array( $thinkup_subtitle_panel => __('Phone.', 'melos'), $thinkup_subtitle_customizer => __('Phone.', 'melos'), 'id' => 'thinkup_contact_phone', 'type' => 'text', 'validate' => 'html', ), array( $thinkup_subtitle_panel => __('Email.', 'melos'), $thinkup_subtitle_customizer => __('Email.', 'melos'), 'msg' => 'Check email address is correct.', 'id' => 'thinkup_contact_email', 'type' => 'text', 'validate' => 'email', ), array( $thinkup_subtitle_panel => __('Website.', 'melos'), $thinkup_subtitle_customizer => __('Website.', 'melos'), 'id' => 'thinkup_contact_website', 'type' => 'text', 'validate' => 'html', ), array( 'title' => __('Enable Icons', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable contact details icons.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable contact details icons.', 'melos'), 'id' => 'thinkup_contact_iconswitch', 'type' => 'switch', 'default' => 0, ), ) ) ); // ----------------------------------------------------------------------------------- // 8. Special Page // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Special Pages', 'melos'), 'desc' => __('<span class="redux-title">Clients</span>', 'melos'), 'icon' => 'el el-star', 'icon_class' => '', 'id' => 'thinkup_section_special', 'subsection' => $thinkup_customizer_subsection, 'customizer' => false, 'fields' => array( array( 'title' => __('Client Redirect', 'melos'), 'desc' => __('Check to disable individual client pages.', 'melos'), 'id' => 'thinkup_client_redirect', 'type' => 'checkbox', 'default' => '0', ), array( 'title' => __('Client Categories', 'melos'), $thinkup_subtitle_panel => __('Display clients in specified categories number only, comma separated. (e.g. 21,37,41…)', 'melos'), $thinkup_subtitle_customizer => __('Display clients in specified categories number only, comma separated. (e.g. 21,37,41…)', 'melos'), 'id' => 'thinkup_client_category', 'type' => 'text', 'validate' => 'html', ), array( 'id' => 'thinkup_section_special_team', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Team</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Team</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Team Style', 'melos'), $thinkup_subtitle_panel => __('Choose a style for the team page.', 'melos'), $thinkup_subtitle_customizer => __('Choose a style for the team page.', 'melos'), 'id' => 'thinkup_team_styleswitch', 'type' => 'radio', 'options' => array( 'option1' => 'Style 1', 'option2' => 'Style 2', ), ), array( 'title' => __('Team Layout', 'melos'), $thinkup_subtitle_panel => __('Select a layout for the grid style team page.', 'melos'), $thinkup_subtitle_customizer => __('Select a layout for the grid style team page.', 'melos'), 'id' => 'thinkup_team_layout', 'type' => 'image_select', 'compiler' => true, 'options' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option01.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option02.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option03.png', 'option4' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option04.png', ), ), array( 'title' => __('Team Links Style', 'melos'), $thinkup_subtitle_panel => __('Choose a style for the team hover area.<br />Style 2 takes the theme color scheme.', 'melos'), $thinkup_subtitle_customizer => __('Choose a style for the team hover area.<br />Style 2 takes the theme color scheme.', 'melos'), 'id' => 'thinkup_team_hoverstyleswitch', 'type' => 'radio', 'options' => array( 'option1' => 'Style 1 (color overlay)', 'option2' => 'Style 2 (dark overlay)', ), ), array( 'title' => __('Team Content', 'melos'), 'id' => 'thinkup_team_contentcheck', 'type' => 'checkbox', 'options' => array( 'option1' => 'Hide name.', 'option2' => 'Hide position.', 'option3' => 'Hide excerpt.', 'option4' => 'Hide social links.', ), ), array( 'title' => __('Team Redirect', 'melos'), 'desc' => __('Check to disable individual team pages.', 'melos'), 'id' => 'thinkup_team_redirect', 'type' => 'checkbox', 'default' => '0', ), array( 'id' => 'thinkup_section_special_testimonial', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Testimonials</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Testimonials</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Testimonal Style', 'melos'), $thinkup_subtitle_panel => __('Choose a style for the testimonals page.', 'melos'), $thinkup_subtitle_customizer => __('Choose a style for the testimonals page.', 'melos'), 'id' => 'thinkup_testimonal_styleswitch', 'type' => 'radio', 'options' => array( 'option1' => 'Style 1', 'option2' => 'Style 2', ), ), array( 'title' => __('Testimonal Page Links', 'melos'), 'desc' => __('Check to disable links to individual testimonial pages.', 'melos'), 'id' => 'thinkup_testimonial_links', 'type' => 'checkbox', 'default' => '0', ), array( 'title' => __('Testimonal Redirect', 'melos'), 'desc' => __('Check to disable individual testimonial pages.', 'melos'), 'id' => 'thinkup_testimonial_redirect', 'type' => 'checkbox', 'default' => '0', ), array( 'title' => __('Testimonial Categories.', 'melos'), $thinkup_subtitle_panel => __('Display testimonials in specified categories number only, comma separated. (e.g. 21,37,41…)', 'melos'), $thinkup_subtitle_customizer => __('Display testimonials in specified categories number only, comma separated. (e.g. 21,37,41…)', 'melos'), 'id' => 'thinkup_testimonial_category', 'type' => 'text', 'validate' => 'html', ), array( 'id' => 'thinkup_section_special_404', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">404 Error Pages</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">404 Error Pages</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Custom Content', 'melos'), $thinkup_subtitle_panel => __('Overwrite the theme standard 404 error page message by adding your own HTML content.', 'melos'), $thinkup_subtitle_customizer => __('Overwrite the theme standard 404 error page message by adding your own HTML content.', 'melos'), 'id' => 'thinkup_404_content', 'type' => 'editor', ), array( 'desc' => __('Check to disable autoparagraph.', 'melos'), 'id' => 'thinkup_404_contentparagraph', 'type' => 'checkbox', 'default' => '0', ), ) ) ); // ----------------------------------------------------------------------------------- // 9. Notification Bar // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Notification Bar', 'melos'), 'desc' => __('<span class="redux-title">Control Notification Bar</span>', 'melos'), 'icon' => 'el el-bullhorn', 'icon_class' => '', 'id' => 'thinkup_section_notification', 'subsection' => $thinkup_customizer_subsection, 'customizer' => false, 'fields' => array( array( 'title' => __('Enable Notification Bar', 'melos'), 'desc' => __('Check to show notification bar on site.', 'melos'), 'id' => 'thinkup_notification_switch', 'type' => 'checkbox', 'default' => '0', ), array( 'title' => __('Notification Bar Message', 'melos'), $thinkup_subtitle_panel => __('Enter a message for your notification bar.<br /><br />This will be one of the first things that visitors see on your site. Make it interesting to make as many visitors as possible convert.', 'melos'), $thinkup_subtitle_customizer => __('Enter a message for your notification bar.<br /><br />This will be one of the first things that visitors see on your site. Make it interesting to make as many visitors as possible convert.', 'melos'), 'id' => 'thinkup_notification_text', 'type' => 'textarea', 'validate' => 'html', ), array( 'title' => __('Button Text', 'melos'), $thinkup_subtitle_panel => __('This is some sample user description text.', 'melos'), $thinkup_subtitle_customizer => __('This is some sample user description text.', 'melos'), 'id' => 'thinkup_notification_button', 'type' => 'text', 'validate' => 'html', ), array( 'title' => __('Add Button Link', 'melos'), $thinkup_subtitle_panel => __('Specify whether the notification bar should link to a page on your site, out to external webpage disable the link altogether.', 'melos'), $thinkup_subtitle_customizer => __('Specify whether the notification bar should link to a page on your site, out to external webpage disable the link altogether.', 'melos'), 'id' => 'thinkup_notification_link', 'type' => 'radio', 'options' => array( 'option1' => 'Link to a Page', 'option2' => 'Specify Custom link', 'option3' => 'Disable Link', ), ), array( 'title' => __('Link to a page', 'melos'), $thinkup_subtitle_panel => __('Select a target page for action button link.', 'melos'), $thinkup_subtitle_customizer => __('Select a target page for action button link.', 'melos'), 'id' => 'thinkup_notification_linkpage', 'type' => 'select', 'data' => 'pages', 'required' => array( array( 'thinkup_notification_link', '=', array( 'option1' ), ), ) ), array( 'title' => __('Custom Link', 'melos'), $thinkup_subtitle_panel => __('Input a custom url for the action button link.<br />Add http:// if linking to an external webpage.', 'melos'), $thinkup_subtitle_customizer => __('Input a custom url for the action button link.<br />Add http:// if linking to an external webpage.', 'melos'), 'id' => 'thinkup_notification_linkcustom', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_notification_link', '=', array( 'option2' ), ), ) ), array( 'id' => 'thinkup_section_notification_positioning', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Positioning</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Positioning</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Only show on homepage?', 'melos'), 'desc' => __('Check to only show on homepage.', 'melos'), 'id' => 'thinkup_notification_homeswitch', 'type' => 'checkbox', 'default' => '0', ), array( 'title' => __('Fix Bar Position', 'melos'), 'desc' => __('Check to stick bar to the top of the page.', 'melos'), 'id' => 'thinkup_notification_fixtop', 'type' => 'checkbox', 'default' => '0', ), array( 'id' => 'thinkup_section_notification_styling', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Styling</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Styling</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Notification Bar', 'melos'), 'desc' => __('Use custom color scheme.', 'melos'), 'id' => 'thinkup_notification_backgroundcolourswitch', 'type' => 'checkbox', 'default' => '0', ), array( 'id' => 'thinkup_notification_backgroundcolour', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', ), array( 'title' => __('Main Message', 'melos'), 'desc' => __('Use custom color scheme.', 'melos'), 'id' => 'thinkup_notification_maintextcolourswitch', 'type' => 'checkbox', 'default' => '0', ), array( 'id' => 'thinkup_notification_maintextcolour', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', ), array( 'title' => __('Button', 'melos'), 'desc' => __('Use custom color scheme.', 'melos'), 'id' => 'thinkup_notification_buttoncolourswitch', 'type' => 'checkbox', 'default' => '0', ), array( 'id' => 'thinkup_notification_buttoncolour', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', ), array( 'title' => __('Button Text', 'melos'), 'desc' => __('Use custom color scheme.', 'melos'), 'id' => 'thinkup_notification_buttontextcolourswitch', 'type' => 'checkbox', 'default' => '0', ), array( 'id' => 'thinkup_notification_buttontextcolour', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', ), ) ) ); // ----------------------------------------------------------------------------------- // 11. Search Engine Optimisation // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('SEO', 'melos'), 'desc' => __('<span class="redux-title">Control Search Engine Optimization</span>', 'melos'), 'icon' => 'el el-search', 'icon_class' => '', 'id' => 'thinkup_section_seo', 'subsection' => $thinkup_customizer_subsection, 'customizer' => false, 'fields' => array( array( 'title' => __('Enable SEO?', 'melos'), $thinkup_subtitle_panel => __('Check to enable SEO features.', 'melos'), $thinkup_subtitle_customizer => __('Check to enable SEO features.', 'melos'), 'id' => 'thinkup_seo_switch', 'type' => 'switch', 'default' => '0', ), array( 'title' => __('Home Page Title', 'melos'), $thinkup_subtitle_panel => __('This title will only be shown on the homepage.<br />Note: Add titles to inner pages individually.', 'melos'), $thinkup_subtitle_customizer => __('This title will only be shown on the homepage.<br />Note: Add titles to inner pages individually.', 'melos'), 'id' => 'thinkup_seo_sitetitle', 'type' => 'text', 'validate' => 'no_html', ), array( 'title' => __('Homepage Description', 'melos'), $thinkup_subtitle_panel => __('Write a short and snappy description about what your site offers. This helps search engines learn more about your site.<br /><br />By default this is displayed on all pages. The description can be overwritten on individual pages.', 'melos'), $thinkup_subtitle_customizer => __('Write a short and snappy description about what your site offers. This helps search engines learn more about your site.<br /><br />By default this is displayed on all pages. The description can be overwritten on individual pages.', 'melos'), 'id' => 'thinkup_seo_homedescription', 'type' => 'textarea', 'validate' => 'no_html', ), array( 'title' => __('Keywords (Comma Separated)', 'melos'), $thinkup_subtitle_panel => __('Add keywords that are relevant for your site. This helps search engines learn more about your site.<br /><br />By default this is displayed on all pages. The keywords can be overwritten on individual pages.', 'melos'), $thinkup_subtitle_customizer => __('Add keywords that are relevant for your site. This helps search engines learn more about your site.<br /><br />By default this is displayed on all pages. The keywords can be overwritten on individual pages.', 'melos'), 'id' => 'thinkup_seo_sitekeywords', 'type' => 'textarea', 'validate' => 'no_html', ), array( 'title' => __('Meta Robot Tags', 'melos'), 'id' => 'thinkup_seo_metarobots', 'type' => 'checkbox', 'options' => array( 'option1' => 'Enable sitewide 'noodp' meta tag.', 'option2' => 'Enable sitewide 'noydir' meta tag.', ), ), array( 'id' => 'thinkup_section_seo_metainfo', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('Learn more about how <strong><u>noodp</u></strong> and <strong><u>noydir</u></strong> tags can influence your SEO and SERP results on <a href="http://en.wikipedia.org/wiki/Meta_element">Wikipedia</a>', 'melos'), $thinkup_subtitle_customizer => __('Learn more about how <strong><u>noodp</u></strong> and <strong><u>noydir</u></strong> tags can influence your SEO and SERP results on <a href="http://en.wikipedia.org/wiki/Meta_element">Wikipedia</a>', 'melos'), 'indent' => false, ), ) ) ); // ----------------------------------------------------------------------------------- // 12. Typography // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Typography', 'melos'), 'desc' => __('<span class="redux-title">Control Font Family</span>', 'melos'), 'icon' => 'el el-font', 'icon_class' => '', 'id' => 'thinkup_section_font', 'subsection' => $thinkup_customizer_subsection, 'customizer' => false, 'fields' => array( array( 'title' => __('Body Font', 'melos'), 'desc' => __('Check to use Google fonts.', 'melos'), 'id' => 'thinkup_font_bodyswitch', 'type' => 'checkbox', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Select a "Standard Font" for body text.<br />This will <strong>NOT</strong> affect text in header or footer areas.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Standard Font" for body text.<br />This will <strong>NOT</strong> affect text in header or footer areas.', 'melos'), 'id' => 'thinkup_font_bodystandard', 'type' => 'select', 'data' => 'standardfont', 'required' => array( array( 'thinkup_font_bodyswitch', '!=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Select a "Google Font" for body text.<br />This will <strong>NOT</strong> affect text in header or footer areas.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Google Font" for body text.<br />This will <strong>NOT</strong> affect text in header or footer areas.', 'melos'), 'id' => 'thinkup_font_bodygoogle', 'type' => 'select', 'data' => 'googlefont', 'required' => array( array( 'thinkup_font_bodyswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Body Headings', 'melos'), 'desc' => __('Check to use Google fonts.', 'melos'), 'id' => 'thinkup_font_bodyheadingswitch', 'type' => 'checkbox', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Select a "Standard Font" for header text.<br />This will <strong>NOT</strong> affect text in header or footer areas.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Standard Font" for header text.<br />This will <strong>NOT</strong> affect text in header or footer areas.', 'melos'), 'id' => 'thinkup_font_bodyheadingstandard', 'type' => 'select', 'data' => 'standardfont', 'required' => array( array( 'thinkup_font_bodyheadingswitch', '!=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Select a "Google Font" for header text.<br />This will <strong>NOT</strong> affect text in header or footer areas.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Google Font" for header text.<br />This will <strong>NOT</strong> affect text in header or footer areas.', 'melos'), 'id' => 'thinkup_font_bodyheadinggoogle', 'type' => 'select', 'data' => 'googlefont', 'required' => array( array( 'thinkup_font_bodyheadingswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Pre Header Menu', 'melos'), 'desc' => __('Check to use Google fonts.', 'melos'), 'id' => 'thinkup_font_preheaderswitch', 'type' => 'checkbox', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Select a "Standard Font" for pre header text.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Standard Font" for pre header text.', 'melos'), 'id' => 'thinkup_font_preheaderstandard', 'type' => 'select', 'data' => 'standardfont', 'required' => array( array( 'thinkup_font_preheaderswitch', '!=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Select a "Google Font" for pre header text.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Google Font" for pre header text.', 'melos'), 'id' => 'thinkup_font_preheadergoogle', 'type' => 'select', 'data' => 'googlefont', 'required' => array( array( 'thinkup_font_preheaderswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Main Header Menu', 'melos'), 'desc' => __('Check to use Google fonts.', 'melos'), 'id' => 'thinkup_font_mainheaderswitch', 'type' => 'checkbox', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Select a "Standard Font" for main header text.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Standard Font" for main header text.', 'melos'), 'id' => 'thinkup_font_mainheaderstandard', 'type' => 'select', 'data' => 'standardfont', 'required' => array( array( 'thinkup_font_mainheaderswitch', '!=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Select a "Google Font" for main header text.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Google Font" for main header text.', 'melos'), 'id' => 'thinkup_font_mainheadergoogle', 'type' => 'select', 'data' => 'googlefont', 'required' => array( array( 'thinkup_font_mainheaderswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Footer Headings', 'melos'), 'desc' => __('Check to use Google fonts.', 'melos'), 'id' => 'thinkup_font_footerheadingswitch', 'type' => 'checkbox', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Select a "Standard Font" for body text.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Standard Font" for body text.', 'melos'), 'id' => 'thinkup_font_footerheadingstandard', 'type' => 'select', 'data' => 'standardfont', 'required' => array( array( 'thinkup_font_footerheadingswitch', '!=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Select a "Google Font" for body text.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Google Font" for body text.', 'melos'), 'id' => 'thinkup_font_footerheadinggoogle', 'type' => 'select', 'data' => 'googlefont', 'required' => array( array( 'thinkup_font_footerheadingswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Main Footer Menu', 'melos'), 'desc' => __('Check to use Google fonts.', 'melos'), 'id' => 'thinkup_font_mainfooterswitch', 'type' => 'checkbox', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Select a "Standard Font" for footer menu text.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Standard Font" for footer menu text.', 'melos'), 'id' => 'thinkup_font_mainfooterstandard', 'type' => 'select', 'data' => 'standardfont', 'required' => array( array( 'thinkup_font_mainfooterswitch', '!=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Select a "Google Font" for footer menu text.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Google Font" for footer menu text.', 'melos'), 'id' => 'thinkup_font_mainfootergoogle', 'type' => 'select', 'data' => 'googlefont', 'required' => array( array( 'thinkup_font_mainfooterswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Post Footer Menu', 'melos'), 'desc' => __('Check to use Google fonts.', 'melos'), 'id' => 'thinkup_font_postfooterswitch', 'type' => 'checkbox', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Select a "Standard Font" for post footer text.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Standard Font" for post footer text.', 'melos'), 'id' => 'thinkup_font_postfooterstandard', 'type' => 'select', 'data' => 'standardfont', 'required' => array( array( 'thinkup_font_postfooterswitch', '!=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Select a "Google Font" for post footer text.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Google Font" for post footer text.', 'melos'), 'id' => 'thinkup_font_postfootergoogle', 'type' => 'select', 'data' => 'googlefont', 'required' => array( array( 'thinkup_font_postfooterswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Slider Title', 'melos'), 'desc' => __('Check to use Google fonts.', 'melos'), 'id' => 'thinkup_font_slidertitleswitch', 'type' => 'checkbox', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Select a "Standard Font" for the slider title.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Standard Font" for the slider title.', 'melos'), 'id' => 'thinkup_font_slidertitlestandard', 'type' => 'select', 'data' => 'standardfont', 'required' => array( array( 'thinkup_font_slidertitleswitch', '!=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Select a "Google Font" for the slider title.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Google Font" for the slider title.', 'melos'), 'id' => 'thinkup_font_slidertitlegoogle', 'type' => 'select', 'data' => 'googlefont', 'required' => array( array( 'thinkup_font_slidertitleswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Slider Description', 'melos'), 'desc' => __('Check to use Google fonts.', 'melos'), 'id' => 'thinkup_font_slidertextswitch', 'type' => 'checkbox', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Select a "Standard Font" for the slider description.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Standard Font" for the slider description.', 'melos'), 'id' => 'thinkup_font_slidertextstandard', 'type' => 'select', 'data' => 'standardfont', 'required' => array( array( 'thinkup_font_slidertextswitch', '!=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Select a "Google Font" for the slider description.', 'melos'), $thinkup_subtitle_customizer => __('Select a "Google Font" for the slider description.', 'melos'), 'id' => 'thinkup_font_slidertextgoogle', 'type' => 'select', 'data' => 'googlefont', 'required' => array( array( 'thinkup_font_slidertextswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_section_font_size', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Control Font Size</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Control Font Size</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Body Font', 'melos'), $thinkup_subtitle_panel => __('Specify the body font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the body font size.', 'melos'), 'id' => 'thinkup_font_bodysize', 'type' => 'select', 'data' => 'fontsize', ), array( 'title' => __('H1 Heading', 'melos'), $thinkup_subtitle_panel => __('Specify the h1 heading font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the h1 heading font size.', 'melos'), 'id' => 'thinkup_font_h1size', 'type' => 'select', 'data' => 'fontsize', ), array( 'title' => __('H2 Heading', 'melos'), $thinkup_subtitle_panel => __('Specify the h2 heading font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the h2 heading font size.', 'melos'), 'id' => 'thinkup_font_h2size', 'type' => 'select', 'data' => 'fontsize', ), array( 'title' => __('H3 Heading', 'melos'), $thinkup_subtitle_panel => __('Specify the h3 heading font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the h3 heading font size.', 'melos'), 'id' => 'thinkup_font_h3size', 'type' => 'select', 'data' => 'fontsize', ), array( 'title' => __('H4 Heading', 'melos'), $thinkup_subtitle_panel => __('Specify the h4 heading font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the h4 heading font size.', 'melos'), 'id' => 'thinkup_font_h4size', 'type' => 'select', 'data' => 'fontsize', ), array( 'title' => __('H5 Heading', 'melos'), $thinkup_subtitle_panel => __('Specify the h5 heading font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the h5 heading font size.', 'melos'), 'id' => 'thinkup_font_h5size', 'type' => 'select', 'data' => 'fontsize', ), array( 'title' => __('H6 Heading', 'melos'), $thinkup_subtitle_panel => __('Specify the h6 heading font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the h6 heading font size.', 'melos'), 'id' => 'thinkup_font_h6size', 'type' => 'select', 'data' => 'fontsize', ), array( 'title' => __('Sidebar Widget Heading', 'melos'), $thinkup_subtitle_panel => __('Specify the sidebar widget heading font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the sidebar widget heading font size.', 'melos'), 'id' => 'thinkup_font_sidebarsize', 'type' => 'select', 'data' => 'fontsize', ), array( 'title' => __('Pre Header Menu', 'melos'), $thinkup_subtitle_panel => __('Specify the pre header font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the pre header font size.', 'melos'), 'id' => 'thinkup_font_preheadersize', 'type' => 'select', 'data' => 'fontsize', ), array( 'title' => __('Pre Header Menu (Dropdown)', 'melos'), $thinkup_subtitle_panel => __('Specify the pre header dropdown font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the pre header dropdown font size.', 'melos'), 'id' => 'thinkup_font_preheadersubsize', 'type' => 'select', 'data' => 'fontsize', ), array( 'title' => __('Main Header Menu', 'melos'), $thinkup_subtitle_panel => __('Specify the main header font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the main header font size.', 'melos'), 'id' => 'thinkup_font_mainheadersize', 'type' => 'select', 'data' => 'fontsize', ), array( 'title' => __('Main Header Menu (Dropdown)', 'melos'), $thinkup_subtitle_panel => __('Specify the main header dropdown font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the main header dropdown font size.', 'melos'), 'id' => 'thinkup_font_mainheadersubsize', 'type' => 'select', 'data' => 'fontsize', ), array( 'title' => __('Footer Headings', 'melos'), $thinkup_subtitle_panel => __('Specify the footer heading font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the footer heading font size.', 'melos'), 'id' => 'thinkup_font_footerheadingsize', 'type' => 'select', 'data' => 'fontsize', ), array( 'title' => __('Main Footer Menu', 'melos'), $thinkup_subtitle_panel => __('Specify the main footer font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the main footer font size.', 'melos'), 'id' => 'thinkup_font_mainfootersize', 'type' => 'select', 'data' => 'fontsize', ), array( 'title' => __('Post Footer Menu', 'melos'), $thinkup_subtitle_panel => __('Specify the post footer font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the post footer font size.', 'melos'), 'id' => 'thinkup_font_postfootersize', 'type' => 'select', 'data' => 'fontsize', ), array( 'title' => __('Slider Title', 'melos'), $thinkup_subtitle_panel => __('Specify the slider title font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the slider title font size.', 'melos'), 'id' => 'thinkup_font_slidertitlesize', 'type' => 'select', 'data' => 'fontsize', ), array( 'title' => __('Slider Description', 'melos'), $thinkup_subtitle_panel => __('Specify the slider description font size.', 'melos'), $thinkup_subtitle_customizer => __('Specify the slider description font size.', 'melos'), 'id' => 'thinkup_font_slidertextsize', 'type' => 'select', 'data' => 'fontsize', ), ) ) ); // ----------------------------------------------------------------------------------- // 13. Custom Styling // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Custom Styling', 'melos'), 'desc' => __('<span class="redux-title">1 Click Color Change</span>', 'melos'), 'icon' => 'el el-eye-open', 'icon_class' => '', 'id' => 'thinkup_section_styles', 'subsection' => $thinkup_customizer_subsection, 'customizer' => false, 'fields' => array( array( 'title' => __('Custom Color Scheme', 'melos'), 'desc' => __('Check to use custom theme color.', 'melos'), 'id' => 'thinkup_styles_colorswitch', 'type' => 'checkbox', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Specify a custom theme color.', 'melos'), $thinkup_subtitle_customizer => __('Specify a custom theme color.', 'melos'), 'id' => 'thinkup_styles_colorcustom', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', ), array( 'id' => 'thinkup_section_styles_advanced', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Advanced Custom Styling</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Advanced Custom Styling</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Main Content', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable main content area styling.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable main content area styling.', 'melos'), 'id' => 'thinkup_styles_mainswitch', 'type' => 'switch', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Upload an image to use as background.<br />Leave blank to use custom color.', 'melos'), $thinkup_subtitle_customizer => __('Upload an image to use as background.<br />Leave blank to use custom color.', 'melos'), 'id' => 'thinkup_styles_mainimage', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_styles_mainswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Position. Find out more <a href="http://www.w3schools.com/cssref/pr_background-position.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Background Position. Find out more <a href="http://www.w3schools.com/cssref/pr_background-position.asp">here</a>.', 'melos'), 'id' => 'thinkup_styles_mainposition', 'type' => 'select', 'options' => array( 'left top' => 'left top', 'left center' => 'left center', 'left bottom' => 'left bottom', 'right top' => 'right top', 'right center' => 'right center', 'right bottom' => 'right bottom', 'center top' => 'center top', 'center center' => 'center center', 'center bottom' => 'center bottom', ), 'required' => array( array( 'thinkup_styles_mainswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Repeat. Find out more <a href="http://www.w3schools.com/cssref/pr_background-repeat.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Background Repeat. Find out more <a href="http://www.w3schools.com/cssref/pr_background-repeat.asp">here</a>.', 'melos'), 'id' => 'thinkup_styles_mainrepeat', 'type' => 'select', 'options' => array( "repeat" => "repeat", "repeat-x" => "repeat-x", "repeat-y" => "repeat-y", "no-repeat" => "no-repeat", ), 'required' => array( array( 'thinkup_styles_mainswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Size? Find out more <a href="http://www.w3schools.com/cssref/css3_pr_background-size.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Background Size? Find out more <a href="http://www.w3schools.com/cssref/css3_pr_background-size.asp">here</a>.', 'melos'), 'id' => 'thinkup_styles_mainsize', 'type' => 'select', 'options' => array( "auto" => "auto", "cover" => "cover", "constrain" => "constrain", ), 'required' => array( array( 'thinkup_styles_mainswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Fix background or scroll? Find out more <a href="http://www.w3schools.com/cssref/pr_background-attachment.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Fix background or scroll? Find out more <a href="http://www.w3schools.com/cssref/pr_background-attachment.asp">here</a>.', 'melos'), 'id' => 'thinkup_styles_mainattachment', 'type' => 'select', 'options' => array( "scroll" => "scroll", "fixed" => "fixed", ), 'required' => array( array( 'thinkup_styles_mainswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background color.', 'melos'), $thinkup_subtitle_customizer => __('Background color.', 'melos'), 'id' => 'thinkup_styles_mainbg', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_mainswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Headings (h1, h2, h3, etc…)', 'melos'), $thinkup_subtitle_customizer => __('Headings (h1, h2, h3, etc…)', 'melos'), 'id' => 'thinkup_styles_mainheading', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_mainswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Body text.', 'melos'), $thinkup_subtitle_customizer => __('Body text.', 'melos'), 'id' => 'thinkup_styles_maintext', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_mainswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Body links.', 'melos'), $thinkup_subtitle_customizer => __('Body links.', 'melos'), 'id' => 'thinkup_styles_mainlink', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_mainswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Body links - Hover.', 'melos'), $thinkup_subtitle_customizer => __('Body links - Hover.', 'melos'), 'id' => 'thinkup_styles_mainlinkhover', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_mainswitch', '=', array( '1' ), ), ) ), // Pre Header Styling array( 'title' => __('Pre Header', 'consulting'), $thinkup_subtitle_panel => __('Switch on to enable custom pre-header styling.', 'consulting'), $thinkup_subtitle_customizer => __('Switch on to enable custom pre-header styling.', 'consulting'), 'id' => 'thinkup_styles_preheaderswitch', 'type' => 'switch', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Upload an image to use as background.<br />Leave blank to use custom color.', 'consulting'), $thinkup_subtitle_customizer => __('Upload an image to use as background.<br />Leave blank to use custom color.', 'consulting'), 'id' => 'thinkup_styles_preheaderimage', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_styles_preheaderswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Position. Find out more <a href="http://www.w3schools.com/cssref/pr_background-position.asp">here</a>.', 'consulting'), $thinkup_subtitle_customizer => __('Background Position. Find out more <a href="http://www.w3schools.com/cssref/pr_background-position.asp">here</a>.', 'consulting'), 'id' => 'thinkup_styles_preheaderposition', 'type' => 'select', 'options' => array( 'left top' => 'left top', 'left center' => 'left center', 'left bottom' => 'left bottom', 'right top' => 'right top', 'right center' => 'right center', 'right bottom' => 'right bottom', 'center top' => 'center top', 'center center' => 'center center', 'center bottom' => 'center bottom' ), 'required' => array( array( 'thinkup_styles_preheaderswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Repeat. Find out more <a href="http://www.w3schools.com/cssref/pr_background-repeat.asp">here</a>.', 'consulting'), $thinkup_subtitle_customizer => __('Background Repeat. Find out more <a href="http://www.w3schools.com/cssref/pr_background-repeat.asp">here</a>.', 'consulting'), 'id' => 'thinkup_styles_preheaderrepeat', 'type' => 'select', 'options' => array( "repeat" => "repeat", "repeat-x" => "repeat-x", "repeat-y" => "repeat-y", "no-repeat" => "no-repeat" ), 'required' => array( array( 'thinkup_styles_preheaderswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Size? Find out more <a href="http://www.w3schools.com/cssref/css3_pr_background-size.asp">here</a>.', 'consulting'), $thinkup_subtitle_customizer => __('Background Size? Find out more <a href="http://www.w3schools.com/cssref/css3_pr_background-size.asp">here</a>.', 'consulting'), 'id' => 'thinkup_styles_preheadersize', 'type' => 'select', 'options' => array( "auto" => "auto", "cover" => "cover", "constrain" => "constrain" ), 'required' => array( array( 'thinkup_styles_preheaderswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Fix background or scroll? Find out more <a href="http://www.w3schools.com/cssref/pr_background-attachment.asp">here</a>.', 'consulting'), $thinkup_subtitle_customizer => __('Fix background or scroll? Find out more <a href="http://www.w3schools.com/cssref/pr_background-attachment.asp">here</a>.', 'consulting'), 'id' => 'thinkup_styles_preheaderattachment', 'type' => 'select', 'options' => array( "scroll" => "scroll", "fixed" => "fixed" ), 'required' => array( array( 'thinkup_styles_preheaderswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Top tier menu - Background color.', 'consulting'), $thinkup_subtitle_customizer => __('Top tier menu - Background color.', 'consulting'), 'id' => 'thinkup_styles_preheaderbg', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_preheaderswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Top tier menu - Background color on hover.', 'consulting'), $thinkup_subtitle_customizer => __('Top tier menu - Background color on hover.', 'consulting'), 'id' => 'thinkup_styles_preheaderbghover', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_preheaderswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Top tier menu - Text color.', 'consulting'), $thinkup_subtitle_customizer => __('Top tier menu - Text color.', 'consulting'), 'id' => 'thinkup_styles_preheadertext', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_preheaderswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Top tier menu - Text color on hover.', 'consulting'), $thinkup_subtitle_customizer => __('Top tier menu - Text color on hover.', 'consulting'), 'id' => 'thinkup_styles_preheadertexthover', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_preheaderswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Dropdown menu - Background color.', 'consulting'), $thinkup_subtitle_customizer => __('Dropdown menu - Background color.', 'consulting'), 'id' => 'thinkup_styles_preheaderdropbg', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_preheaderswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Dropdown menu - Background color on hover.', 'consulting'), $thinkup_subtitle_customizer => __('Dropdown menu - Background color on hover.', 'consulting'), 'id' => 'thinkup_styles_preheaderdropbghover', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_preheaderswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Dropdown menu - Text color.', 'consulting'), $thinkup_subtitle_customizer => __('Dropdown menu - Text color.', 'consulting'), 'id' => 'thinkup_styles_preheaderdroptext', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_preheaderswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Dropdown menu - Text color on hover.', 'consulting'), $thinkup_subtitle_customizer => __('Dropdown menu - Text color on hover.', 'consulting'), 'id' => 'thinkup_styles_preheaderdroptexthover', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_preheaderswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Dropdown menu - Border color.', 'consulting'), $thinkup_subtitle_customizer => __('Dropdown menu - Border color.', 'consulting'), 'id' => 'thinkup_styles_preheaderdropborder', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_preheaderswitch', '=', array( '1' ), ), ) ), // Main Header Styling array( 'title' => __('Header', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable custom header styling.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable custom header styling.', 'melos'), 'id' => 'thinkup_styles_headerswitch', 'type' => 'switch', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Upload an image to use as background.<br />Leave blank to use custom color.', 'melos'), $thinkup_subtitle_customizer => __('Upload an image to use as background.<br />Leave blank to use custom color.', 'melos'), 'id' => 'thinkup_styles_headerimage', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_styles_headerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Position. Find out more <a href="http://www.w3schools.com/cssref/pr_background-position.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Background Position. Find out more <a href="http://www.w3schools.com/cssref/pr_background-position.asp">here</a>.', 'melos'), 'id' => 'thinkup_styles_headerposition', 'type' => 'select', 'options' => array( 'left top' => 'left top', 'left center' => 'left center', 'left bottom' => 'left bottom', 'right top' => 'right top', 'right center' => 'right center', 'right bottom' => 'right bottom', 'center top' => 'center top', 'center center' => 'center center', 'center bottom' => 'center bottom', ), 'required' => array( array( 'thinkup_styles_headerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Repeat. Find out more <a href="http://www.w3schools.com/cssref/pr_background-repeat.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Background Repeat. Find out more <a href="http://www.w3schools.com/cssref/pr_background-repeat.asp">here</a>.', 'melos'), 'id' => 'thinkup_styles_headerrepeat', 'type' => 'select', 'options' => array( "repeat" => "repeat", "repeat-x" => "repeat-x", "repeat-y" => "repeat-y", "no-repeat" => "no-repeat", ), 'required' => array( array( 'thinkup_styles_headerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Size? Find out more <a href="http://www.w3schools.com/cssref/css3_pr_background-size.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Background Size? Find out more <a href="http://www.w3schools.com/cssref/css3_pr_background-size.asp">here</a>.', 'melos'), 'id' => 'thinkup_styles_headersize', 'type' => 'select', 'options' => array( "auto" => "auto", "cover" => "cover", "constrain" => "constrain", ), 'required' => array( array( 'thinkup_styles_headerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Fix background or scroll? Find out more <a href="http://www.w3schools.com/cssref/pr_background-attachment.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Fix background or scroll? Find out more <a href="http://www.w3schools.com/cssref/pr_background-attachment.asp">here</a>.', 'melos'), 'id' => 'thinkup_styles_headerattachment', 'type' => 'select', 'options' => array( "scroll" => "scroll", "fixed" => "fixed", ), 'required' => array( array( 'thinkup_styles_headerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Top tier menu - Background color.', 'melos'), $thinkup_subtitle_customizer => __('Top tier menu - Background color.', 'melos'), 'id' => 'thinkup_styles_headerbg', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_headerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Top tier menu - Background color on hover.', 'melos'), $thinkup_subtitle_customizer => __('Top tier menu - Background color on hover.', 'melos'), 'id' => 'thinkup_styles_headerbghover', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_headerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Top tier menu - Text color.', 'melos'), $thinkup_subtitle_customizer => __('Top tier menu - Text color.', 'melos'), 'id' => 'thinkup_styles_headertext', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_headerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Top tier menu - Text color on hover.', 'melos'), $thinkup_subtitle_customizer => __('Top tier menu - Text color on hover.', 'melos'), 'id' => 'thinkup_styles_headertexthover', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_headerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Dropdown menu - Background color.', 'melos'), $thinkup_subtitle_customizer => __('Dropdown menu - Background color.', 'melos'), 'id' => 'thinkup_styles_headerdropbg', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_headerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Dropdown menu - Background color on hover.', 'melos'), $thinkup_subtitle_customizer => __('Dropdown menu - Background color on hover.', 'melos'), 'id' => 'thinkup_styles_headerdropbghover', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_headerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Dropdown menu - Text color.', 'melos'), $thinkup_subtitle_customizer => __('Dropdown menu - Text color.', 'melos'), 'id' => 'thinkup_styles_headerdroptext', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_headerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Dropdown menu - Text color on hover.', 'melos'), $thinkup_subtitle_customizer => __('Dropdown menu - Text color on hover.', 'melos'), 'id' => 'thinkup_styles_headerdroptexthover', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_headerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Dropdown menu - Border color.', 'melos'), $thinkup_subtitle_customizer => __('Dropdown menu - Border color.', 'melos'), 'id' => 'thinkup_styles_headerdropborder', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_headerswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Footer', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable custom footer styling.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable custom footer styling.', 'melos'), 'id' => 'thinkup_styles_footerswitch', 'type' => 'switch', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Upload an image to use as background.<br />Leave blank to use custom color.', 'melos'), $thinkup_subtitle_customizer => __('Upload an image to use as background.<br />Leave blank to use custom color.', 'melos'), 'id' => 'thinkup_styles_footerimage', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_styles_footerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Position. Find out more <a href="http://www.w3schools.com/cssref/pr_background-position.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Background Position. Find out more <a href="http://www.w3schools.com/cssref/pr_background-position.asp">here</a>.', 'melos'), 'id' => 'thinkup_styles_footerposition', 'type' => 'select', 'options' => array( 'left top' => 'left top', 'left center' => 'left center', 'left bottom' => 'left bottom', 'right top' => 'right top', 'right center' => 'right center', 'right bottom' => 'right bottom', 'center top' => 'center top', 'center center' => 'center center', 'center bottom' => 'center bottom', ), 'required' => array( array( 'thinkup_styles_footerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Repeat. Find out more <a href="http://www.w3schools.com/cssref/pr_background-repeat.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Background Repeat. Find out more <a href="http://www.w3schools.com/cssref/pr_background-repeat.asp">here</a>.', 'melos'), 'id' => 'thinkup_styles_footerrepeat', 'type' => 'select', 'options' => array( "repeat" => "repeat", "repeat-x" => "repeat-x", "repeat-y" => "repeat-y", "no-repeat" => "no-repeat", ), 'required' => array( array( 'thinkup_styles_footerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Size? Find out more <a href="http://www.w3schools.com/cssref/css3_pr_background-size.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Background Size? Find out more <a href="http://www.w3schools.com/cssref/css3_pr_background-size.asp">here</a>.', 'melos'), 'id' => 'thinkup_styles_footersize', 'type' => 'select', 'options' => array( "auto" => "auto", "cover" => "cover", "constrain" => "constrain", ), 'required' => array( array( 'thinkup_styles_footerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Fix background or scroll? Find out more <a href="http://www.w3schools.com/cssref/pr_background-attachment.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Fix background or scroll? Find out more <a href="http://www.w3schools.com/cssref/pr_background-attachment.asp">here</a>.', 'melos'), 'id' => 'thinkup_styles_footerattachment', 'type' => 'select', 'options' => array( "scroll" => "scroll", "fixed" => "fixed", ), 'required' => array( array( 'thinkup_styles_footerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background color.', 'melos'), $thinkup_subtitle_customizer => __('Background color.', 'melos'), 'id' => 'thinkup_styles_footerbg', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_footerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Title color.', 'melos'), $thinkup_subtitle_customizer => __('Title color.', 'melos'), 'id' => 'thinkup_styles_footertitle', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_footerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Text color.', 'melos'), $thinkup_subtitle_customizer => __('Text color.', 'melos'), 'id' => 'thinkup_styles_footertext', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_footerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Link color.', 'melos'), $thinkup_subtitle_customizer => __('Link color.', 'melos'), 'id' => 'thinkup_styles_footerlink', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_footerswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Link color on hover.', 'melos'), $thinkup_subtitle_customizer => __('Link color on hover.', 'melos'), 'id' => 'thinkup_styles_footerlinkhover', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_footerswitch', '=', array( '1' ), ), ) ), array( 'title' => __('Post-Footer', 'melos'), $thinkup_subtitle_panel => __('Switch on to enable custom post-footer styling.', 'melos'), $thinkup_subtitle_customizer => __('Switch on to enable custom post-footer styling.', 'melos'), 'id' => 'thinkup_styles_postfooterswitch', 'type' => 'switch', 'default' => '0', ), array( $thinkup_subtitle_panel => __('Upload an image to use as background.<br />Leave blank to use custom color.', 'melos'), $thinkup_subtitle_customizer => __('Upload an image to use as background.<br />Leave blank to use custom color.', 'melos'), 'id' => 'thinkup_styles_postfooterimage', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_styles_postfooterswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Position. Find out more <a href="http://www.w3schools.com/cssref/pr_background-position.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Background Position. Find out more <a href="http://www.w3schools.com/cssref/pr_background-position.asp">here</a>.', 'melos'), 'id' => 'thinkup_styles_postfooterposition', 'type' => 'select', 'options' => array( 'left top' => 'left top', 'left center' => 'left center', 'left bottom' => 'left bottom', 'right top' => 'right top', 'right center' => 'right center', 'right bottom' => 'right bottom', 'center top' => 'center top', 'center center' => 'center center', 'center bottom' => 'center bottom', ), 'required' => array( array( 'thinkup_styles_postfooterswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Repeat. Find out more <a href="http://www.w3schools.com/cssref/pr_background-repeat.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Background Repeat. Find out more <a href="http://www.w3schools.com/cssref/pr_background-repeat.asp">here</a>.', 'melos'), 'id' => 'thinkup_styles_postfooterrepeat', 'type' => 'select', 'options' => array( "repeat" => "repeat", "repeat-x" => "repeat-x", "repeat-y" => "repeat-y", "no-repeat" => "no-repeat", ), 'required' => array( array( 'thinkup_styles_postfooterswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background Size? Find out more <a href="http://www.w3schools.com/cssref/css3_pr_background-size.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Background Size? Find out more <a href="http://www.w3schools.com/cssref/css3_pr_background-size.asp">here</a>.', 'melos'), 'id' => 'thinkup_styles_postfootersize', 'type' => 'select', 'options' => array( "auto" => "auto", "cover" => "cover", "constrain" => "constrain", ), 'required' => array( array( 'thinkup_styles_postfooterswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Fix background or scroll? Find out more <a href="http://www.w3schools.com/cssref/pr_background-attachment.asp">here</a>.', 'melos'), $thinkup_subtitle_customizer => __('Fix background or scroll? Find out more <a href="http://www.w3schools.com/cssref/pr_background-attachment.asp">here</a>.', 'melos'), 'id' => 'thinkup_styles_postfooterattachment', 'type' => 'select', 'options' => array( "scroll" => "scroll", "fixed" => "fixed", ), 'required' => array( array( 'thinkup_styles_postfooterswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Background color.', 'melos'), $thinkup_subtitle_customizer => __('Background color.', 'melos'), 'id' => 'thinkup_styles_postfooterbg', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_postfooterswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Text color.', 'melos'), $thinkup_subtitle_customizer => __('Text color.', 'melos'), 'id' => 'thinkup_styles_postfootertext', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_postfooterswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Link color.', 'melos'), $thinkup_subtitle_customizer => __('Link color.', 'melos'), 'id' => 'thinkup_styles_postfooterlink', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_postfooterswitch', '=', array( '1' ), ), ) ), array( $thinkup_subtitle_panel => __('Link color on hover.', 'melos'), $thinkup_subtitle_customizer => __('Link color on hover.', 'melos'), 'id' => 'thinkup_styles_postfooterlinkhover', 'type' => 'color', 'validate' => 'color', 'default' => '#FFFFFF', 'required' => array( array( 'thinkup_styles_postfooterswitch', '=', array( '1' ), ), ) ), // Theme Skins array( 'id' => 'thinkup_section_styles_skin', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), 'subtitle' => __( '<span class="redux-title">Theme Skin</span>', 'melos' ), 'indent' => false, ), array( 'title' => __('Enable Theme Skin', 'melos'), $thinkup_subtitle_panel => __('Switch to use a pre-made theme skin.', 'melos'), $thinkup_subtitle_customizer => __('Switch to use a pre-made theme skin.', 'melos'), 'id' => 'thinkup_styles_skinswitch', 'type' => 'switch', 'default' => '0', ), array( 'title' => __('Choose a Skin', 'melos'), $thinkup_subtitle_panel => __('Choose a pre-made skin to apply. Skins are subtle changes to the themes default look.', 'melos'), $thinkup_subtitle_customizer => __('Choose a pre-made skin to apply. Skins are subtle changes to the themes default look.', 'melos'), 'id' => 'thinkup_styles_skin', 'type' => 'radio', 'options' => array( 'business' => 'Business', 'creative' => 'Creative', 'emagazine' => 'eMagazine', 'magazine' => 'Magazine', 'minimal' => 'Minimal', 'news' => 'News', 'boxed' => 'Boxed', 'light' => 'Light', ), ), ) ) ); // ----------------------------------------------------------------------------------- // 14. Translation // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Translation', 'melos'), 'desc' => __('<span class="redux-title">Blog Page</span>', 'melos'), 'icon' => 'el el-quotes', 'icon_class' => '', 'id' => 'thinkup_section_translate', 'subsection' => $thinkup_customizer_subsection, 'customizer' => false, 'fields' => array( array( 'title' => __('Read More Button', 'melos'), $thinkup_subtitle_panel => __('Leave blank to display default: "Read More".', 'melos'), $thinkup_subtitle_customizer => __('Leave blank to display default: "Read More".', 'melos'), 'id' => 'thinkup_translate_blogreadmore', 'type' => 'text', 'validate' => 'no_html', ), array( 'id' => 'thinkup_section_translate_contact', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">Template - Contact</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Template - Contact</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Contact Map Title', 'melos'), $thinkup_subtitle_panel => __('Leave blank to display default: "Our location".', 'melos'), $thinkup_subtitle_customizer => __('Leave blank to display default: "Our location".', 'melos'), 'id' => 'thinkup_translate_contactmaptitle', 'type' => 'text', 'validate' => 'no_html', ), array( 'title' => __('Contact Form Title', 'melos'), $thinkup_subtitle_panel => __('Leave blank to display default: "Send a message".', 'melos'), $thinkup_subtitle_customizer => __('Leave blank to display default: "Send a message".', 'melos'), 'id' => 'thinkup_translate_contactformtitle', 'type' => 'text', 'validate' => 'no_html', ), array( 'title' => __('Company Information Title', 'melos'), $thinkup_subtitle_panel => __('Leave blank to display default: "More information".', 'melos'), $thinkup_subtitle_customizer => __('Leave blank to display default: "More information".', 'melos'), 'id' => 'thinkup_translate_contactabouttitle', 'type' => 'text', 'validate' => 'no_html', ), ) ) ); // ----------------------------------------------------------------------------------- // 15. WooCoomerce // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('WooCommerce', 'melos'), 'desc' => __('<span class="redux-title">WooCommerce Settings</span>', 'melos'), 'icon' => 'el el-shopping-cart', 'icon_class' => '', 'id' => 'thinkup_section_woocommerce', 'subsection' => $thinkup_customizer_subsection, 'customizer' => false, 'fields' => array( array( 'title' => __('Enable Theme Specific Style', 'melos'), $thinkup_subtitle_panel => __('Check to enable theme specific WooCommerce style.', 'melos'), $thinkup_subtitle_customizer => __('Check to enable theme specific WooCommerce style.', 'melos'), 'id' => 'thinkup_woocommerce_styleswitch', 'type' => 'switch', 'default' => '1', ), array( 'title' => __('Shop Layout', 'melos'), $thinkup_subtitle_panel => __('Select shop page layout. This will only be applied to the main shop page and not individual products.', 'melos'), $thinkup_subtitle_customizer => __('Select shop page layout. This will only be applied to the main shop page and not individual products.', 'melos'), 'id' => 'thinkup_woocommerce_layout', 'type' => 'image_select', 'compiler' => true, 'options' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option01.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option02.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option03.png', 'option4' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option04.png', 'option5' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option05.png', 'option6' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option06.png', 'option7' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option07.png', 'option8' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option08.png', ), ), array( 'title' => __('Select a Sidebar', 'melos'), $thinkup_subtitle_panel => __('Choose a sidebar to use with the layout.', 'melos'), $thinkup_subtitle_customizer => __('Choose a sidebar to use with the layout.', 'melos'), 'id' => 'thinkup_woocommerce_sidebars', 'type' => 'select', 'data' => 'sidebars', 'required' => array( array( 'thinkup_woocommerce_layout', '=', array( 'option5', 'option6', 'option7', 'option8' ), ), ) ), array( 'title' => __('Products Per Page', 'melos'), $thinkup_subtitle_panel => __('Specify the number of products per page on the shop page.', 'melos'), $thinkup_subtitle_customizer => __('Specify the number of products per page on the shop page.', 'melos'), 'id' => 'thinkup_woocommerce_countshop', 'type' => 'select', 'options' => array( '2' => '2', '3' => '3', '4' => '4', '5' => '5', '6' => '6', '7' => '7', '8' => '8', '9' => '9', '10' => '10', '11' => '11', '12' => '12', '13' => '13', '14' => '14', '15' => '15', '16' => '16', '17' => '17', '18' => '18', '19' => '19', '20' => '20', ), ), array( 'title' => __('Product Meta Content', 'melos'), $thinkup_subtitle_panel => __('Choose which meta content to display on the shop page.', 'melos'), $thinkup_subtitle_customizer => __('Choose which meta content to display on the shop page.', 'melos'), 'id' => 'thinkup_woocommerce_contentcheck', 'type' => 'checkbox', 'options' => array( // 'option1' => 'Enable "Quick View".', 'option2' => 'Enable lightbox.', 'option3' => 'Enable likes.', // 'option4' => 'Enable social sharing.', ), ), array( 'title' => __('Product Excerpt', 'melos'), $thinkup_subtitle_panel => __('Check to enable product excerpt.', 'melos'), $thinkup_subtitle_customizer => __('Check to enable product excerpt.', 'melos'), 'id' => 'thinkup_woocommerce_excerptshop', 'type' => 'switch', 'default' => '0', ), array( 'title' => __('Excerpt Length', 'melos'), $thinkup_subtitle_panel => __('Specify number of words in product excerpt.<br />Default = Full excerpt.', 'melos'), $thinkup_subtitle_customizer => __('Specify number of words in product excerpt.<br />Default = Full excerpt.', 'melos'), 'id' => 'thinkup_woocommerce_excerptlength', 'type' => 'select', 'data' => 'excerpt', 'required' => array( array( 'thinkup_woocommerce_excerptshop', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_section_woo_products', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">WooCommerce Product Page</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">WooCommerce Product Page</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Product Page Layout', 'melos'), $thinkup_subtitle_panel => __('Select page layout. This will only be applied to published Pages (I.e. Not posts, blog or home).', 'melos'), $thinkup_subtitle_customizer => __('Select page layout. This will only be applied to published Pages (I.e. Not posts, blog or home).', 'melos'), 'id' => 'thinkup_woocommerce_layoutproduct', 'type' => 'image_select', 'compiler' => true, 'default' => '0', 'options' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option01.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option02.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/blog/option03.png', ), ), array( 'title' => __('Select a Sidebar', 'melos'), $thinkup_subtitle_panel => __('Choose a sidebar to use with the page layout.', 'melos'), $thinkup_subtitle_customizer => __('Choose a sidebar to use with the page layout.', 'melos'), 'id' => 'thinkup_woocommerce_sidebarsproduct', 'type' => 'select', 'data' => 'sidebars', 'required' => array( array( 'thinkup_woocommerce_layoutproduct', '=', array( 'option2', 'option3' ), ), ) ), array( 'title' => __('Meta Content', 'melos'), $thinkup_subtitle_panel => __('Choose which meta content to display on the product page.', 'melos'), $thinkup_subtitle_customizer => __('Choose which meta content to display on the product page.', 'melos'), 'id' => 'thinkup_woocommerce_contentcheckproduct', 'type' => 'checkbox', 'options' => array( 'option1' => 'Enable likes.', // 'option2' => 'Enable social sharing.', ), ), array( 'title' => __('Variation Style', 'melos'), $thinkup_subtitle_panel => __('Choose a variation style.', 'melos'), $thinkup_subtitle_customizer => __('Choose a variation style.', 'melos'), 'id' => 'thinkup_woocommerce_variation', 'type' => 'radio', 'options' => array( 'option1' => 'Dropdown', 'option2' => 'Buttons', ), ), array( 'title' => __('Hide Variation Title', 'melos'), 'desc' => __('Check to hide variation titles.', 'melos'), 'id' => 'thinkup_woocommerce_variationtitle', 'type' => 'checkbox', 'default' => '0', ), array( 'id' => 'thinkup_section_woo_related', 'type' => $thinkup_section_field, 'title' => __( ' ', 'melos' ), $thinkup_subtitle_panel => __('<span class="redux-title">WooCommerce Product Page - Related Products</span>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">WooCommerce Product Page - Related Products</span>', 'melos'), 'indent' => false, ), array( 'title' => __('Related Products Layout', 'melos'), $thinkup_subtitle_panel => __('Select related products layout.', 'melos'), $thinkup_subtitle_customizer => __('Select related products layout.', 'melos'), 'id' => 'thinkup_woocommerce_layoutrelated', 'type' => 'image_select', 'compiler' => true, 'options' => array( 'option1' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option02.png', 'option2' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option03.png', 'option3' => trailingslashit( get_template_directory_uri() ) . 'admin/main/assets/img/layout/portfolio/option04.png', ), ), array( 'title' => __('Number of Related Products', 'melos'), $thinkup_subtitle_panel => __('Specify the number of related products to be shown on the products layout.', 'melos'), $thinkup_subtitle_customizer => __('Specify the number of related products to be shown on the products layout.', 'melos'), 'id' => 'thinkup_woocommerce_countrelated', 'type' => 'select', 'options' => array( '2' => '2', '3' => '3', '4' => '4', '5' => '5', '6' => '6', '7' => '7', '8' => '8', '9' => '9', '10' => '10', '11' => '11', '12' => '12', ), ), array( 'title' => __('Product Meta Content', 'melos'), $thinkup_subtitle_panel => __('Choose which meta content to display for the related products.', 'melos'), $thinkup_subtitle_customizer => __('Choose which meta content to display for the related products.', 'melos'), 'id' => 'thinkup_woocommerce_contentcheckrelated', 'type' => 'checkbox', 'options' => array( // 'option1' => 'Enable "Quick View".', // 'option2' => 'Enable lightbox.', 'option3' => 'Enable likes.', // 'option4' => 'Enable social sharing.', ), ), array( 'title' => __('Product Excerpt', 'melos'), $thinkup_subtitle_panel => __('Check to enable product excerpt.', 'melos'), $thinkup_subtitle_customizer => __('Check to enable product excerpt.', 'melos'), 'id' => 'thinkup_woocommerce_excerptrelated', 'type' => 'switch', 'default' => '0', ), ) ) ); // ----------------------------------------------------------------------------------- // 15. Support // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Support', 'melos'), 'desc' => __('<span class="redux-title">Documentation</span><p>We've produced a detailed demo of each theme where most of the common questions can be found such as how to use shortcodes and setup basic page layouts. To find out more visit us at <a href="http://www.thinkupthemes.com/" target="_blank">www.thinkupthemes.com</a> and check the information pages of the demo theme your using.</p><p>This theme also comes with a detailed user manual which should help answer all your common questions.</p>', 'melos'), 'icon' => 'el el-user', 'icon_class' => '', 'id' => 'thinkup_section_support', 'subsection' => $thinkup_customizer_subsection, 'customizer' => false, 'fields' => array( array( 'id' => 'thinkup_section_support_info', 'type' => $thinkup_section_field, $thinkup_subtitle_panel => __('<span class="redux-title">Ticket Support</span><p>Don't panic! If you can't find the answer in the theme documentation then please submit a support ticket. These tickets are dealt with by the guys that built the theme so will definitely be able to help!</p><p>Just submit a support ticket at <a href="http://www.thinkupthemes.com/support/" target="_blank">www.thinkupthemes.com/support</a></p>', 'melos'), $thinkup_subtitle_customizer => __('<span class="redux-title">Ticket Support</span><p>Don't panic! If you can't find the answer in the theme documentation then please submit a support ticket. These tickets are dealt with by the guys that built the theme so will definitely be able to help!</p><p>Just submit a support ticket at <a href="http://www.thinkupthemes.com/support/" target="_blank">www.thinkupthemes.com/support</a></p>', 'melos'), 'indent' => false, ), ) ) ); Redux::setSection( $opt_name, array( 'type' => 'divide', ) ); /**/ /* * <--- END SECTIONS */ /** * This is a test function that will let you see when the compiler hook occurs. * It only runs if a field set with compiler=> true is changed. * */ if ( ! function_exists( 'compiler_action' ) ) { function compiler_action( $options, $css, $changed_values ) { echo '<h1>The compiler hook has run!</h1>'; echo "<pre>"; print_r( $changed_values ); // Values that have changed since the last save echo "</pre>"; //print_r($options); //Option values //print_r($css); // Compiler selector CSS values compiler => array( CSS SELECTORS ) } } /** * Custom function for the callback validation referenced above * */ if ( ! function_exists( 'redux_validate_callback_function' ) ) { function redux_validate_callback_function( $field, $value, $existing_value ) { $error = false; $warning = false; //do your validation if ( $value == 1 ) { $error = true; $value = $existing_value; } elseif ( $value == 2 ) { $warning = true; $value = $existing_value; } $return['value'] = $value; if ( $error == true ) { $return['error'] = $field; $field['msg'] = 'your custom error message'; } if ( $warning == true ) { $return['warning'] = $field; $field['msg'] = 'your custom warning message'; } return $return; } } /** * Filter hook for filtering the args. Good for child themes to override or add to the args array. Can also be used in other functions. * */ if ( ! function_exists( 'change_arguments' ) ) { function change_arguments( $args ) { //$args['dev_mode'] = true; return $args; } } /** * Filter hook for filtering the default value of any given field. Very useful in development mode. * */ if ( ! function_exists( 'change_defaults' ) ) { function change_defaults( $defaults ) { $defaults['str_replace'] = 'Testing filter hook!'; return $defaults; } } /** * Removes the demo link and the notice of integrated demo from the redux-framework plugin */ if ( ! function_exists( 'remove_demo' ) ) { function remove_demo() { // Used to hide the demo mode link from the plugin page. Only used when Redux is a plugin. if ( class_exists( 'ReduxFrameworkPlugin' ) ) { remove_filter( 'plugin_row_meta', array( ReduxFrameworkPlugin::instance(), 'plugin_metalinks' ), null, 2 ); // Used to hide the activation notice informing users of the demo panel. Only used when Redux is a plugin. remove_action( 'admin_notices', array( ReduxFrameworkPlugin::instance(), 'admin_notices' ) ); } } }