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', 'redux-framework' ), 'page_title' => __( 'Theme Options', 'redux-framework' ), // 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' => true, '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' => false, // 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', 'redux-framework' ), // ); // $args['admin_bar_links'][] = array( // //'id' => 'redux-support', // 'href' => 'https://github.com/ReduxFramework/redux-framework/issues', // 'title' => __( 'Support', 'redux-framework' ), // ); // $args['admin_bar_links'][] = array( // 'id' => 'redux-extensions', // 'href' => 'reduxframework.com/extensions', // 'title' => __( 'Extensions', 'redux-framework' ), // ); // 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( __( '

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: $%1$s

', 'redux-framework' ), $v ); } else { // $args['intro_text'] = __( '

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.

', 'redux-framework' ); } // Add content after the form. // $args['footer_text'] = __( '

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.

', 'redux-framework' ); Redux::setArgs( $opt_name, $args ); /* * ---> END ARGUMENTS */ /* * ---> START HELP TABS */ // $tabs = array( // array( // 'id' => 'redux-help-tab-1', // 'title' => __( 'Theme Information 1', 'redux-framework' ), // 'content' => __( '

This is the tab content, HTML is allowed.

', 'redux-framework' ) // ), // array( // 'id' => 'redux-help-tab-2', // 'title' => __( 'Theme Information 2', 'redux-framework' ), // 'content' => __( '

This is the tab content, HTML is allowed.

', 'redux-framework' ) // ) // ); // Redux::setHelpTab( $opt_name, $tabs ); // Set the help sidebar // $content = __( '

This is the sidebar content, HTML is allowed.

', 'redux-framework' ); // 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', 'redux-framework' ), 'id' => 'thinkup_theme_options', 'desc' => __( 'Use the options below to customize your theme!', 'redux-framework' ), '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', 'redux-framework'), 'header' => __('Welcome to the Simple Options Framework Demo', 'redux-framework'), 'desc' => __('Logo Settings', 'redux-framework'), 'icon_class' => '', 'icon' => 'el el-wrench', 'subsection' => $thinkup_customizer_subsection, 'customizer' => true, 'fields' => array( array( $thinkup_subtitle_panel => __('Since WordPress v4.5 you can now add a site logo using the native WordPress options. To add a site logo go the "Site Identitiy" settings on the main customizer screen.', 'redux-framework'), $thinkup_subtitle_customizer => __('Since WordPress v4.5 you can now add a site logo using the native WordPress options. To add a site logo go the "Site Identitiy" settings on the main customizer screen.', 'redux-framework'), 'id' => 'thinkup_general_logosetting', 'type' => 'raw', 'content' => '', 'default' => '' ), array( 'id' => 'thinkup_section_general_page', 'type' => $thinkup_section_field, 'title' => __( ' ', 'redux-framework' ), 'subtitle' => __( 'Page Structure', 'redux-framework' ), 'indent' => false, ), array( 'title' => __('Page Layout', 'redux-framework'), $thinkup_subtitle_panel => __('Select page layout. This will only be applied to published Pages (I.e. Not posts, blog or home).', 'redux-framework'), $thinkup_subtitle_customizer => __('Select page layout. This will only be applied to published Pages (I.e. Not posts, blog or home).', 'redux-framework'), 'id' => 'thinkup_general_layout', 'type' => 'image_select', 'compiler' => true, 'default' => '', 'options' => array( 'option1' => ReduxFramework::$_url . 'assets/img/layout/blog/option01.png', 'option2' => ReduxFramework::$_url . 'assets/img/layout/blog/option02.png', 'option3' => ReduxFramework::$_url . 'assets/img/layout/blog/option03.png', ), ), array( 'title' => __('Select a Sidebar', 'redux-framework'), $thinkup_subtitle_panel => __('Choose a sidebar to use with the page layout.', 'redux-framework'), $thinkup_subtitle_customizer => __('Choose a sidebar to use with the page layout.', 'redux-framework'), 'id' => 'thinkup_general_sidebars', 'type' => 'select', 'data' => 'sidebars', 'required' => array( array( 'thinkup_general_layout', '=', array( 'option2', 'option3' ), ), ) ), array( 'title' => __('Enable Fixed Layout', 'redux-framework'), $thinkup_subtitle_panel => __('Check to enable fixed layout.
(i.e. Disable responsive layout)', 'redux-framework'), $thinkup_subtitle_customizer => __('Check to enable fixed layout.
(i.e. Disable responsive layout)', 'redux-framework'), 'id' => 'thinkup_general_fixedlayoutswitch', 'type' => 'switch', ), array( 'title' => __('Enable Breadcrumbs', 'redux-framework'), $thinkup_subtitle_panel => __('Switch on to enable breadcrumbs.', 'redux-framework'), $thinkup_subtitle_customizer => __('Switch on to enable breadcrumbs.', 'redux-framework'), 'id' => 'thinkup_general_breadcrumbswitch', 'type' => 'switch', 'default' => '', ), array( 'title' => __('Breadcrumb Delimiter', 'redux-framework'), $thinkup_subtitle_panel => __('Specify a custom delimiter to use instead of the default ( / ) when displaying breadcrumbs.', 'redux-framework'), $thinkup_subtitle_customizer => __('Specify a custom delimiter to use instead of the default ( / ) when displaying breadcrumbs.', 'redux-framework'), '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' => __( ' ', 'redux-framework' ), 'subtitle' => __( 'Custom Code', 'redux-framework' ), 'indent' => false, ), array( 'title' => __('Custom CSS', 'redux-framework'), $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.', 'redux-framework'), $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.', 'redux-framework'), 'id' => 'thinkup_general_customcss', 'type' => 'textarea', 'validate' => 'css', ), // Ensures ThinkUpThemes custom code is output array( 'title' => __('Custom Code', 'redux-framework'), 'subtitle' => __('Custom Code', 'redux-framework'), 'id' => 'thinkup_customization', 'type' => 'thinkup_custom_code', ), ) ) ); Redux::setSection( $opt_name, array( 'type' => 'divide', ) ); // ----------------------------------------------------------------------------------- // 2.1. Home Settings // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Homepage', 'redux-framework'), 'desc' => __('Control Homepage Layout', 'redux-framework'), 'icon_class' => '', 'icon' => 'el el-home', 'subsection' => $thinkup_customizer_subsection, 'customizer' => true, 'fields' => array( array( 'title' => __('Homepage Layout', 'redux-framework'), $thinkup_subtitle_panel => __('Select page layout. This will only be applied to static homepages (front page) and not to homepage blogs.', 'redux-framework'), $thinkup_subtitle_customizer => __('Select page layout. This will only be applied to static homepages (front page) and not to homepage blogs.', 'redux-framework'), 'id' => 'thinkup_homepage_layout', 'type' => 'image_select', 'compiler' => true, 'default' => '', 'options' => array( 'option1' => ReduxFramework::$_url . 'assets/img/layout/blog/option01.png', 'option2' => ReduxFramework::$_url . 'assets/img/layout/blog/option02.png', 'option3' => ReduxFramework::$_url . 'assets/img/layout/blog/option03.png', ), ), array( 'title' => __('Select a Sidebar', 'redux-framework'), $thinkup_subtitle_panel => __('Choose a sidebar to use with the layout.', 'redux-framework'), $thinkup_subtitle_customizer => __('Choose a sidebar to use with the layout.', 'redux-framework'), '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' => __( ' ', 'redux-framework' ), 'subtitle' => __( 'Homepage Slider', 'redux-framework' ), 'indent' => false, ), array( 'title' => __('Choose Homepage Slider', 'redux-framework'), $thinkup_subtitle_panel => __('Switch on to enable home page slider.', 'redux-framework'), $thinkup_subtitle_customizer => __('Switch on to enable home page slider.', 'redux-framework'), 'id' => 'thinkup_homepage_sliderswitch', 'type' => 'button_set', 'options' => array( 'option4' => 'Page Slider', 'option2' => 'Custom Slider', 'option3' => 'Disable' ), 'default' => '', ), array( 'title' => __('Homepage Slider Shortcode', 'redux-framework'), $thinkup_subtitle_panel => __('Input the shortcode of the slider you want to display. I.e. [shortcode_name].', 'redux-framework'), $thinkup_subtitle_customizer => __('Input the shortcode of the slider you want to display. I.e. [shortcode_name].', 'redux-framework'), 'id' => 'thinkup_homepage_slidername', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sliderswitch', '=', array( 'option2' ), ), ) ), array( $thinkup_subtitle_panel => __('Info: The page featured image will be displayed in the slider.

Slide 1 - Content (image, title, except, url)', 'redux-framework'), $thinkup_subtitle_customizer => __('Info: The page featured image will be displayed in the slider.

Slide 1 - Content (image, title, except, url)', 'redux-framework'), 'id' => 'thinkup_homepage_sliderpage1', 'type' => 'select', 'data' => 'pages', 'required' => array( array( 'thinkup_homepage_sliderswitch', '=', array( 'option4' ), ), ) ), array( $thinkup_subtitle_panel => __('Slide 2 - Content (image, title, except, url)', 'redux-framework'), $thinkup_subtitle_customizer => __('Slide 2 - Content (image, title, except, url)', 'redux-framework'), 'id' => 'thinkup_homepage_sliderpage2', 'type' => 'select', 'data' => 'pages', 'required' => array( array( 'thinkup_homepage_sliderswitch', '=', array( 'option4' ), ), ) ), array( $thinkup_subtitle_panel => __('Slide 3 - Content (image, title, except, url)', 'redux-framework'), $thinkup_subtitle_customizer => __('Slide 3 - Content (image, title, except, url)', 'redux-framework'), 'id' => 'thinkup_homepage_sliderpage3', 'type' => 'select', 'data' => 'pages', 'required' => array( array( 'thinkup_homepage_sliderswitch', '=', array( 'option4' ), ), ) ), array( 'id' => 'thinkup_homepage_sliderpresetheight', 'type' => 'slider', 'title' => __('Slider Height (Max)', 'redux-framework'), $thinkup_subtitle_panel => __('Specify the maximum slider height (px).', 'redux-framework'), $thinkup_subtitle_customizer => __('Specify the maximum slider height (px).', 'redux-framework'), "default" => "", "min" => "200", "step" => "5", "max" => "1000", 'required' => array( array( 'thinkup_homepage_sliderswitch', '=', array( 'option1', 'option4' ), ), ) ), array( 'title' => __('Enable Full-Width Slider', 'redux-framework'), $thinkup_subtitle_panel => __('Switch on to enable full-width slider.', 'redux-framework'), $thinkup_subtitle_customizer => __('Switch on to enable full-width slider.', 'redux-framework'), 'id' => 'thinkup_homepage_sliderpresetwidth', 'type' => 'switch', 'default' => '', 'required' => array( array( 'thinkup_homepage_sliderswitch', '=', array( 'option1', 'option4' ), ), ) ), array( 'id' => 'thinkup_section_homepage_ctaintro', 'type' => $thinkup_section_field, 'title' => __( ' ', 'redux-framework' ), 'subtitle' => __( 'Call To Action - Intro', 'redux-framework' ), 'indent' => false, ), array( 'title' => __('Message', 'redux-framework'), 'desc' => __('Check to enable intro on home page.', 'redux-framework'), 'id' => 'thinkup_homepage_introswitch', 'type' => 'checkbox', 'default' => '', ), array( $thinkup_subtitle_panel => __('Enter a title message.

This will be one of the first messages your visitors see. Use this to get their attention.', 'redux-framework'), $thinkup_subtitle_customizer => __('Enter a title message.

This will be one of the first messages your visitors see. Use this to get their attention.', 'redux-framework'), 'id' => 'thinkup_homepage_introaction', 'type' => 'text', 'validate' => 'html', ), array( $thinkup_subtitle_panel => __('Enter a teaser message.

Use this to provide more details about what you offer.', 'redux-framework'), $thinkup_subtitle_customizer => __('Enter a teaser message.

Use this to provide more details about what you offer.', 'redux-framework'), 'id' => 'thinkup_homepage_introactionteaser', 'type' => 'text', 'validate' => 'html', ), array( 'title' => __('Button - Text', 'redux-framework'), $thinkup_subtitle_panel => __('Specify a text for button 1.', 'redux-framework'), $thinkup_subtitle_customizer => __('Specify a text for button 1.', 'redux-framework'), 'id' => 'thinkup_homepage_introactiontext1', 'type' => 'text', 'validate' => 'html', ), array( 'title' => __('Button - Link', 'redux-framework'), $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.', 'redux-framework'), $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.', 'redux-framework'), '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', 'redux-framework'), $thinkup_subtitle_panel => __('Select a target page for action button link.', 'redux-framework'), $thinkup_subtitle_customizer => __('Select a target page for action button link.', 'redux-framework'), 'id' => 'thinkup_homepage_introactionpage1', 'type' => 'select', 'data' => 'pages', 'required' => array( array( 'thinkup_homepage_introactionlink1', '=', array( 'option1' ), ), ) ), array( 'title' => __('Button - Custom link', 'redux-framework'), $thinkup_subtitle_panel => __('Input a custom url for the action button link.
Add http:// if linking to an external webpage.', 'redux-framework'), $thinkup_subtitle_customizer => __('Input a custom url for the action button link.
Add http:// if linking to an external webpage.', 'redux-framework'), 'id' => 'thinkup_homepage_introactioncustom1', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_introactionlink1', '=', array( 'option2' ), ), ) ), ) ) ); // ----------------------------------------------------------------------------------- // 2.2. Home (Featured) // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Homepage (Featured)', 'redux-framework'), 'desc' => __('Display Pre-Designed Homepage Layout', 'redux-framework'), 'icon_class' => '', 'icon' => 'el el-pencil', 'subsection' => $thinkup_customizer_subsection, 'customizer' => true, 'fields' => array( array( 'title' => __('Enable Pre-Made Homepage ', 'redux-framework'), $thinkup_subtitle_panel => __('switch on to enable pre-designed homepage layout.', 'redux-framework'), $thinkup_subtitle_customizer => __('switch on to enable pre-designed homepage layout.', 'redux-framework'), 'id' => 'thinkup_homepage_sectionswitch', 'type' => 'switch', 'default' => '', ), array( 'id' => 'thinkup_homepage_section1_icon', 'title' => __('Content Area 1', 'redux-framework'), 'desc' => __('Choose an icon for the section background.', 'redux-framework'), 'type' => 'select', 'data' => 'elusive-icons', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section1_title', 'desc' => __('Add a title to the section.', 'redux-framework'), '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.', 'redux-framework'), 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section1_link', 'desc' => __('Link to a page', 'redux-framework'), 'type' => 'select', 'data' => 'pages', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section2_icon', 'title' => __('Content Area 2', 'redux-framework'), 'desc' => __('Choose an icon for the section background.', 'redux-framework'), 'type' => 'select', 'data' => 'elusive-icons', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section2_title', 'desc' => __('Add a title to the section.', 'redux-framework'), '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.', 'redux-framework'), 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section2_link', 'desc' => __('Link to a page', 'redux-framework'), 'type' => 'select', 'data' => 'pages', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section3_icon', 'title' => __('Content Area 3', 'redux-framework'), 'desc' => __('Choose an icon for the section background.', 'redux-framework'), 'type' => 'select', 'data' => 'elusive-icons', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section3_title', 'desc' => __('Add a title to the section.', 'redux-framework'), '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.', 'redux-framework'), 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), array( 'id' => 'thinkup_homepage_section3_link', 'desc' => __('Link to a page', 'redux-framework'), 'type' => 'select', 'data' => 'pages', 'required' => array( array( 'thinkup_homepage_sectionswitch', '=', array( '1' ), ), ) ), ) ) ); // ----------------------------------------------------------------------------------- // 3. Header // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Header', 'redux-framework'), 'desc' => __('Pre Header Style', 'redux-framework'), 'icon' => 'el el-chevron-up', 'icon_class' => '', 'subsection' => $thinkup_customizer_subsection, 'customizer' => true, 'fields' => array( array( 'title' => __('Choose Pre Header Style', 'redux-framework'), $thinkup_subtitle_panel => __('Specify the pre header style.', 'redux-framework'), $thinkup_subtitle_customizer => __('Specify the pre header style.', 'redux-framework'), 'id' => 'thinkup_header_styleswitchpre', 'type' => 'radio', 'options' => array( 'option1' => 'Style 1 (Light)', 'option2' => 'Style 2 (Dark)', ), ), array( 'id' => 'thinkup_section_header_content', 'type' => $thinkup_section_field, 'title' => __( ' ', 'redux-framework' ), 'subtitle' => __( 'Control Header Content', 'redux-framework' ), 'indent' => false, ), array( 'title' => __('Enable Search (Pre Header)', 'redux-framework'), $thinkup_subtitle_panel => __('Switch on to enable pre header search.', 'redux-framework'), $thinkup_subtitle_customizer => __('Switch on to enable pre header search.', 'redux-framework'), 'id' => 'thinkup_header_searchswitchpre', 'type' => 'switch', 'default' => '', ), array( 'title' => __('Enable Search (Main Header)', 'redux-framework'), $thinkup_subtitle_panel => __('Switch on to enable header search.', 'redux-framework'), $thinkup_subtitle_customizer => __('Switch on to enable header search.', 'redux-framework'), 'id' => 'thinkup_header_searchswitch', 'type' => 'switch', 'default' => '', ), ) ) ); // ----------------------------------------------------------------------------------- // 4. Footer // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Footer', 'redux-framework'), 'desc' => __('Control Footer Content', 'redux-framework'), 'icon' => 'el el-chevron-down', 'icon_class' => '', 'subsection' => $thinkup_customizer_subsection, 'customizer' => true, 'fields' => array( array( 'title' => __('Footer Widgets Layout', 'redux-framework'), $thinkup_subtitle_panel => __('Select footer layout. Take complete control of the footer content by adding widgets.', 'redux-framework'), $thinkup_subtitle_customizer => __('Select footer layout. Take complete control of the footer content by adding widgets.', 'redux-framework'), 'id' => 'thinkup_footer_layout', 'type' => 'image_select', 'compiler' => true, 'default' => '', 'options' => array( 'option1' => ReduxFramework::$_url . 'assets/img/layout/footer/option01.png', 'option2' => ReduxFramework::$_url . 'assets/img/layout/footer/option02.png', 'option3' => ReduxFramework::$_url . 'assets/img/layout/footer/option03.png', 'option4' => ReduxFramework::$_url . 'assets/img/layout/footer/option04.png', 'option5' => ReduxFramework::$_url . 'assets/img/layout/footer/option05.png', 'option6' => ReduxFramework::$_url . 'assets/img/layout/footer/option06.png', 'option7' => ReduxFramework::$_url . 'assets/img/layout/footer/option07.png', 'option8' => ReduxFramework::$_url . 'assets/img/layout/footer/option08.png', 'option9' => ReduxFramework::$_url . 'assets/img/layout/footer/option09.png', 'option10' => ReduxFramework::$_url . 'assets/img/layout/footer/option10.png', 'option11' => ReduxFramework::$_url . 'assets/img/layout/footer/option11.png', 'option12' => ReduxFramework::$_url . 'assets/img/layout/footer/option12.png', 'option13' => ReduxFramework::$_url . 'assets/img/layout/footer/option13.png', 'option14' => ReduxFramework::$_url . 'assets/img/layout/footer/option14.png', 'option15' => ReduxFramework::$_url . 'assets/img/layout/footer/option15.png', 'option16' => ReduxFramework::$_url . 'assets/img/layout/footer/option16.png', 'option17' => ReduxFramework::$_url . 'assets/img/layout/footer/option17.png', 'option18' => ReduxFramework::$_url . 'assets/img/layout/footer/option18.png', ), ), array( 'title' => __('Disable Footer Widgets', 'redux-framework'), 'desc' => __('Check to disable footer widgets.', 'redux-framework'), 'id' => 'thinkup_footer_widgetswitch', 'type' => 'checkbox', 'default' => '', ), array( 'title' => __('Enable Scroll To Top', 'redux-framework'), $thinkup_subtitle_panel => __('Check to enable scroll to top.', 'redux-framework'), $thinkup_subtitle_customizer => __('Check to enable scroll to top.', 'redux-framework'), 'id' => 'thinkup_footer_scroll', 'type' => 'switch', 'default' => '', ), ) ) ); // ----------------------------------------------------------------------------------- // 3 & 4. Social Media // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Social Media', 'redux-framework'), 'desc' => __('Social Media Control', 'redux-framework'), 'icon' => 'el el-facebook', 'icon_class' => '', 'subsection' => $thinkup_customizer_subsection, 'customizer' => true, 'fields' => array( array( 'title' => __('Enable Social Media Links (Pre Header)', 'redux-framework'), $thinkup_subtitle_panel => __('Switch on to enable links to social media pages.', 'redux-framework'), $thinkup_subtitle_customizer => __('Switch on to enable links to social media pages.', 'redux-framework'), 'id' => 'thinkup_header_socialswitchpre', 'type' => 'switch', 'default' => '', ), array( 'title' => __('Enable Social Media Links (footer)', 'redux-framework'), $thinkup_subtitle_panel => __('Switch on to enable links to social media pages.', 'redux-framework'), $thinkup_subtitle_customizer => __('Switch on to enable links to social media pages.', 'redux-framework'), 'id' => 'thinkup_header_socialswitchfooter', 'type' => 'switch', 'default' => '', ), array( 'id' => 'thinkup_section_header_social', 'type' => $thinkup_section_field, 'title' => __( ' ', 'redux-framework' ), 'subtitle' => __( 'Social Media Content', 'redux-framework' ), 'indent' => false, ), array( 'title' => __('Display Message', 'redux-framework'), $thinkup_subtitle_panel => __('Add a message here. E.g. "Follow Us".
(Only shown in header)', 'redux-framework'), $thinkup_subtitle_customizer => __('Add a message here. E.g. "Follow Us".
(Only shown in header)', 'redux-framework'), 'id' => 'thinkup_header_socialmessage', 'type' => 'text', 'validate' => 'html', ), // Facebook social settings array( 'title' => __('Facebook', 'redux-framework'), $thinkup_subtitle_panel => __('Enable link to Facebook profile.', 'redux-framework'), $thinkup_subtitle_customizer => __('Enable link to Facebook profile.', 'redux-framework'), 'id' => 'thinkup_header_facebookswitch', 'type' => 'switch', 'default' => '', ), array( 'desc' => __('Input the url to your Facebook page. Note: Add http:// as the url is an external link.', 'redux-framework'), 'id' => 'thinkup_header_facebooklink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_facebookswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom Facebook Icon', 'redux-framework'), 'id' => 'thinkup_header_facebookiconswitch', 'type' => 'checkbox', 'default' => '', '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.', 'redux-framework'), 'id' => 'thinkup_header_facebookcustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_facebookswitch', '=', array( '1' ), ), ) ), // Twitter social settings array( 'title' => __('Twitter', 'redux-framework'), $thinkup_subtitle_panel => __('Enable link to Twitter profile.', 'redux-framework'), $thinkup_subtitle_customizer => __('Enable link to Twitter profile.', 'redux-framework'), 'id' => 'thinkup_header_twitterswitch', 'type' => 'switch', 'default' => '', ), array( 'desc' => __('Input the url to your Twitter page. Note: Add http:// as the url is an external link.', 'redux-framework'), 'id' => 'thinkup_header_twitterlink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_twitterswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom Twitter Icon', 'redux-framework'), 'id' => 'thinkup_header_twittericonswitch', 'type' => 'checkbox', 'default' => '', '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.', 'redux-framework'), 'id' => 'thinkup_header_twittercustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_twitterswitch', '=', array( '1' ), ), ) ), // Google+ social settings array( 'title' => __('Google+', 'redux-framework'), $thinkup_subtitle_panel => __('Enable link to Google+ profile.', 'redux-framework'), $thinkup_subtitle_customizer => __('Enable link to Google+ profile.', 'redux-framework'), 'id' => 'thinkup_header_googleswitch', 'type' => 'switch', 'default' => '', ), array( 'desc' => __('Input the url to your Google+ page. Note: Add http:// as the url is an external link.', 'redux-framework'), 'id' => 'thinkup_header_googlelink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_googleswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom Google+ Icon', 'redux-framework'), 'id' => 'thinkup_header_googleiconswitch', 'type' => 'checkbox', 'default' => '', '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.', 'redux-framework'), 'id' => 'thinkup_header_googlecustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_googleswitch', '=', array( '1' ), ), ) ), // LinkedIn social settings array( 'title' => __('LinkedIn', 'redux-framework'), $thinkup_subtitle_panel => __('Enable link to LinkedIn profile.', 'redux-framework'), $thinkup_subtitle_customizer => __('Enable link to LinkedIn profile.', 'redux-framework'), 'id' => 'thinkup_header_linkedinswitch', 'type' => 'switch', 'default' => '', ), array( 'desc' => __('Input the url to your LinkedIn page. Note: Add http:// as the url is an external link.', 'redux-framework'), 'id' => 'thinkup_header_linkedinlink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_linkedinswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom LinkedIn Icon', 'redux-framework'), 'id' => 'thinkup_header_linkediniconswitch', 'type' => 'checkbox', 'default' => '', '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.', 'redux-framework'), 'id' => 'thinkup_header_linkedincustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_linkedinswitch', '=', array( '1' ), ), ) ), // Flickr social settings array( 'title' => __('Flickr', 'redux-framework'), $thinkup_subtitle_panel => __('Enable link to Flickr profile.', 'redux-framework'), $thinkup_subtitle_customizer => __('Enable link to Flickr profile.', 'redux-framework'), 'id' => 'thinkup_header_flickrswitch', 'type' => 'switch', 'default' => '', ), array( 'desc' => __('Input the url to your Flickr page. Note: Add http:// as the url is an external link.', 'redux-framework'), 'id' => 'thinkup_header_flickrlink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_flickrswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom Flickr Icon', 'redux-framework'), 'id' => 'thinkup_header_flickriconswitch', 'type' => 'checkbox', 'default' => '', '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.', 'redux-framework'), 'id' => 'thinkup_header_flickrcustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_flickrswitch', '=', array( '1' ), ), ) ), // YouTube social settings array( 'title' => __('YouTube', 'redux-framework'), $thinkup_subtitle_panel => __('Enable link to YouTube profile.', 'redux-framework'), $thinkup_subtitle_customizer => __('Enable link to YouTube profile.', 'redux-framework'), 'id' => 'thinkup_header_youtubeswitch', 'type' => 'switch', 'default' => '', ), array( 'desc' => __('Input the url to your YouTube page. Note: Add http:// as the url is an external link.', 'redux-framework'), 'id' => 'thinkup_header_youtubelink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_youtubeswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom YouTube Icon', 'redux-framework'), 'id' => 'thinkup_header_youtubeiconswitch', 'type' => 'checkbox', 'default' => '', '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.', 'redux-framework'), 'id' => 'thinkup_header_youtubecustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_youtubeswitch', '=', array( '1' ), ), ) ), // RSS social settings array( 'title' => __('RSS', 'redux-framework'), $thinkup_subtitle_panel => __('Enable link to RSS profile.', 'redux-framework'), $thinkup_subtitle_customizer => __('Enable link to RSS profile.', 'redux-framework'), 'id' => 'thinkup_header_rssswitch', 'type' => 'switch', 'default' => '', ), array( 'desc' => __('Input the url to your RSS page. Note: Add http:// as the url is an external link.', 'redux-framework'), 'id' => 'thinkup_header_rsslink', 'type' => 'text', 'validate' => 'html', 'required' => array( array( 'thinkup_header_rssswitch', '=', array( '1' ), ), ) ), array( 'desc' => __('Use Custom RSS Icon', 'redux-framework'), 'id' => 'thinkup_header_rssiconswitch', 'type' => 'checkbox', 'default' => '', '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.', 'redux-framework'), 'id' => 'thinkup_header_rsscustomicon', 'type' => 'media', 'url' => true, 'required' => array( array( 'thinkup_header_rssswitch', '=', array( '1' ), ), ) ), ) ) ); // ----------------------------------------------------------------------------------- // 5. Blog // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Blog', 'redux-framework'), 'desc' => __('Control Blog (Archive) Pages', 'redux-framework'), 'icon' => 'el el-comment', 'icon_class' => '', 'subsection' => $thinkup_customizer_subsection, 'customizer' => true, 'fields' => array( array( 'title' => __('Blog Layout', 'redux-framework'), $thinkup_subtitle_panel => __('Select blog page layout. Only applied to the main blog page and not individual posts.', 'redux-framework'), $thinkup_subtitle_customizer => __('Select blog page layout. Only applied to the main blog page and not individual posts.', 'redux-framework'), 'id' => 'thinkup_blog_layout', 'type' => 'image_select', 'compiler' => true, 'options' => array( 'option1' => ReduxFramework::$_url . 'assets/img/layout/blog/option01.png', 'option2' => ReduxFramework::$_url . 'assets/img/layout/blog/option02.png', 'option3' => ReduxFramework::$_url . 'assets/img/layout/blog/option03.png', ), ), array( 'title' => __('Select a Sidebar', 'redux-framework'), $thinkup_subtitle_panel => __('Note: Sidebars will not be applied to homepage Blog. Control sidebars on the homepage from the 'Home Settings' option.', 'redux-framework'), $thinkup_subtitle_customizer => __('Note: Sidebars will not be applied to homepage Blog. Control sidebars on the homepage from the 'Home Settings' option.', 'redux-framework'), 'id' => 'thinkup_blog_sidebars', 'type' => 'select', 'data' => 'sidebars', 'required' => array( array( 'thinkup_blog_layout', '=', array( 'option2', 'option3' ), ), ) ), array( 'title' => __('Blog Traditional Layout', 'redux-framework'), $thinkup_subtitle_panel => __('Select a layout for your blog page. This will also be applied to all pages set using the blog template.', 'redux-framework'), $thinkup_subtitle_customizer => __('Select a layout for your blog page. This will also be applied to all pages set using the blog template.', 'redux-framework'), 'id' => 'thinkup_blog_style1layout', 'type' => 'radio', 'options' => array( 'option1' => 'Style 1 (Quarter Width)', 'option2' => 'Style 2 (Full Width)', ), ), array( 'title' => __('Post Content', 'redux-framework'), $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 more tag in your post.', 'redux-framework'), $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 more tag in your post.', 'redux-framework'), 'id' => 'thinkup_blog_postswitch', 'type' => 'radio', 'options' => array( 'option1' => 'Show excerpt', 'option2' => 'Show full article', 'option3' => 'Hide article', ), ), array( 'id' => 'thinkup_section_post_layout', 'type' => $thinkup_section_field, 'title' => __( ' ', 'redux-framework' ), 'subtitle' => __( 'Control Single Post Page', 'redux-framework' ), 'indent' => false, ), array( 'title' => __('Post Layout', 'redux-framework'), $thinkup_subtitle_panel => __('Select blog page layout. This will only be applied to individual posts and not the main blog page.', 'redux-framework'), $thinkup_subtitle_customizer => __('Select blog page layout. This will only be applied to individual posts and not the main blog page.', 'redux-framework'), 'id' => 'thinkup_post_layout', 'type' => 'image_select', 'compiler' => true, 'options' => array( 'option1' => ReduxFramework::$_url . 'assets/img/layout/blog/option01.png', 'option2' => ReduxFramework::$_url . 'assets/img/layout/blog/option02.png', 'option3' => ReduxFramework::$_url . 'assets/img/layout/blog/option03.png', ), ), array( 'title' => __('Select a Sidebar', 'redux-framework'), $thinkup_subtitle_panel => __('Choose a sidebar to use with the layout.', 'redux-framework'), $thinkup_subtitle_customizer => __('Choose a sidebar to use with the layout.', 'redux-framework'), 'id' => 'thinkup_post_sidebars', 'type' => 'select', 'data' => 'sidebars', 'required' => array( array( 'thinkup_post_layout', '=', array( 'option2', 'option3' ), ), ) ), array( 'title' => __('Show Author Bio', 'redux-framework'), $thinkup_subtitle_panel => __('Check to enable the author biography.', 'redux-framework'), $thinkup_subtitle_customizer => __('Check to enable the author biography.', 'redux-framework'), 'id' => 'thinkup_post_authorbio', 'type' => 'switch', 'default' => '', ), ) ) ); // ----------------------------------------------------------------------------------- // 15. Support // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Support', 'redux-framework'), 'desc' => __('For premium support direct from the theme developers, or advice on customizations please upgrade to Grow Pro or purchase a Theme Subscription.', 'redux-framework'), 'icon' => 'el el-user', 'icon_class' => '', 'id' => 'thinkup_section_support', 'subsection' => $thinkup_customizer_subsection, 'customizer' => true, 'fields' => array( ) ) ); // ----------------------------------------------------------------------------------- // 15. Upgrade Now // ----------------------------------------------------------------------------------- Redux::setSection( $opt_name, array( 'title' => __('Upgrade (10% off)', 'redux-framework'), 'desc' => '', 'icon' => 'el el-arrow-up', 'icon_class' => '', 'id' => 'thinkup_section_upgrade', 'subsection' => $thinkup_customizer_subsection, 'customizer' => true, 'fields' => array( // Ensures ThinkUpThemes upgrade code is output array( 'title' => '', $thinkup_subtitle_panel => '', $thinkup_subtitle_customizer => '', 'id' => 'thinkup_upgrade_content', 'type' => 'thinkup_upgrade', 'upgrade_url' => '//www.thinkupthemes.com/themes/grow/', ), ) ) ); 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 '

The compiler hook has run!

'; echo "
";
            print_r( $changed_values ); // Values that have changed since the last save
            echo "
"; //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' ) ); } } }