-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththemeoption-config.php
More file actions
1547 lines (1361 loc) · 72 KB
/
themeoption-config.php
File metadata and controls
1547 lines (1361 loc) · 72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?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 = "fi_print_options";
// 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', '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' => 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' => true,
// 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', '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/fi_printthemes',
'title' => 'Like us on Facebook',
'icon' => 'el el-facebook'
);
$args['share_icons'][] = array(
'url' => 'http://www.twitter.com/fi_printthemes',
'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>', 'redux-framework' ), $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>', 'redux-framework' );
}
// 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>', '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' => __( '<p>This is the tab content, HTML is allowed.</p>', 'redux-framework' )
// ),
// array(
// 'id' => 'redux-help-tab-2',
// 'title' => __( 'Theme Information 2', 'redux-framework' ),
// 'content' => __( '<p>This is the tab content, HTML is allowed.</p>', 'redux-framework' )
// )
// );
// Redux::setHelpTab( $opt_name, $tabs );
// Set the help sidebar
// $content = __( '<p>This is the sidebar content, HTML is allowed.</p>', '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
$fi_print_subtitle_customizer = 'subtitle';
$fi_print_subtitle_panel = NULL;
// Change section field used in customizer / options panel
$fi_print_section_field = 'fi_print_section';
// Enable sub-sections in customizer
$fi_print_customizer_subsection = true;
Redux::setSection( $opt_name, array(
'title' => __( 'Theme Options', 'redux-framework' ),
'id' => 'fi_print_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
$fi_print_customizer_subsection = false;
// Change subtitle text in customizer / options panel
$fi_print_subtitle_customizer = NULL;
$fi_print_subtitle_panel = 'subtitle';
// Change section field used in customizer / options panel
$fi_print_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' => __('<span class="redux-title">Logo & Favicon Settings</span>', 'redux-framework'),
'icon_class' => '',
'icon' => 'el el-wrench',
'subsection' => $fi_print_customizer_subsection,
'customizer' => true,
'fields' => array(
array(
'id' => 'preloader',
'type' => 'switch',
'title' => __('Activate preloader', 'barberia'),
'subtitle' => __('Smooth page loader for your site', 'barberia'),
'default' => '1',
),
array(
'id' => 'preloader-logo',
'type' => 'media',
'title' => __('Logo in the Preloader', 'barberia'),
'compiler' => 'true',
'mode' => false, // Can be set to false to allow any media type, or can also be set to any mime type.
'subtitle' => __('Upload logo to be displayed on prelaoder', 'barberia'),
),
array(
'id' => 'logo',
'type' => 'media',
'title' => __('Logo Normal', 'barberia'),
'compiler' => 'true',
'mode' => false, // Can be set to false to allow any media type, or can also be set to any mime type.
'subtitle' => __('Upload header logo for your website', 'barberia'),
),
array(
'id' => 'retinalogo',
'type' => 'media',
'title' => __('Retina Normal', 'barberia'),
'compiler' => 'true',
'mode' => false, // Can be set to false to allow any media type, or can also be set to any mime type.
'subtitle' => __('Upload header logo for your website', 'barberia'),
),
array(
'id' => 'top-bar-title-1',
'type' => 'text',
'title' => __('Top Bar Title One', 'barberia'),
'compiler' => 'true',
'mode' => false, // Can be set to false to allow any media type, or can also be set to any mime type.
),
array(
'id' => 'top-bar-detail-1',
'type' => 'text',
'title' => __('Top Bar Detail One', 'barberia'),
'compiler' => 'true',
'mode' => false, // Can be set to false to allow any media type, or can also be set to any mime type.
),
array(
'id' => 'top-bar-title-2',
'type' => 'text',
'title' => __('Top Bar Title Two', 'barberia'),
'compiler' => 'true',
'mode' => false, // Can be set to false to allow any media type, or can also be set to any mime type.
),
array(
'id' => 'top-bar-detail-2',
'type' => 'text',
'title' => __('Top Bar Title Detail Two', 'barberia'),
'compiler' => 'true',
'mode' => false, // Can be set to false to allow any media type, or can also be set to any mime type.
),
array(
'id' => 'top-bar-title-3',
'type' => 'text',
'title' => __('Top Bar Title Three', 'barberia'),
'compiler' => 'true',
'mode' => false, // Can be set to false to allow any media type, or can also be set to any mime type.
),
array(
'id' => 'top-bar-detail-3',
'type' => 'text',
'title' => __('Top Bar Detail Three', 'barberia'),
'compiler' => 'true',
'mode' => false, // Can be set to false to allow any media type, or can also be set to any mime type.
),
array(
'title' => __('Select a Sidebar', 'redux-framework'),
$fi_print_subtitle_panel => __('Choose a sidebar to use with the page layout.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Choose a sidebar to use with the page layout.', 'redux-framework'),
'id' => 'fi_print_general_sidebars',
'type' => 'select',
'data' => 'sidebars',
'required' => array(
array( 'fi_print_general_layout', '=',
array( 'option2', 'option3' ),
),
)
),
array(
'title' => __('Enable Fixed Layout', 'redux-framework'),
$fi_print_subtitle_panel => __('Check to enable fixed layout.<br />(i.e. Disable responsive layout)', 'redux-framework'),
$fi_print_subtitle_customizer => __('Check to enable fixed layout.<br />(i.e. Disable responsive layout)', 'redux-framework'),
'id' => 'fi_print_general_fixedlayoutswitch',
'type' => 'switch',
),
array(
'title' => __('Enable Breadcrumbs', 'redux-framework'),
$fi_print_subtitle_panel => __('Switch on to enable breadcrumbs.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Switch on to enable breadcrumbs.', 'redux-framework'),
'id' => 'fi_print_general_breadcrumbswitch',
'type' => 'switch',
'default' => '0',
),
array(
'title' => __('Breadcrumb Delimiter', 'redux-framework'),
$fi_print_subtitle_panel => __('Specify a custom delimiter to use instead of the default ( / ) when displaying breadcrumbs.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Specify a custom delimiter to use instead of the default ( / ) when displaying breadcrumbs.', 'redux-framework'),
'default' => '/',
'id' => 'fi_print_general_breadcrumbdelimeter',
'type' => 'text',
'validate' => 'html',
'required' => array(
array( 'fi_print_general_breadcrumbswitch', '=',
array( '1' ),
),
)
),
array(
'id' => 'fi_print_section_general_code',
'type' => $fi_print_section_field,
'title' => __( ' ', 'redux-framework' ),
'subtitle' => __( '<span class="redux-title">Custom Code</span>', 'redux-framework' ),
'indent' => false,
),
array(
'title' => __('Custom CSS', 'redux-framework'),
$fi_print_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'),
$fi_print_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' => 'fi_print_general_customcss',
'type' => 'textarea',
'validate' => 'css',
),
// array(
// 'title' => __('Custom jQuery - Front End', 'redux-framework'),
// $fi_print_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.', 'redux-framework'),
// $fi_print_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.', 'redux-framework'),
// 'id' => 'fi_print_general_customjavafront',
// 'type' => 'textarea',
// ),
// Ensures ThinkUpThemes custom code is output
array(
'title' => __('Custom Code', 'redux-framework'),
'subtitle' => __('Custom Code', 'redux-framework'),
'id' => 'fi_print_customization',
'type' => 'fi_print_custom_code',
),
)
) );
Redux::setSection( $opt_name, array(
'type' => 'divide',
) );
// -----------------------------------------------------------------------------------
// 2.1. Home Settings
// -----------------------------------------------------------------------------------
Redux::setSection( $opt_name, array(
'title' => __('Homepage', 'redux-framework'),
'desc' => __('<span class="redux-title">Homepage Layout</span>', 'redux-framework'),
'icon_class' => '',
'icon' => 'el el-home',
'subsection' => $fi_print_customizer_subsection,
'customizer' => true,
'fields' => array(
array(
'title' => __('Homepage Layout', 'redux-framework'),
$fi_print_subtitle_panel => __('Select page layout. This will only be applied to the home page.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Select page layout. This will only be applied to the home page.', 'redux-framework'),
'id' => 'fi_print_homepage_layout',
'type' => 'image_select',
'compiler' => true,
'default' => '0',
'options' => array(
'option1' => array('alt' => '1 Column', 'img' => ReduxFramework::$_url . 'assets/img/1col.png'),
'option2' => array('alt' => '2 Column Left', 'img' => ReduxFramework::$_url . 'assets/img/2cl.png'),
'option3' => array('alt' => '2 Column Right', 'img' => ReduxFramework::$_url . 'assets/img/2cr.png'),
),
),
array(
'title' => __('Select a Sidebar', 'redux-framework'),
$fi_print_subtitle_panel => __('Choose a sidebar to use with the layout.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Choose a sidebar to use with the layout.', 'redux-framework'),
'id' => 'fi_print_homepage_sidebars',
'type' => 'select',
'data' => 'sidebars',
'required' => array(
array( 'fi_print_homepage_layout', '=',
array( 'option2', 'option3' ),
),
)
),
array(
'id' => 'fi_print_section_homepage_slider',
'type' => $fi_print_section_field,
'title' => __( ' ', 'redux-framework' ),
'subtitle' => __( '<span class="redux-title">Homepage Slider</span>', 'redux-framework' ),
'indent' => false,
),
array(
'title' => __('Enable Homepage Slider', 'redux-framework'),
$fi_print_subtitle_panel => __('Switch on to enable home page slider.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Switch on to enable home page slider.', 'redux-framework'),
'id' => 'fi_print_homepage_sliderswitch',
'type' => 'button_set',
'options' => array(
'option1' => 'ThinkUpSlider',
'option2' => 'Custom Slider',
'option3' => 'Disable'
),
'default' => 'option1'
),
array(
'id' => 'fi_print_homepage_slidername',
'title' => __('Homepage Slider Shortcode', 'redux-framework'),
$fi_print_subtitle_panel => __('Input the shortcode of the slider you want to display. I.e. [shortcode_name].', 'redux-framework'),
$fi_print_subtitle_customizer => __('Input the shortcode of the slider you want to display. I.e. [shortcode_name].', 'redux-framework'),
'type' => 'text',
'validate' => 'html',
'required' => array(
array( 'fi_print_homepage_sliderswitch', '=',
array( 'option2' ),
),
)
),
array(
'id' => 'fi_print_homepage_sliderpreset',
'title' => __('Built-In Slider', 'redux-framework'),
$fi_print_subtitle_panel => __('Unlimited slides with drag and drop sortings.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Unlimited slides with drag and drop sortings.', 'redux-framework'),
'type' => 'fi_print_slider_free',
'required' => array(
array( 'fi_print_homepage_sliderswitch', '=',
array( 'option1' ),
),
)
),
array(
'id' => 'fi_print_homepage_sliderpresetwidth',
'title' => __('Enable Full-Width Slider', 'redux-framework'),
$fi_print_subtitle_panel => __('Switch on to enable full-width slider.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Switch on to enable full-width slider.', 'redux-framework'),
'type' => 'switch',
'default' => '1',
'required' => array(
array( 'fi_print_homepage_sliderswitch', '=',
array( 'option1' ),
),
)
),
array(
'id' => 'fi_print_homepage_sliderpresetheight',
'type' => 'slider',
'title' => __('Slider Height (Max)', 'redux-framework'),
$fi_print_subtitle_panel => __('Specify the maximum slider height (px).', 'redux-framework'),
$fi_print_subtitle_customizer => __('Specify the maximum slider height (px).', 'redux-framework'),
"default" => "350",
"min" => "200",
"step" => "5",
"max" => "800",
'required' => array(
array( 'fi_print_homepage_sliderswitch', '=',
array( 'option1' ),
),
)
),
array(
'id' => 'fi_print_section_homepage_ctaintro',
'type' => $fi_print_section_field,
'title' => __( ' ', 'redux-framework' ),
'subtitle' => __( '<span class="redux-title">Call To Action - Intro</span>', 'redux-framework' ),
'indent' => false,
),
array(
'title' => __('Message', 'redux-framework'),
'desc' => __('Check to enable intro on home page.', 'redux-framework'),
'id' => 'fi_print_homepage_introswitch',
'type' => 'checkbox',
'default' => '0',
),
array(
$fi_print_subtitle_panel => __('Enter a <strong>main</strong> message.<br /><br />This will be one of the first messages your visitors see. Use this to get their attention.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Enter a <strong>main</strong> message.<br /><br />This will be one of the first messages your visitors see. Use this to get their attention.', 'redux-framework'),
'id' => 'fi_print_homepage_introaction',
'type' => 'textarea',
'validate' => 'html',
),
array(
$fi_print_subtitle_panel => __('Enter a <strong>teaser</strong> message. <br /><br />Use this to provide more details about what you offer.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Enter a <strong>teaser</strong> message. <br /><br />Use this to provide more details about what you offer.', 'redux-framework'),
'id' => 'fi_print_homepage_introactionteaser',
'type' => 'textarea',
'validate' => 'html',
),
array(
'title' => __('Button Text', 'redux-framework'),
$fi_print_subtitle_panel => __('Input text to display on the action button.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Input text to display on the action button.', 'redux-framework'),
'id' => 'fi_print_homepage_introactionbutton',
'type' => 'text',
'validate' => 'html',
),
array(
'title' => __('Link', 'redux-framework'),
$fi_print_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'),
$fi_print_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' => 'fi_print_homepage_introactionlink',
'type' => 'radio',
'options' => array(
'option1' => 'Link to a Page',
'option2' => 'Specify Custom link',
'option3' => 'Disable Link'
),
),
array(
'title' => __('Link to a page', 'redux-framework'),
$fi_print_subtitle_panel => __('Select a target page for action button link.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Select a target page for action button link.', 'redux-framework'),
'id' => 'fi_print_homepage_introactionpage',
'type' => 'select',
'data' => 'pages',
'required' => array(
array( 'fi_print_homepage_introactionlink', '=',
array( 'option1' ),
),
)
),
array(
'title' => __('Custom link', 'redux-framework'),
$fi_print_subtitle_panel => __('Input a custom url for the action button link.<br>Add http:// if linking to an external webpage.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Input a custom url for the action button link.<br>Add http:// if linking to an external webpage.', 'redux-framework'),
'id' => 'fi_print_homepage_introactioncustom',
'type' => 'text',
'validate' => 'html',
'required' => array(
array( 'fi_print_homepage_introactionlink', '=',
array( 'option2' ),
),
)
),
)
) );
// -----------------------------------------------------------------------------------
// 2.2. Homepage (Featured)
// -----------------------------------------------------------------------------------
Redux::setSection( $opt_name, array(
'title' => __('Homepage (Featured)', 'redux-framework'),
'desc' => __('<span class="redux-title">Display Pre-Designed Homepage Layout</span>', 'redux-framework'),
'icon_class' => '',
'icon' => 'el el-pencil',
'subsection' => $fi_print_customizer_subsection,
'customizer' => true,
'fields' => array(
array(
'title' => __('Enable Pre-Made Homepage ', 'redux-framework'),
$fi_print_subtitle_panel => __('switch on to enable pre-designed homepage layout.', 'redux-framework'),
$fi_print_subtitle_customizer => __('switch on to enable pre-designed homepage layout.', 'redux-framework'),
'id' => 'fi_print_homepage_sectionswitch',
'type' => 'switch',
'default' => '1',
),
array(
'id' => 'fi_print_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( 'fi_print_homepage_sectionswitch', '=',
array( '1' ),
),
)
),
array(
'id' => 'fi_print_homepage_section1_title',
'desc' => __('Add a title to the section.', 'redux-framework'),
'type' => 'text',
'validate' => 'html',
'required' => array(
array( 'fi_print_homepage_sectionswitch', '=',
array( '1' ),
),
)
),
array(
'id' => 'fi_print_homepage_section1_desc',
'desc' => __('Add a description to the section.', 'redux-framework'),
'type' => 'textarea',
'validate' => 'html',
'required' => array(
array( 'fi_print_homepage_sectionswitch', '=',
array( '1' ),
),
)
),
array(
'id' => 'fi_print_homepage_section1_link',
'desc' => __('Link to a page', 'redux-framework'),
'type' => 'select',
'data' => 'pages',
'required' => array(
array( 'fi_print_homepage_sectionswitch', '=',
array( '1' ),
),
)
),
array(
'id' => 'fi_print_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( 'fi_print_homepage_sectionswitch', '=',
array( '1' ),
),
)
),
array(
'id' => 'fi_print_homepage_section2_title',
'desc' => __('Add a title to the section.', 'redux-framework'),
'type' => 'text',
'validate' => 'html',
'required' => array(
array( 'fi_print_homepage_sectionswitch', '=',
array( '1' ),
),
)
),
array(
'id' => 'fi_print_homepage_section2_desc',
'desc' => __('Add a description to the section.', 'redux-framework'),
'type' => 'textarea',
'validate' => 'html',
'required' => array(
array( 'fi_print_homepage_sectionswitch', '=',
array( '1' ),
),
)
),
array(
'id' => 'fi_print_homepage_section2_link',
'desc' => __('Link to a page', 'redux-framework'),
'type' => 'select',
'data' => 'pages',
'required' => array(
array( 'fi_print_homepage_sectionswitch', '=',
array( '1' ),
),
)
),
array(
'id' => 'fi_print_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( 'fi_print_homepage_sectionswitch', '=',
array( '1' ),
),
)
),
array(
'id' => 'fi_print_homepage_section3_title',
'desc' => __('Add a title to the section.', 'redux-framework'),
'type' => 'text',
'validate' => 'html',
'required' => array(
array( 'fi_print_homepage_sectionswitch', '=',
array( '1' ),
),
)
),
array(
'id' => 'fi_print_homepage_section3_desc',
'desc' => __('Add a description to the section.', 'redux-framework'),
'type' => 'textarea',
'validate' => 'html',
'required' => array(
array( 'fi_print_homepage_sectionswitch', '=',
array( '1' ),
),
)
),
array(
'id' => 'fi_print_homepage_section3_link',
'desc' => __('Link to a page', 'redux-framework'),
'type' => 'select',
'data' => 'pages',
'required' => array(
array( 'fi_print_homepage_sectionswitch', '=',
array( '1' ),
),
)
),
)
) );
// -----------------------------------------------------------------------------------
// 3. Header
// -----------------------------------------------------------------------------------
Redux::setSection( $opt_name, array(
'title' => __('Header', 'redux-framework'),
'desc' => __('<span class="redux-title">Control Header Content</span>', 'redux-framework'),
'icon' => 'el el-chevron-up',
'icon_class' => '',
'subsection' => $fi_print_customizer_subsection,
'customizer' => true,
'fields' => array(
array(
'title' => __('Enable Search', 'redux-framework'),
$fi_print_subtitle_panel => __('Switch on to enable header search.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Switch on to enable header search.', 'redux-framework'),
'id' => 'fi_print_header_searchswitch',
'type' => 'switch',
'default' => '0',
),
array(
'title' => __('Enable Social Media Links', 'redux-framework'),
$fi_print_subtitle_panel => __('Switch on to enable links to social media pages.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Switch on to enable links to social media pages.', 'redux-framework'),
'id' => 'fi_print_header_socialswitch',
'type' => 'switch',
'default' => '0',
),
array(
'id' => 'fi_print_section_header_social',
'type' => $fi_print_section_field,
'title' => __( ' ', 'redux-framework' ),
'subtitle' => __( '<span class="redux-title">Social Media Content</span>', 'redux-framework' ),
'indent' => false,
),
array(
'title' => __('Display Message', 'redux-framework'),
$fi_print_subtitle_panel => __('Add a message here. E.g. "Follow Us".', 'redux-framework'),
$fi_print_subtitle_customizer => __('Add a message here. E.g. "Follow Us".', 'redux-framework'),
'id' => 'fi_print_header_socialmessage',
'type' => 'text',
'validate' => 'html',
),
// Facebook social settings
array(
'title' => __('Facebook', 'redux-framework'),
$fi_print_subtitle_panel => __('Enable link to Facebook profile.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Enable link to Facebook profile.', 'redux-framework'),
'id' => 'fi_print_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.', 'redux-framework'),
'id' => 'fi_print_header_facebooklink',
'type' => 'text',
'validate' => 'html',
'required' => array(
array( 'fi_print_header_facebookswitch', '=',
array( '1' ),
),
)
),
array(
'desc' => __('Use Custom Facebook Icon', 'redux-framework'),
'id' => 'fi_print_header_facebookiconswitch',
'type' => 'checkbox',
'default' => '0',
'required' => array(
array( 'fi_print_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' => 'fi_print_header_facebookcustomicon',
'type' => 'media',
'url' => true,
'required' => array(
array( 'fi_print_header_facebookswitch', '=',
array( '1' ),
),
)
),
// Twitter social settings
array(
'title' => __('Twitter', 'redux-framework'),
$fi_print_subtitle_panel => __('Enable link to Twitter profile.', 'redux-framework'),
$fi_print_subtitle_customizer => __('Enable link to Twitter profile.', 'redux-framework'),
'id' => 'fi_print_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.', 'redux-framework'),
'id' => 'fi_print_header_twitterlink',
'type' => 'text',
'validate' => 'html',
'required' => array(
array( 'fi_print_header_twitterswitch', '=',
array( '1' ),
),
)
),