-
Notifications
You must be signed in to change notification settings - Fork 11
/
options_divi.php
948 lines (774 loc) · 46.3 KB
/
options_divi.php
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
<?php
global $epanelMainTabs, $themename, $shortname, $options;
$epanelMainTabs = array('general','navigation','layout','ad','seo','integration','updates');
$cats_array = get_categories('hide_empty=0');
$pages_array = get_pages('hide_empty=0');
$pages_number = count($pages_array);
$site_pages = array();
$site_cats = array();
$pages_ids = array();
$cats_ids = array();
foreach ($pages_array as $pagg) {
$site_pages[$pagg->ID] = htmlspecialchars($pagg->post_title);
$pages_ids[] = $pagg->ID;
}
foreach ($cats_array as $categs) {
$site_cats[$categs->cat_ID] = $categs->cat_name;
$cats_ids[] = $categs->cat_ID;
}
$shortname = esc_html( $shortname );
$pages_ids = array_map( 'intval', $pages_ids );
$cats_ids = array_map( 'intval', $cats_ids );
$options = array (
array( "name" => "wrap-general",
"type" => "contenttab-wrapstart",),
array( "type" => "subnavtab-start",),
array( "name" => "general-1",
"type" => "subnav-tab",
"desc" => esc_html__( "General", $themename) ),
array( "type" => "subnavtab-end",),
array( "name" => "general-1",
"type" => "subcontent-start",),
array( "name" => esc_html__( "Logo", $themename ),
"id" => $shortname . "_logo",
"type" => "upload",
"button_text" => esc_html__( "Set As Logo", $themename ),
"std" => "",
"desc" => esc_html__( "If you would like to use your own custom logo image click the Upload Image button.", $themename )
),
array( "name" => esc_html__( "Favicon", $themename ),
"id" => $shortname . "_favicon",
"type" => "upload",
"button_text" => esc_html__( "Set As Favicon", $themename ),
"std" => "",
"desc" => esc_html__( "If you would like to use your own custom favicon image click the Upload Image button.", $themename )
),
array( "name" => esc_html__( "Fixed Navigation Bar", $themename ),
"id" => $shortname . "_fixed_nav",
"type" => "checkbox",
"std" => "on",
"desc" => esc_html__( "By default the navigation bar stays on top of the screen at all times. We suggest to disable this option, if you need to use a logo taller than the default one.", $themename )
),
array( "name" => esc_html__( "Enable Divi Gallery", $themename ),
"id" => $shortname . "_gallery_layout_enable",
"type" => "checkbox",
"std" => "off",
"desc" => esc_html__( "Enable this if you want to replace the WordPress default gallery with the Divi-style gallery.", $themename )
),
array( "name" => esc_html__( "Color Pickers Default Palette", $themename ),
"id" => $shortname . "_color_palette",
"type" => "et_color_palette",
"items_amount" => 8,
"std" => '#000000|#FFFFFF|#E02B20|#E09900|#EDF000|#7CDA24|#0C71C3|#8300E9',
"desc" => esc_html__( "Define the default color palette for color pickers in the Divi Builder.", $themename ),
),
array( "type" => "clearfix",),
array( "name" => esc_html__( "Grab the first post image", $themename ),
"id" => $shortname . "_grab_image",
"type" => "checkbox",
"std" => "false",
"desc" => esc_html__("By default thumbnail images are created using custom fields. However, if you would rather use the images that are already in your post for your thumbnail (and bypass using custom fields) you can activate this option. Once activcated thumbnail images will be generated automatically using the first image in your post. The image must be hosted on your own server.",$themename)
),
array( "name" => esc_html__( "Blog Style Mode", $themename ),
"id" => $shortname . "_blog_style",
"type" => "checkbox2",
"std" => "false",
"desc" => esc_html__( "By default the theme truncates your posts on index/homepages automatically to create post previews. If you would rather show your posts in full on index pages like a traditional blog then you can activate this feature.", $themename ),
),
array( "name" => esc_html__( "Shop Page & Category Page Layout for WooCommerce", $themename ),
"id" => $shortname . "_shop_page_sidebar",
"type" => "select",
"options" => array(
'et_right_sidebar' => esc_html__( 'Right Sidebar', $themename ),
'et_left_sidebar' => esc_html__( 'Left Sidebar', $themename ),
'et_full_width_page' => esc_html__( 'Full Width', $themename ),
),
"std" => 'et_right_sidebar',
"desc" => esc_html__( "Here you can choose Shop Page & Category Page Layout for WooCommerce.", $themename ),
'et_save_values' => true,
),
array( "name" => esc_html__( "MailChimp API Key", $themename ),
"id" => $shortname . "_mailchimp_api_key",
"std" => "",
"type" => "text",
"validation_type" => "nohtml",
"desc" => et_get_safe_localization( sprintf( __( 'Enter your MailChimp API key. You can create an api key <a target="_blank" href="%1$s">here</a>', $themename ), 'https://us3.admin.mailchimp.com/account/api/' ) ),
),
array(
"name" => esc_html__( "Google API Key", $themename ),
"id" => "et_google_api_settings_api_key",
"std" => "",
"type" => "text",
"validation_type" => "nohtml",
'is_global' => true,
'main_setting_name' => 'et_google_api_settings',
'sub_setting_name' => 'api_key',
"desc" => et_get_safe_localization( sprintf( __( 'The Maps module uses the Google Maps API and requires a valid Google API Key to function. Before using the map module, please make sure you have added your API key here. Learn more about how to create your Google API Key <a target="_blank" href="%1$s">here</a>.', $themename ), 'http://www.elegantthemes.com/gallery/divi/documentation/map/' ) ),
),
array( "name" => esc_html__( "Aweber Authorization", $themename ),
"type" => "callback_function",
"desc" => esc_html__( 'Authorize your Aweber account here.', $themename ),
"function_name" => 'et_aweber_authorization_option',
),
array( "name" => esc_html__( "Regenerate MailChimp Lists", $themename ),
"id" => $shortname . "_regenerate_mailchimp_lists",
"type" => "checkbox",
"std" => "false",
"desc" => esc_html__( "By default, MailChimp lists are cached for one day. If you added new list, but it doesn't appear within the Email Optin module settings, activate this option. Don't forget to disable it once the list has been regenerated.",$themename ) ),
array( "name" =>esc_html__( "Regenerate Aweber Lists", $themename ),
"id" => $shortname . "_regenerate_aweber_lists",
"type" => "checkbox2",
"std" => "false",
"desc" =>esc_html__( "By default, Aweber lists are cached for one day. If you added new list, but it doesn't appear within the Email Optin module settings, activate this option. Don't forget to disable it once the list has been regenerated.", $themename ) ),
array( "name" =>esc_html__( "Show Facebook Icon", $themename ),
"id" => $shortname . "_show_facebook_icon",
"type" => "checkbox",
"std" => "on",
"desc" =>esc_html__( "Here you can choose to display the Facebook Icon on your homepage. ", $themename ) ),
array( "name" =>esc_html__( "Show Twitter Icon", $themename ),
"id" => $shortname . "_show_twitter_icon",
"type" => "checkbox2",
"std" => "on",
"desc" =>esc_html__( "Here you can choose to display the Twitter Icon. ", $themename ) ),
array( "name" =>esc_html__( "Show Google+ Icon", $themename ),
"id" => $shortname . "_show_google_icon",
"type" => "checkbox",
"std" => "on",
"desc" =>esc_html__( "Here you can choose to display the Google+ Icon on your homepage. ", $themename ) ),
array( "name" =>esc_html__( "Show RSS Icon", $themename ),
"id" => $shortname . "_show_rss_icon",
"type" => "checkbox2",
"std" => "on",
"desc" =>esc_html__( "Here you can choose to display the RSS Icon. ", $themename ) ),
array( "name" =>esc_html__( "Facebook Profile Url", $themename ),
"id" => $shortname . "_facebook_url",
"std" => "#",
"type" => "text",
"validation_type" => "url",
"desc" =>esc_html__( "Enter the URL of your Facebook Profile. ", $themename ) ),
array( "name" =>esc_html__( "Twitter Profile Url", $themename ),
"id" => $shortname . "_twitter_url",
"std" => "#",
"type" => "text",
"validation_type" => "url",
"desc" =>esc_html__( "Enter the URL of your Twitter Profile.", $themename ) ),
array( "name" =>esc_html__( "Google+ Profile Url", $themename ),
"id" => $shortname . "_google_url",
"std" => "#",
"type" => "text",
"validation_type" => "url",
"desc" =>esc_html__( "Enter the URL of your Google+ Profile. ", $themename ) ),
array( "name" =>esc_html__( "RSS Icon Url", $themename ),
"id" => $shortname . "_rss_url",
"std" => "",
"type" => "text",
"validation_type" => "url",
"desc" =>esc_html__( "Enter the URL of your RSS feed. ", $themename ) ),
array( "name" => esc_html__( "Number of Products displayed on WooCommerce archive pages", $themename ),
"id" => $shortname . "_woocommerce_archive_num_posts",
"std" => "9",
"type" => "text",
"desc" => esc_html__( "Here you can designate how many WooCommerce products are displayed on the archive page. This option works independently from the Settings > Reading options in wp-admin.", $themename),
"validation_type" => "number"
),
array( "name" => esc_html__( "Number of Posts displayed on Category page", $themename ),
"id" => $shortname . "_catnum_posts",
"std" => "6",
"type" => "text",
"desc" => esc_html__( "Here you can designate how many recent articles are displayed on the Category page. This option works independently from the Settings > Reading options in wp-admin.", $themename ),
"validation_type" => "number"
),
array( "name" => esc_html__( "Number of Posts displayed on Archive pages", $themename ),
"id" => $shortname . "_archivenum_posts",
"std" => "5",
"type" => "text",
"desc" => esc_html__( "Here you can designate how many recent articles are displayed on the Archive pages. This option works independently from the Settings > Reading options in wp-admin.", $themename ),
"validation_type" => "number"
),
array( "name" => esc_html__( "Number of Posts displayed on Search pages", $themename ),
"id" => $shortname . "_searchnum_posts",
"std" => "5",
"type" => "text",
"desc" => esc_html__( "Here you can designate how many recent articles are displayed on the Search results pages. This option works independently from the Settings > Reading options in wp-admin.", $themename ),
"validation_type" => "number"
),
array( "name" => esc_html__( "Number of Posts displayed on Tag pages", $themename ),
"id" => $shortname . "_tagnum_posts",
"std" => "5",
"type" => "text",
"desc" => esc_html__( "Here you can designate how many recent articles are displayed on the Tag pages. This option works independently from the Settings > Reading options in wp-admin.", $themename ),
"validation_type" => "number"
),
array( "name" => esc_html__( "Date format", $themename ),
"id" => $shortname . "_date_format",
"std" => "M j, Y",
"type" => "text",
"desc" => et_get_safe_localization( __("This option allows you to change how your dates are displayed. For more information please refer to the WordPress codex here:<a href='http://codex.wordpress.org/Formatting_Date_and_Time' target='_blank'>Formatting Date and Time</a>",$themename) ),
"validation_type" => "date_format"
),
array( "name" => esc_html__( "Use excerpts when defined", $themename ),
"id" => $shortname . "_use_excerpt",
"type" => "checkbox",
"std" => "false",
"desc" => esc_html__( "This will enable the use of excerpts in posts or pages.", $themename )
),
array( "name" => esc_html__( "Responsive shortcodes", $themename ),
"id" => $shortname . "_responsive_shortcodes",
"type" => "checkbox2",
"std" => "on",
"desc" => esc_html__( "Enable this option to make shortcodes respond to various screen sizes", $themename )
),
array( "name" => esc_html__( "Google Fonts subsets", $themename ),
"id" => $shortname . "_gf_enable_all_character_sets",
"type" => "checkbox",
"std" => "false",
"desc" => esc_html__( "This will enable Google Fonts for Non-English languages.", $themename )
),
array( "name" => esc_html__( "Back To Top Button", $themename ),
"id" => $shortname . "_back_to_top",
"type" => "checkbox2",
"std" => "false",
"desc" => esc_html__( "Enable this option to display Back To Top Button while scrolling", $themename )
),
array( "name" => esc_html__( "Smooth Scrolling", $themename ),
"id" => $shortname . "_smooth_scroll",
"type" => "checkbox",
"std" => "false",
"desc" => esc_html__( "Enable this option to get the smooth scrolling effect with mouse wheel", $themename )
),
array( "name" => esc_html__( "Disable Translations", $themename ),
"id" => $shortname . "_disable_translations",
"type" => "checkbox2",
"std" => "false",
"desc" => esc_html__( "Disable translations if you don't want to display translated theme strings on your site.", $themename )
),
array( "name" => esc_html__( "Custom CSS", $themename ),
"id" => $shortname . "_custom_css",
"type" => "textarea",
"std" => "",
"desc" => esc_html__( "Here you can add custom css to override or extend default styles.", $themename ),
"validation_type" => "nohtml"
),
array(
"name" => esc_html__( "Memory Limit Increase", $themename ),
"type" => "callback_function",
"desc" => esc_html__( 'Here you can disable automatic memory limit increase.', $themename ),
"function_name" => 'et_reset_memory_limit_increase_setting',
"depends_on" => 'et_should_memory_limit_increase',
),
array( "name" => "general-1",
"type" => "subcontent-end",),
array( "name" => "wrap-general",
"type" => "contenttab-wrapend",),
//-------------------------------------------------------------------------------------//
array( "name" => "wrap-navigation",
"type" => "contenttab-wrapstart",),
array( "type" => "subnavtab-start",),
array( "name" => "navigation-1",
"type" => "subnav-tab",
"desc" => esc_html__( "Pages", $themename )
),
array( "name" => "navigation-2",
"type" => "subnav-tab",
"desc" => esc_html__( "Categories", $themename )
),
array( "name" => "navigation-3",
"type" => "subnav-tab",
"desc" => esc_html__( "General Settings", $themename )
),
array( "type" => "subnavtab-end",),
array( "name" => "navigation-1",
"type" => "subcontent-start",),
array( "name" => esc_html__( "Exclude pages from the navigation bar", $themename ),
"id" => $shortname . "_menupages",
"type" => "checkboxes",
"std" => "",
"desc" => esc_html__( "Here you can choose to remove certain pages from the navigation menu. All pages marked with an X will not appear in your navigation bar. ", $themename ),
"usefor" => "pages",
"options" => $pages_ids),
array( "name" => esc_html__( "Show dropdown menus", $themename ),
"id" => $shortname . "_enable_dropdowns",
"type" => "checkbox",
"std" => "on",
"desc" => esc_html__( "If you would like to remove the dropdown menus from the pages navigation bar disable this feature.", $themename )
),
array( "name" => esc_html__( "Display Home link", $themename ),
"id" => $shortname . "_home_link",
"type" => "checkbox2",
"std" => "on",
"desc" => esc_html__("By default the theme creates a Home link that, when clicked, leads back to your blog's homepage. If, however, you are using a static homepage and have already created a page called Home to use, this will result in a duplicate link. In this case you should disable this feature to remove the link.",$themename)
),
array( "name" => esc_html__( "Sort Pages Links", $themename ),
"id" => $shortname . "_sort_pages",
"type" => "select",
"std" => "post_title",
"desc" => esc_html__( "Here you can choose to sort your pages links.", $themename ),
"options" => array("post_title", "menu_order","post_date","post_modified","ID","post_author","post_name")),
array( "name" => esc_html__( "Order Pages Links by Ascending/Descending", $themename ),
"id" => $shortname . "_order_page",
"type" => "select",
"std" => "asc",
"desc" => esc_html__( "Here you can choose to reverse the order that your pages links are displayed. You can choose between ascending and descending.", $themename ),
"options" => array("asc", "desc")),
array( "name" => esc_html__( "Number of dropdown tiers shown", $themename ),
"id" => $shortname . "_tiers_shown_pages",
"type" => "text",
"std" => "3",
"desc" => esc_html__( "This options allows you to control how many teirs your pages dropdown menu has. Increasing the number allows for additional menu items to be shown.", $themename ),
"validation_type" => "number"
),
array( "name" => "navigation-1",
"type" => "subcontent-end",),
array( "name" => "navigation-2",
"type" => "subcontent-start",),
array( "name" => esc_html__( "Exclude categories from the navigation bar", $themename ),
"id" => $shortname . "_menucats",
"type" => "checkboxes",
"std" => "",
"desc" => esc_html__( "Here you can choose to remove certain categories from the navigation menu. All categories marked with an X will not appear in your navigation bar. ", $themename ),
"usefor" => "categories",
"options" => $cats_ids),
array( "name" => esc_html__( "Show dropdown menus", $themename ),
"id" => $shortname . "_enable_dropdowns_categories",
"type" => "checkbox",
"std" => "on",
"desc" => esc_html__( "If you would like to remove the dropdown menus from the categories navigation bar disable this feature.", $themename )
),
array( "name" => esc_html__( "Hide empty categories", $themename ),
"id" => $shortname . "_categories_empty",
"type" => "checkbox",
"std" => "on",
"desc" => esc_html__("If you would like categories to be displayed in your navigationbar that don't have any posts in them then disable this option. By default empty categories are hidden",$themename)
),
array( "name" => esc_html__( "Number of dropdown tiers shown", $themename ),
"id" => $shortname . "_tiers_shown_categories",
"type" => "text",
"std" => "3",
"desc" => esc_html__( "This options allows you to control how many teirs your pages dropdown menu has. Increasing the number allows for additional menu items to be shown.", $themename ),
"validation_type" => "number"
),
array( "name" => esc_html__( "Sort Categories Links by Name/ID/Slug/Count/Term Group", $themename ),
"id" => $shortname . "_sort_cat",
"type" => "select",
"std" => "name",
"desc" => esc_html__( "By default pages are sorted by name. However if you would rather have them sorted by ID you can adjust this setting.", $themename ),
"options" => array("name", "ID", "slug", "count", "term_group")),
array( "name" => esc_html__( "Order Category Links by Ascending/Descending", $themename ),
"id" => $shortname . "_order_cat",
"type" => "select",
"std" => "asc",
"desc" => esc_html__( "Here you can choose to reverse the order that your categories links are displayed. You can choose between ascending and descending.", $themename ),
"options" => array("asc", "desc")),
array( "name" => "navigation-2",
"type" => "subcontent-end",),
array( "name" => "navigation-3",
"type" => "subcontent-start",),
array( "name" => esc_html__( "Disable top tier dropdown menu links", $themename ),
"id" => $shortname . "_disable_toptier",
"type" => "checkbox2",
"std" => "false",
"desc" => esc_html__( "In some cases users will want to create parent categories or links as placeholders to hold a list of child links or categories. In this case it is not desirable to have the parent links lead anywhere, but instead merely serve an organizational function. Enabling this options will remove the links from all parent pages/categories so that they don't lead anywhere when clicked.", $themename )
),
array(
"name" => esc_html__( "Alternative scroll-to-anchor method", $themename ),
"id" => $shortname . "_scroll_to_anchor_fix",
"type" => "checkbox2",
"std" => "false",
"desc" => esc_html__( "Sometimes when using the CSS ID of a section to link directly to it from another page, the page's final scroll position can be inaccurate. Enable this option to use an alternative method for scrolling to anchors which can be more accurate than the default method in some cases.", $themename ),
),
array( "name" => "navigation-3",
"type" => "subcontent-end",),
array( "name" => "wrap-navigation",
"type" => "contenttab-wrapend",),
//-------------------------------------------------------------------------------------//
array( "name" => "wrap-layout",
"type" => "contenttab-wrapstart",),
array( "type" => "subnavtab-start",),
array( "name" => "layout-1",
"type" => "subnav-tab",
"desc" => esc_html__( "Single Post Layout", $themename )
),
array( "name" => "layout-2",
"type" => "subnav-tab",
"desc" => esc_html__( "Single Page Layout", $themename )
),
array( "name" => "layout-3",
"type" => "subnav-tab",
"desc" => esc_html__( "General Settings", $themename )
),
array( "type" => "subnavtab-end",),
array( "name" => "layout-1",
"type" => "subcontent-start",),
array( "name" => esc_html__( "Choose which items to display in the postinfo section", $themename ),
"id" => $shortname . "_postinfo2",
"type" => "different_checkboxes",
"std" => array("author","date","categories","comments"),
"desc" => esc_html__( "Here you can choose which items appear in the postinfo section on single post pages. This is the area, usually below the post title, which displays basic information about your post. The highlighted itmes shown below will appear. ", $themename ),
"options" => array("author","date","categories","comments")),
array(
"name" => esc_html__( "Show comments on posts", $themename ),
"id" => $shortname . "_show_postcomments",
"type" => "checkbox",
"std" => "on",
"desc" => esc_html__( "You can disable this option if you want to remove the comments and comment form from single post pages. ", $themename )
),
array( "name" => esc_html__( "Place Thumbs on Posts", $themename ),
"id" => $shortname . "_thumbnails",
"type" => "checkbox2",
"std" => "on",
"desc" => esc_html__( "By default thumbnails are placed at the beginning of your post on single post pages. If you would like to remove this initial thumbnail image to avoid repetition simply disable this option. ", $themename )
),
array( "name" => "layout-1",
"type" => "subcontent-end",),
array( "name" => "layout-2",
"type" => "subcontent-start",),
array( "name" => esc_html__( "Place Thumbs on Pages", $themename ),
"id" => $shortname . "_page_thumbnails",
"type" => "checkbox",
"std" => "false",
"desc" => esc_html__("By default thumbnails are not placed on pages (they are only used on posts). However, if you want to use thumbnails on pages you can! Just enable this option. ",$themename)
),
array( "name" => esc_html__( "Show comments on pages", $themename ),
"id" => $shortname . "_show_pagescomments",
"type" => "checkbox2",
"std" => "false",
"desc" => esc_html__( "By default comments are not placed on pages, however, if you would like to allow people to comment on your pages simply enable this option. ", $themename )
),
array( "name" => "layout-2",
"type" => "subcontent-end",),
array( "name" => "layout-3",
"type" => "subcontent-start",),
array( "name" => esc_html__( "Post info section", $themename ),
"id" => $shortname . "_postinfo1",
"type" => "different_checkboxes",
"std" => array("author","date","categories"),
"desc" => esc_html__( "Here you can choose which items appear in the postinfo section on pages. This is the area, usually below the post title, which displays basic information about your post. The highlighted itmes shown below will appear. ", $themename ),
"options" => array("author","date","categories","comments")),
array( "name" => esc_html__( "Show Thumbs on Index pages", $themename ),
"id" => $shortname . "_thumbnails_index",
"type" => "checkbox",
"std" => "on",
"desc" => esc_html__( "Enable this option to show thumbnails on Index Pages.", $themename )
),
array( "name" => "layout-3",
"type" => "subcontent-end",),
array( "name" => "wrap-layout",
"type" => "contenttab-wrapend",),
//-------------------------------------------------------------------------------------//
array( "name" => "wrap-seo",
"type" => "contenttab-wrapstart",),
array( "type" => "subnavtab-start",),
array( "name" => "seo-1",
"type" => "subnav-tab",
"desc" => esc_html__( "Homepage SEO", $themename )
),
array( "name" => "seo-2",
"type" => "subnav-tab",
"desc" => esc_html__( "Single Post Page SEO", $themename )
),
array( "name" => "seo-3",
"type" => "subnav-tab",
"desc" => esc_html__( "Index Page SEO", $themename )
),
array( "type" => "subnavtab-end",),
array( "name" => "seo-1",
"type" => "subcontent-start",),
array( "name" => esc_html__( " Enable custom title ", $themename ),
"id" => $shortname . "_seo_home_title",
"type" => "checkbox",
"std" => "false",
"desc" => esc_html__( "By default the theme uses a combination of your blog name and your blog description, as defined when you created your blog, to create your homepage titles. However if you want to create a custom title then simply enable this option and fill in the custom title field below. ", $themename )
),
array( "name" => esc_html__( " Enable meta description", $themename ),
"id" => $shortname . "_seo_home_description",
"type" => "checkbox",
"std" => "false",
"desc" => esc_html__( "By default the theme uses your blog description, as defined when you created your blog, to fill in the meta description field. If you would like to use a different description then enable this option and fill in the custom description field below. ", $themename )
),
array( "name" => esc_html__( " Enable meta keywords", $themename ),
"id" => $shortname . "_seo_home_keywords",
"type" => "checkbox",
"std" => "false",
"desc" => esc_html__("By default the theme does not add keywords to your header. Most search engines don't use keywords to rank your site anymore, but some people define them anyway just in case. If you want to add meta keywords to your header then enable this option and fill in the custom keywords field below. ",$themename)
),
array( "name" => esc_html__(" Enable canonical URL's",$themename),
"id" => $shortname . "_seo_home_canonical",
"type" => "checkbox",
"std" => "false",
"desc" => esc_html__("Canonicalization helps to prevent the indexing of duplicate content by search engines, and as a result, may help avoid duplicate content penalties and pagerank degradation. Some pages may have different URLs all leading to the same place. For example domain.com, domain.com/index.html, and www.domain.com are all different URLs leading to your homepage. From a search engine's perspective these duplicate URLs, which also occur often due to custom permalinks, may be treated individually instead of as a single destination. Defining a canonical URL tells the search engine which URL you would like to use officially. The theme bases its canonical URLs off your permalinks and the domain name defined in the settings tab of wp-admin.",$themename)
),
array( "name" => esc_html__("Homepage custom title (if enabled)",$themename),
"id" => $shortname . "_seo_home_titletext",
"type" => "text",
"std" => "",
"desc" => esc_html__( "If you have enabled custom titles you can add your custom title here. Whatever you type here will be placed between the < title >< /title > tags in header.php", $themename ),
"validation_type" => "nohtml"
),
array( "name" => esc_html__("Homepage meta description (if enabled)",$themename),
"id" => $shortname . "_seo_home_descriptiontext",
"type" => "textarea",
"std" => "",
"desc" => esc_html__( "If you have enabled meta descriptions you can add your custom description here.", $themename ),
"validation_type" => "nohtml"
),
array( "name" => esc_html__("Homepage meta keywords (if enabled)",$themename),
"id" => $shortname . "_seo_home_keywordstext",
"type" => "text",
"std" => "",
"desc" => esc_html__("If you have enabled meta keywords you can add your custom keywords here. Keywords should be separated by comas. For example: wordpress,themes,templates,elegant",$themename),
"validation_type" => "nohtml"
),
array( "name" => esc_html__( "If custom titles are disabled, choose autogeneration method", $themename ),
"id" => $shortname . "_seo_home_type",
"type" => "select",
"std" => "BlogName | Blog description",
"options" => array("BlogName | Blog description", "Blog description | BlogName", "BlogName only"),
"desc" => esc_html__( "If you are not using cutsom post titles you can still have control over how your titles are generated. Here you can choose which order you would like your post title and blog name to be displayed, or you can remove the blog name from the title completely.", $themename )
),
array( "name" => esc_html__( "Define a character to separate BlogName and Post title", $themename ),
"id" => $shortname . "_seo_home_separate",
"type" => "text",
"std" => " | ",
"desc" => esc_html__( "Here you can change which character separates your blog title and post name when using autogenerated post titles. Common values are | or -", $themename ),
"validation_type" => "nohtml"
),
array( "name" => "seo-1",
"type" => "subcontent-end",),
array( "name" => "seo-2",
"type" => "subcontent-start",),
array( "name" => esc_html__( "Enable custom titles", $themename ),
"id" => $shortname . "_seo_single_title",
"type" => "checkbox",
"std" => "false",
"desc" => esc_html__( "By default the theme creates post titles based on the title of your post and your blog name. If you would like to make your meta title different than your actual post title you can define a custom title for each post using custom fields. This option must be enabled for custom titles to work, and you must choose a custom field name for your title below.", $themename )
),
array( "name" => esc_html__( "Enable custom description", $themename ),
"id" => $shortname . "_seo_single_description",
"type" => "checkbox2",
"std" => "false",
"desc" => esc_html__( "If you would like to add a meta description to your post you can do so using custom fields. This option must be enabled for descriptions to be displayed on post pages. You can add your meta description using custom fields based off the custom field name you define below.", $themename )
),
array( "name" => esc_html__( "Enable custom keywords", $themename ),
"id" => $shortname . "_seo_single_keywords",
"type" => "checkbox",
"std" => "false",
"desc" => esc_html__( "If you would like to add meta keywords to your post you can do so using custom fields. This option must be enabled for keywords to be displayed on post pages. You can add your meta keywords using custom fields based off the custom field name you define below.", $themename )
),
array( "name" => esc_html__("Enable canonical URL's",$themename),
"id" => $shortname . "_seo_single_canonical",
"type" => "checkbox2",
"std" => "false",
"desc" => esc_html__("Canonicalization helps to prevent the indexing of duplicate content by search engines, and as a result, may help avoid duplicate content penalties and pagerank degradation. Some pages may have different URLs all leading to the same place. For example domain.com, domain.com/index.html, and www.domain.com are all different URLs leading to your homepage. From a search engine's perspective these duplicate URLs, which also occur often due to custom permalinks, may be treated individually instead of as a single destination. Defining a canonical URL tells the search engine which URL you would like to use officially. The theme bases its canonical URLs off your permalinks and the domain name defined in the settings tab of wp-admin.",$themename)
),
array( "name" => esc_html__( "Custom field Name to be used for title", $themename ),
"id" => $shortname . "_seo_single_field_title",
"type" => "text",
"std" => "seo_title",
"desc" => esc_html__( "When you define your title using custom fields you should use this value for the custom field Name. The Value of your custom field should be the custom title you would like to use.", $themename ),
"validation_type" => "nohtml"
),
array( "name" => esc_html__( "Custom field Name to be used for description", $themename ),
"id" => $shortname . "_seo_single_field_description",
"type" => "text",
"std" => "seo_description",
"desc" => esc_html__( "When you define your meta description using custom fields you should use this value for the custom field Name. The Value of your custom field should be the custom description you would like to use.", $themename ),
"validation_type" => "nohtml"
),
array( "name" => esc_html__( "Custom field Name to be used for keywords", $themename ),
"id" => $shortname . "_seo_single_field_keywords",
"type" => "text",
"std" => "seo_keywords",
"desc" => esc_html__( "When you define your keywords using custom fields you should use this value for the custom field Name. The Value of your custom field should be the meta keywords you would like to use, separated by comas.", $themename ),
"validation_type" => "nohtml"
),
array( "name" => esc_html__( "If custom titles are disabled, choose autogeneration method", $themename ),
"id" => $shortname . "_seo_single_type",
"type" => "select",
"std" => "Post title | BlogName",
"options" => array("Post title | BlogName", "BlogName | Post title", "Post title only"),
"desc" => esc_html__( "If you are not using cutsom post titles you can still have control over hw your titles are generated. Here you can choose which order you would like your post title and blog name to be displayed, or you can remove the blog name from the title completely.", $themename )
),
array( "name" => esc_html__( "Define a character to separate BlogName and Post title", $themename ),
"id" => $shortname . "_seo_single_separate",
"type" => "text",
"std" => " | ",
"desc" => esc_html__( "Here you can change which character separates your blog title and post name when using autogenerated post titles. Common values are | or -", $themename ),
"validation_type" => "nohtml"
),
array( "name" => "seo-2",
"type" => "subcontent-end",),
array( "name" => "seo-3",
"type" => "subcontent-start",),
array( "name" => esc_html__(" Enable canonical URL's",$themename),
"id" => $shortname . "_seo_index_canonical",
"type" => "checkbox",
"std" => "false",
"desc" => esc_html__("Canonicalization helps to prevent the indexing of duplicate content by search engines, and as a result, may help avoid duplicate content penalties and pagerank degradation. Some pages may have different URLs all leading to the same place. For example domain.com, domain.com/index.html, and www.domain.com are all different URLs leading to your homepage. From a search engine's perspective these duplicate URLs, which also occur often due to custom permalinks, may be treated individually instead of as a single destination. Defining a canonical URL tells the search engine which URL you would like to use officially. The theme bases its canonical URLs off your permalinks and the domain name defined in the settings tab of wp-admin.",$themename)
),
array( "name" => esc_html__( "Enable meta descriptions", $themename ),
"id" => $shortname . "_seo_index_description",
"type" => "checkbox2",
"std" => "false",
"desc" => esc_html__( "Check this box if you want to display meta descriptions on category/archive pages. The description is based off the category description you choose when creating/edit your category in wp-admin.", $themename )
),
array( "name" => esc_html__( "Choose title autogeneration method", $themename ),
"id" => $shortname . "_seo_index_type",
"type" => "select",
"std" => "Category name | BlogName",
"options" => array("Category name | BlogName", "BlogName | Category name", "Category name only"),
"desc" => esc_html__( "Here you can choose how your titles on index pages are generated. You can change which order your blog name and index title are displayed, or you can remove the blog name from the title completely.", $themename )
),
array( "name" => esc_html__( "Define a character to separate BlogName and Post title", $themename ),
"id" => $shortname . "_seo_index_separate",
"type" => "text",
"std" => " | ",
"desc" => esc_html__( "Here you can change which character separates your blog title and index page name when using autogenerated post titles. Common values are | or -", $themename ),
"validation_type" => "nohtml"
),
array( "name" => "seo-3",
"type" => "subcontent-end",),
array( "name" => "wrap-seo",
"type" => "contenttab-wrapend",),
//-------------------------------------------------------------------------------------//
array( "name" => "wrap-integration",
"type" => "contenttab-wrapstart",),
array( "type" => "subnavtab-start",),
array( "name" => "integration-1",
"type" => "subnav-tab",
"desc" => esc_html__( "Code Integration", $themename )
),
array( "type" => "subnavtab-end",),
array( "name" => "integration-1",
"type" => "subcontent-start",),
array( "name" => esc_html__( "Enable header code", $themename ),
"id" => $shortname . "_integrate_header_enable",
"type" => "checkbox",
"std" => "on",
"desc" => esc_html__( "Disabling this option will remove the header code below from your blog. This allows you to remove the code while saving it for later use.", $themename )
),
array( "name" => esc_html__( "Enable body code", $themename ),
"id" => $shortname . "_integrate_body_enable",
"type" => "checkbox2",
"std" => "on",
"desc" => esc_html__( "Disabling this option will remove the body code below from your blog. This allows you to remove the code while saving it for later use.", $themename )
),
array( "name" => esc_html__( "Enable single top code", $themename ),
"id" => $shortname . "_integrate_singletop_enable",
"type" => "checkbox",
"std" => "on",
"desc" => esc_html__( "Disabling this option will remove the single top code below from your blog. This allows you to remove the code while saving it for later use.", $themename )
),
array( "name" => esc_html__( "Enable single bottom code", $themename ),
"id" => $shortname . "_integrate_singlebottom_enable",
"type" => "checkbox2",
"std" => "on",
"desc" => esc_html__( "Disabling this option will remove the single bottom code below from your blog. This allows you to remove the code while saving it for later use.", $themename )
),
array( "name" => esc_html__( "Add code to the < head > of your blog", $themename ),
"id" => $shortname . "_integration_head",
"type" => "textarea",
"std" => "",
"desc" => esc_html__( "Any code you place here will appear in the head section of every page of your blog. This is useful when you need to add javascript or css to all pages.", $themename )
),
array( "name" => esc_html__("Add code to the < body > (good for tracking codes such as google analytics)",$themename),
"id" => $shortname . "_integration_body",
"type" => "textarea",
"std" => "",
"desc" => esc_html__( "Any code you place here will appear in body section of all pages of your blog. This is usefull if you need to input a tracking pixel for a state counter such as Google Analytics.", $themename )
),
array( "name" => esc_html__( "Add code to the top of your posts", $themename ),
"id" => $shortname . "_integration_single_top",
"type" => "textarea",
"std" => "",
"desc" => esc_html__( "Any code you place here will be placed at the top of all single posts. This is useful if you are looking to integrating things such as social bookmarking links.", $themename )
),
array( "name" => esc_html__( "Add code to the bottom of your posts, before the comments", $themename ),
"id" => $shortname . "_integration_single_bottom",
"type" => "textarea",
"std" => "",
"desc" => esc_html__( "Any code you place here will be placed at the top of all single posts. This is useful if you are looking to integrating things such as social bookmarking links.", $themename )
),
array( "name" => "integration-1",
"type" => "subcontent-end",),
array( "name" => "wrap-integration",
"type" => "contenttab-wrapend",),
//-------------------------------------------------------------------------------------//
array( "name" => "wrap-updates",
"type" => "contenttab-wrapstart",),
array( "type" => "subnavtab-start",),
array( "name" => "updates-1",
"type" => "subnav-tab",
"desc" => esc_html__( "General", $themename )
),
array( "type" => "subnavtab-end",),
array( "name" => "updates-1",
"type" => "subcontent-start",),
array(
'name' => esc_html__( 'Username', $themename ),
'id' => 'et_automatic_updates_options_username',
'std' => '',
'type' => 'password',
'validation_type' => 'nohtml',
'desc' => et_get_safe_localization( __( 'Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key. Your username is the same username you use when logging in to <a href="http://elegantthemes.com/" target="_blank">ElegantThemes.com</a>', $themename ) ),
'is_global' => true,
'main_setting_name' => 'et_automatic_updates_options',
'sub_setting_name' => 'username',
),
array(
'name' => esc_html__( 'API Key', $themename ),
'id' => 'et_automatic_updates_options_api_key',
'std' => '',
'type' => 'password',
'validation_type' => 'nohtml',
'desc' => et_get_safe_localization( __( 'Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key. To locate your API Key, <a href="https://www.elegantthemes.com/members-area/" target="_blank">log in</a> to your Elegant Themes account and navigate to the <strong>Account > API Key</strong> page.', $themename ) ),
'is_global' => true,
'main_setting_name' => 'et_automatic_updates_options',
'sub_setting_name' => 'api_key',
),
array( "name" => "updates-1",
"type" => "subcontent-end",),
array( "name" => "wrap-updates",
"type" => "contenttab-wrapend",),
//-------------------------------------------------------------------------------------//
array( "name" => "wrap-advertisements",
"type" => "contenttab-wrapstart",),
array( "type" => "subnavtab-start",),
array( "name" => "advertisements-1",
"type" => "subnav-tab",
"desc" => esc_html__( "Manage Un-widgetized Advertisements", $themename )
),
array( "type" => "subnavtab-end",),
array( "name" => "advertisements-1",
"type" => "subcontent-start",),
array( "name" => esc_html__( "Enable Single Post 468x60 banner", $themename ),
"id" => $shortname . "_468_enable",
"type" => "checkbox2",
"std" => "false",
"desc" => esc_html__( "Enabling this option will display a 468x60 banner ad on the bottom of your post pages below the single post content. If enabled you must fill in the banner image and destination url below.", $themename )
),
array( "name" => esc_html__( "Input 468x60 advertisement banner image", $themename ),
"id" => $shortname . "_468_image",
"type" => "text",
"std" => "",
"desc" => esc_html__( "Here you can provide 468x60 banner image url", $themename ),
"validation_type" => "url"
),
array( "name" => esc_html__( "Input 468x60 advertisement destination url", $themename ),
"id" => $shortname . "_468_url",
"type" => "text",
"std" => "",
"desc" => esc_html__( "Here you can provide 468x60 banner destination url", $themename ),
"validation_type" => "url"
),
array( "name" => esc_html__( "Input 468x60 adsense code", $themename ),
"id" => $shortname . "_468_adsense",
"type" => "textarea",
"std" => "",
"desc" => esc_html__( "Place your adsense code here.", $themename )
),
array( "name" => "advertisements-1",
"type" => "subcontent-end",),
array( "name" => "wrap-advertisements",
"type" => "contenttab-wrapend",),
//-------------------------------------------------------------------------------------//
);