OptionTree - Version 2.3.2

Version Description

  • Hotfix - Fixed an issue with the ot_create_media_post function creating multiple option-tree posts.
  • Hotfix - Change the icon used by the layout management option type to differentiate it from the edit button.
  • Hotfix - Suppress PHP warning in the Background option type "Invalid argument supplied for foreach()". Contributors via github @tomkwok.
  • Hotfix - Added filter ot_type_date_picker_date_format to change the date format of the Date Picker option type.
  • Hotfix - Added filter ot_type_date_time_picker_date_format to change the date format of the Date Time Picker option type.
Download this release

Release Info

Developer valendesigns
Plugin Icon wp plugin OptionTree
Version 2.3.2
Comparing to
See all releases

Code changes from version 2.3.1 to 2.3.2

assets/css/ot-admin.css CHANGED
@@ -2049,6 +2049,15 @@ li ul .format-setting-label {
2049
  .option-tree-layout-activate {
2050
  text-indent: -9999px;
2051
  }
 
 
 
 
 
 
 
 
 
2052
 
2053
  /* --------------------------------------------------
2054
  :: Select
2049
  .option-tree-layout-activate {
2050
  text-indent: -9999px;
2051
  }
2052
+ .option-tree-layout-activate .icon:before {
2053
+ content: "\e686";
2054
+ position: relative;
2055
+ top: 1px;
2056
+ }
2057
+ .option-tree-layout-activate.active .icon:before {
2058
+ content: "\e640";
2059
+ padding-left: 1px;
2060
+ }
2061
 
2062
  /* --------------------------------------------------
2063
  :: Select
assets/js/ot-admin.js CHANGED
@@ -552,18 +552,20 @@
552
  bind_colorpicker: function(field_id) {
553
  $('#'+field_id).wpColorPicker();
554
  },
555
- bind_date_picker: function(field_id) {
556
  $('#'+field_id).datepicker({
557
  showOtherMonths: true,
558
  showButtonPanel: true,
559
  currentText: option_tree.date_current,
560
- closeText: option_tree.date_close
 
561
  });
562
  },
563
- bind_date_time_picker: function(field_id) {
564
  $('#'+field_id).datetimepicker({
565
  showOtherMonths: true,
566
- closeText: option_tree.date_close
 
567
  });
568
  },
569
  fix_upload_parent: function() {
552
  bind_colorpicker: function(field_id) {
553
  $('#'+field_id).wpColorPicker();
554
  },
555
+ bind_date_picker: function(field_id, date_format) {
556
  $('#'+field_id).datepicker({
557
  showOtherMonths: true,
558
  showButtonPanel: true,
559
  currentText: option_tree.date_current,
560
+ closeText: option_tree.date_close,
561
+ dateFormat: date_format
562
  });
563
  },
564
+ bind_date_time_picker: function(field_id, date_format) {
565
  $('#'+field_id).datetimepicker({
566
  showOtherMonths: true,
567
+ closeText: option_tree.date_close,
568
+ dateFormat: date_format
569
  });
570
  },
571
  fix_upload_parent: function() {
assets/theme-mode/demo-theme-options.php CHANGED
@@ -15,7 +15,7 @@ function custom_theme_options() {
15
  /**
16
  * Get a copy of the saved settings array.
17
  */
18
- $saved_settings = get_option( 'option_tree_settings', array() );
19
 
20
  /**
21
  * Custom settings array that will eventually be
@@ -218,6 +218,21 @@ function custom_theme_options() {
218
  'condition' => '',
219
  'operator' => 'and'
220
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  array(
222
  'id' => 'demo_list_item',
223
  'label' => __( 'List Item', 'theme-text-domain' ),
@@ -622,11 +637,11 @@ function custom_theme_options() {
622
  );
623
 
624
  /* allow settings to be filtered before saving */
625
- $custom_settings = apply_filters( 'option_tree_settings_args', $custom_settings );
626
 
627
  /* settings are not the same update the DB */
628
  if ( $saved_settings !== $custom_settings ) {
629
- update_option( 'option_tree_settings', $custom_settings );
630
  }
631
 
632
  }
15
  /**
16
  * Get a copy of the saved settings array.
17
  */
18
+ $saved_settings = get_option( ot_settings_id(), array() );
19
 
20
  /**
21
  * Custom settings array that will eventually be
218
  'condition' => '',
219
  'operator' => 'and'
220
  ),
221
+ array(
222
+ 'id' => 'demo_gallery_shortcode',
223
+ 'label' => __( 'Gallery Shortcode', 'theme-text-domain' ),
224
+ 'desc' => sprintf( __( 'The Gallery option type can also be saved as a shortcode by adding %s to the class attribute. Using the Gallery option type in this manner will result in a better user experience as you\'re able to save the link, column, and order settings.', 'theme-text-domain' ), '<code>ot-gallery-shortcode</code>' ),
225
+ 'std' => '',
226
+ 'type' => 'gallery',
227
+ 'section' => 'option_types',
228
+ 'rows' => '',
229
+ 'post_type' => '',
230
+ 'taxonomy' => '',
231
+ 'min_max_step'=> '',
232
+ 'class' => 'ot-gallery-shortcode',
233
+ 'condition' => '',
234
+ 'operator' => 'and'
235
+ ),
236
  array(
237
  'id' => 'demo_list_item',
238
  'label' => __( 'List Item', 'theme-text-domain' ),
637
  );
638
 
639
  /* allow settings to be filtered before saving */
640
+ $custom_settings = apply_filters( ot_settings_id() . '_args', $custom_settings );
641
 
642
  /* settings are not the same update the DB */
643
  if ( $saved_settings !== $custom_settings ) {
644
+ update_option( ot_settings_id(), $custom_settings );
645
  }
646
 
647
  }
includes/ot-functions-admin.php CHANGED
@@ -467,7 +467,7 @@ if ( ! function_exists( 'ot_validate_setting' ) ) {
467
  $input['background-image'] = ot_validate_setting( $input['background-image'], 'upload', $field_id );
468
 
469
  // Loop over array and check for values
470
- foreach( $input as $key => $value ) {
471
  if ( ! empty( $value ) ) {
472
  $has_value = true;
473
  }
@@ -703,6 +703,7 @@ if ( ! function_exists( 'ot_create_media_post' ) ) {
703
  /* create post object */
704
  $_p = array();
705
  $_p['post_title'] = 'Media';
 
706
  $_p['post_status'] = 'private';
707
  $_p['post_type'] = 'option-tree';
708
  $_p['comment_status'] = 'closed';
@@ -3630,16 +3631,16 @@ if ( ! function_exists( 'ot_contextual_help_view' ) ) {
3630
  * @access public
3631
  * @since 2.0
3632
  */
3633
- if ( ! function_exists( 'ot_layouts_view' ) ) {
3634
 
3635
  function ot_layout_view( $key, $data = '', $active_layout = '' ) {
3636
-
3637
  return '
3638
  <div class="option-tree-setting">
3639
  <div class="open">' . ( isset( $key ) ? esc_attr( $key ) : __( 'Layout', 'option-tree' ) ) . '</div>
3640
  <div class="button-section">
3641
  <a href="javascript:void(0);" class="option-tree-layout-activate option-tree-ui-button button left-item' . ( $active_layout == $key ? ' active' : '' ) . '" title="' . __( 'Activate', 'option-tree' ) . '">
3642
- <span class="icon ot-icon-pencil"></span>' . __( 'Activate', 'option-tree' ) . '
3643
  </a>
3644
  <a href="javascript:void(0);" class="option-tree-setting-remove option-tree-ui-button button button-secondary light right-item" title="'. __( 'Delete', 'option-tree' ) . '">
3645
  <span class="icon ot-icon-trash"></span>' . __( 'Delete', 'option-tree' ) . '
467
  $input['background-image'] = ot_validate_setting( $input['background-image'], 'upload', $field_id );
468
 
469
  // Loop over array and check for values
470
+ foreach( (array) $input as $key => $value ) {
471
  if ( ! empty( $value ) ) {
472
  $has_value = true;
473
  }
703
  /* create post object */
704
  $_p = array();
705
  $_p['post_title'] = 'Media';
706
+ $_p['post_name'] = 'media';
707
  $_p['post_status'] = 'private';
708
  $_p['post_type'] = 'option-tree';
709
  $_p['comment_status'] = 'closed';
3631
  * @access public
3632
  * @since 2.0
3633
  */
3634
+ if ( ! function_exists( 'ot_layout_view' ) ) {
3635
 
3636
  function ot_layout_view( $key, $data = '', $active_layout = '' ) {
3637
+
3638
  return '
3639
  <div class="option-tree-setting">
3640
  <div class="open">' . ( isset( $key ) ? esc_attr( $key ) : __( 'Layout', 'option-tree' ) ) . '</div>
3641
  <div class="button-section">
3642
  <a href="javascript:void(0);" class="option-tree-layout-activate option-tree-ui-button button left-item' . ( $active_layout == $key ? ' active' : '' ) . '" title="' . __( 'Activate', 'option-tree' ) . '">
3643
+ <span class="icon ot-icon-check-empty"></span>' . __( 'Activate', 'option-tree' ) . '
3644
  </a>
3645
  <a href="javascript:void(0);" class="option-tree-setting-remove option-tree-ui-button button button-secondary light right-item" title="'. __( 'Delete', 'option-tree' ) . '">
3646
  <span class="icon ot-icon-trash"></span>' . __( 'Delete', 'option-tree' ) . '
includes/ot-functions-option-types.php CHANGED
@@ -644,11 +644,14 @@ if ( ! function_exists( 'ot_type_date_picker' ) ) {
644
  /* verify a description */
645
  $has_desc = $field_desc ? true : false;
646
 
 
 
 
647
  /* format setting outer wrapper */
648
  echo '<div class="format-setting type-date-picker ' . ( $has_desc ? 'has-desc' : 'no-desc' ) . '">';
649
 
650
  /* date picker JS */
651
- echo '<script>jQuery(document).ready(function($) { OT_UI.bind_date_picker("' . esc_attr( $field_id ) . '"); });</script>';
652
 
653
  /* description */
654
  echo $has_desc ? '<div class="description">' . htmlspecialchars_decode( $field_desc ) . '</div>' : '';
@@ -688,11 +691,14 @@ if ( ! function_exists( 'ot_type_date_time_picker' ) ) {
688
  /* verify a description */
689
  $has_desc = $field_desc ? true : false;
690
 
 
 
 
691
  /* format setting outer wrapper */
692
  echo '<div class="format-setting type-date-time-picker ' . ( $has_desc ? 'has-desc' : 'no-desc' ) . '">';
693
 
694
  /* date time picker JS */
695
- echo '<script>jQuery(document).ready(function($) { OT_UI.bind_date_time_picker("' . esc_attr( $field_id ) . '"); });</script>';
696
 
697
  /* description */
698
  echo $has_desc ? '<div class="description">' . htmlspecialchars_decode( $field_desc ) . '</div>' : '';
644
  /* verify a description */
645
  $has_desc = $field_desc ? true : false;
646
 
647
+ /* filter date format */
648
+ $date_format = apply_filters( 'ot_type_date_picker_date_format', 'yy-mm-dd', $field_id );
649
+
650
  /* format setting outer wrapper */
651
  echo '<div class="format-setting type-date-picker ' . ( $has_desc ? 'has-desc' : 'no-desc' ) . '">';
652
 
653
  /* date picker JS */
654
+ echo '<script>jQuery(document).ready(function($) { OT_UI.bind_date_picker("' . esc_attr( $field_id ) . '", "' . esc_attr( $date_format ) . '"); });</script>';
655
 
656
  /* description */
657
  echo $has_desc ? '<div class="description">' . htmlspecialchars_decode( $field_desc ) . '</div>' : '';
691
  /* verify a description */
692
  $has_desc = $field_desc ? true : false;
693
 
694
+ /* filter date format */
695
+ $date_format = apply_filters( 'ot_type_date_time_picker_date_format', 'yy-mm-dd', $field_id );
696
+
697
  /* format setting outer wrapper */
698
  echo '<div class="format-setting type-date-time-picker ' . ( $has_desc ? 'has-desc' : 'no-desc' ) . '">';
699
 
700
  /* date time picker JS */
701
+ echo '<script>jQuery(document).ready(function($) { OT_UI.bind_date_time_picker("' . esc_attr( $field_id ) . '", "' . esc_attr( $date_format ) . '"); });</script>';
702
 
703
  /* description */
704
  echo $has_desc ? '<div class="description">' . htmlspecialchars_decode( $field_desc ) . '</div>' : '';
languages/option-tree.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: OptionTree\n"
4
- "POT-Creation-Date: 2014-02-09 00:50-0800\n"
5
- "PO-Revision-Date: 2014-02-09 00:50-0800\n"
6
  "Last-Translator: Derek Herman <derek@valendesigns.com>\n"
7
  "Language-Team: Valen Designs\n"
8
  "Language: English\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
- #: ../ot-loader.php:670 ../assets/theme-mode/demo-theme-options.php:609
21
  #: ../includes/ot-functions-admin.php:623
22
  #: ../includes/ot-functions-docs-page.php:371
23
  #: ../includes/ot-functions-settings-page.php:170
@@ -61,7 +61,7 @@ msgid "More Options"
61
  msgstr ""
62
 
63
  #: ../assets/theme-mode/demo-meta-boxes.php:62
64
- #: ../assets/theme-mode/demo-theme-options.php:518
65
  #: ../includes/ot-functions-docs-page.php:266
66
  msgid "Text"
67
  msgstr ""
@@ -71,7 +71,7 @@ msgid "This is a demo Text field."
71
  msgstr ""
72
 
73
  #: ../assets/theme-mode/demo-meta-boxes.php:68
74
- #: ../assets/theme-mode/demo-theme-options.php:533
75
  #: ../includes/ot-functions-docs-page.php:269
76
  msgid "Textarea"
77
  msgstr ""
@@ -112,8 +112,8 @@ msgid ""
112
  msgstr ""
113
 
114
  #: ../assets/theme-mode/demo-theme-options.php:45
115
- #: ../assets/theme-mode/demo-theme-options.php:594
116
- #: ../includes/ot-functions-admin.php:3479
117
  #: ../includes/ot-functions-docs-page.php:111
118
  #: ../includes/ot-functions-docs-page.php:351
119
  msgid "and"
@@ -159,14 +159,14 @@ msgid ""
159
  msgstr ""
160
 
161
  #: ../assets/theme-mode/demo-theme-options.php:104
162
- #: ../assets/theme-mode/demo-theme-options.php:379
163
- #: ../assets/theme-mode/demo-theme-options.php:431
164
  msgid "No"
165
  msgstr ""
166
 
167
  #: ../assets/theme-mode/demo-theme-options.php:109
168
- #: ../assets/theme-mode/demo-theme-options.php:374
169
- #: ../assets/theme-mode/demo-theme-options.php:426
170
  msgid "Yes"
171
  msgstr ""
172
 
@@ -276,11 +276,24 @@ msgid ""
276
  msgstr ""
277
 
278
  #: ../assets/theme-mode/demo-theme-options.php:223
 
 
 
 
 
 
 
 
 
 
 
 
 
279
  #: ../includes/ot-functions-docs-page.php:159
280
  msgid "List Item"
281
  msgstr ""
282
 
283
- #: ../assets/theme-mode/demo-theme-options.php:224
284
  msgid ""
285
  "The List Item option type allows for a great deal of customization. You can "
286
  "add settings to the List Item and those settings will be displayed to the "
@@ -288,16 +301,16 @@ msgid ""
288
  "content or blocks of code for custom layouts."
289
  msgstr ""
290
 
291
- #: ../assets/theme-mode/demo-theme-options.php:238
292
  msgid "Content"
293
  msgstr ""
294
 
295
- #: ../assets/theme-mode/demo-theme-options.php:254
296
  #: ../includes/ot-functions-docs-page.php:162
297
  msgid "Measurement"
298
  msgstr ""
299
 
300
- #: ../assets/theme-mode/demo-theme-options.php:255
301
  #: ../includes/ot-functions-docs-page.php:163
302
  #, php-format
303
  msgid ""
@@ -307,24 +320,24 @@ msgid ""
307
  "However, you can change them with the %s filter."
308
  msgstr ""
309
 
310
- #: ../assets/theme-mode/demo-theme-options.php:269
311
  #: ../includes/ot-functions-docs-page.php:193
312
  msgid "Numeric Slider"
313
  msgstr ""
314
 
315
- #: ../assets/theme-mode/demo-theme-options.php:270
316
  #: ../includes/ot-functions-docs-page.php:194
317
  msgid ""
318
  "The Numeric Slider option type displays a jQuery UI slider. It will return a "
319
  "single numerical value for use in a custom function or loop."
320
  msgstr ""
321
 
322
- #: ../assets/theme-mode/demo-theme-options.php:284
323
  #: ../includes/ot-functions-docs-page.php:196
324
  msgid "On/Off"
325
  msgstr ""
326
 
327
- #: ../assets/theme-mode/demo-theme-options.php:285
328
  #: ../includes/ot-functions-docs-page.php:197
329
  #, php-format
330
  msgid ""
@@ -332,60 +345,60 @@ msgid ""
332
  "things on or off. The saved return value is either %s or %s."
333
  msgstr ""
334
 
335
- #: ../assets/theme-mode/demo-theme-options.php:299
336
  #: ../includes/ot-functions-docs-page.php:199
337
  msgid "Page Checkbox"
338
  msgstr ""
339
 
340
- #: ../assets/theme-mode/demo-theme-options.php:300
341
  #: ../includes/ot-functions-docs-page.php:200
342
  msgid ""
343
  "The Page Checkbox option type displays a list of page IDs. It allows the "
344
  "user to check multiple page IDs for use in a custom function or loop."
345
  msgstr ""
346
 
347
- #: ../assets/theme-mode/demo-theme-options.php:314
348
  #: ../includes/ot-functions-docs-page.php:202
349
  msgid "Page Select"
350
  msgstr ""
351
 
352
- #: ../assets/theme-mode/demo-theme-options.php:315
353
  #: ../includes/ot-functions-docs-page.php:203
354
  msgid ""
355
  "The Page Select option type displays a list of page IDs. It will return a "
356
  "single page ID for use in a custom function or loop."
357
  msgstr ""
358
 
359
- #: ../assets/theme-mode/demo-theme-options.php:329
360
  #: ../includes/ot-functions-docs-page.php:205
361
  msgid "Post Checkbox"
362
  msgstr ""
363
 
364
- #: ../assets/theme-mode/demo-theme-options.php:330
365
  #: ../includes/ot-functions-docs-page.php:206
366
  msgid ""
367
  "The Post Checkbox option type displays a list of post IDs. It allows the "
368
  "user to check multiple post IDs for use in a custom function or loop."
369
  msgstr ""
370
 
371
- #: ../assets/theme-mode/demo-theme-options.php:344
372
  #: ../includes/ot-functions-docs-page.php:208
373
  msgid "Post Select"
374
  msgstr ""
375
 
376
- #: ../assets/theme-mode/demo-theme-options.php:345
377
  #: ../includes/ot-functions-docs-page.php:209
378
  msgid ""
379
  "The Post Select option type displays a list of post IDs. It will return a "
380
  "single post ID for use in a custom function or loop."
381
  msgstr ""
382
 
383
- #: ../assets/theme-mode/demo-theme-options.php:359
384
  #: ../includes/ot-functions-docs-page.php:211
385
  msgid "Radio"
386
  msgstr ""
387
 
388
- #: ../assets/theme-mode/demo-theme-options.php:360
389
  #: ../includes/ot-functions-docs-page.php:212
390
  msgid ""
391
  "The Radio option type displays a group of choices. It allows the user to "
@@ -393,17 +406,17 @@ msgid ""
393
  "function or loop."
394
  msgstr ""
395
 
396
- #: ../assets/theme-mode/demo-theme-options.php:384
397
- #: ../assets/theme-mode/demo-theme-options.php:436
398
  msgid "Maybe"
399
  msgstr ""
400
 
401
- #: ../assets/theme-mode/demo-theme-options.php:391
402
  #: ../includes/ot-functions-docs-page.php:214
403
  msgid "Radio Image"
404
  msgstr ""
405
 
406
- #: ../assets/theme-mode/demo-theme-options.php:392
407
  #: ../includes/ot-functions-docs-page.php:215
408
  #, php-format
409
  msgid ""
@@ -412,28 +425,28 @@ msgid ""
412
  "using the choices array."
413
  msgstr ""
414
 
415
- #: ../assets/theme-mode/demo-theme-options.php:406
416
  #: ../includes/ot-functions-docs-page.php:241
417
  msgid "Select"
418
  msgstr ""
419
 
420
- #: ../assets/theme-mode/demo-theme-options.php:407
421
  #: ../includes/ot-functions-docs-page.php:242
422
  msgid ""
423
  "The Select option type is used to list anything you want that would be "
424
  "chosen from a select list."
425
  msgstr ""
426
 
427
- #: ../assets/theme-mode/demo-theme-options.php:421
428
  msgid "-- Choose One --"
429
  msgstr ""
430
 
431
- #: ../assets/theme-mode/demo-theme-options.php:443
432
  #: ../includes/ot-functions-docs-page.php:244
433
  msgid "Sidebar Select"
434
  msgstr ""
435
 
436
- #: ../assets/theme-mode/demo-theme-options.php:444
437
  #: ../includes/ot-functions-docs-page.php:245
438
  #, php-format
439
  msgid ""
@@ -443,7 +456,7 @@ msgid ""
443
  "on a specific content area."
444
  msgstr ""
445
 
446
- #: ../assets/theme-mode/demo-theme-options.php:444
447
  #: ../includes/ot-functions-docs-page.php:246
448
  #, php-format
449
  msgid ""
@@ -453,12 +466,12 @@ msgid ""
453
  "using a regular expression if we have a common name like %s."
454
  msgstr ""
455
 
456
- #: ../assets/theme-mode/demo-theme-options.php:458
457
  #: ../includes/ot-functions-docs-page.php:254
458
  msgid "Tag Checkbox"
459
  msgstr ""
460
 
461
- #: ../assets/theme-mode/demo-theme-options.php:459
462
  #: ../includes/ot-functions-docs-page.php:255
463
  msgid ""
464
  "The Tag Checkbox option type displays a list of tag IDs. It allows the user "
@@ -466,12 +479,12 @@ msgid ""
466
  "a custom function or loop."
467
  msgstr ""
468
 
469
- #: ../assets/theme-mode/demo-theme-options.php:473
470
  #: ../includes/ot-functions-docs-page.php:257
471
  msgid "Tag Select"
472
  msgstr ""
473
 
474
- #: ../assets/theme-mode/demo-theme-options.php:474
475
  #: ../includes/ot-functions-docs-page.php:258
476
  msgid ""
477
  "The Tag Select option type displays a list of tag IDs. It allows the user to "
@@ -479,12 +492,12 @@ msgid ""
479
  "function or loop."
480
  msgstr ""
481
 
482
- #: ../assets/theme-mode/demo-theme-options.php:488
483
  #: ../includes/ot-functions-docs-page.php:260
484
  msgid "Taxonomy Checkbox"
485
  msgstr ""
486
 
487
- #: ../assets/theme-mode/demo-theme-options.php:489
488
  #: ../includes/ot-functions-docs-page.php:261
489
  msgid ""
490
  "The Taxonomy Checkbox option type displays a list of taxonomy IDs. It allows "
@@ -492,12 +505,12 @@ msgid ""
492
  "array for use in a custom function or loop."
493
  msgstr ""
494
 
495
- #: ../assets/theme-mode/demo-theme-options.php:503
496
  #: ../includes/ot-functions-docs-page.php:263
497
  msgid "Taxonomy Select"
498
  msgstr ""
499
 
500
- #: ../assets/theme-mode/demo-theme-options.php:504
501
  #: ../includes/ot-functions-docs-page.php:264
502
  msgid ""
503
  "The Taxonomy Select option type displays a list of taxonomy IDs. It allows "
@@ -505,14 +518,14 @@ msgid ""
505
  "in a custom function or loop."
506
  msgstr ""
507
 
508
- #: ../assets/theme-mode/demo-theme-options.php:519
509
  #: ../includes/ot-functions-docs-page.php:267
510
  msgid ""
511
  "The Text option type is used to save string values. For example, any "
512
  "optional or required text that is of reasonably short character length."
513
  msgstr ""
514
 
515
- #: ../assets/theme-mode/demo-theme-options.php:534
516
  #: ../includes/ot-functions-docs-page.php:270
517
  #, php-format
518
  msgid ""
@@ -521,24 +534,24 @@ msgid ""
521
  "the how it is displayed. For example, you can filter %s, %s, %s, and %s."
522
  msgstr ""
523
 
524
- #: ../assets/theme-mode/demo-theme-options.php:548
525
  #: ../includes/ot-functions-docs-page.php:328
526
  msgid "Textarea Simple"
527
  msgstr ""
528
 
529
- #: ../assets/theme-mode/demo-theme-options.php:549
530
  #: ../includes/ot-functions-docs-page.php:329
531
  msgid ""
532
  "The Textarea Simple option type is a large string value used for custom code "
533
  "or text in the theme. The Textarea Simple does not have a WYSIWYG editor."
534
  msgstr ""
535
 
536
- #: ../assets/theme-mode/demo-theme-options.php:563
537
  #: ../includes/ot-functions-docs-page.php:344
538
  msgid "Textblock"
539
  msgstr ""
540
 
541
- #: ../assets/theme-mode/demo-theme-options.php:564
542
  #: ../includes/ot-functions-docs-page.php:345
543
  msgid ""
544
  "The Textblock option type is used only on the Theme Option page. It will "
@@ -548,12 +561,12 @@ msgid ""
548
  "themes template files as it does not save a value."
549
  msgstr ""
550
 
551
- #: ../assets/theme-mode/demo-theme-options.php:578
552
  #: ../includes/ot-functions-docs-page.php:347
553
  msgid "Textblock Titled"
554
  msgstr ""
555
 
556
- #: ../assets/theme-mode/demo-theme-options.php:579
557
  #: ../includes/ot-functions-docs-page.php:348
558
  msgid ""
559
  "The Textblock Titled option type is used only on the Theme Option page. It "
@@ -563,12 +576,12 @@ msgid ""
563
  "this in your themes template files as it does not save a value."
564
  msgstr ""
565
 
566
- #: ../assets/theme-mode/demo-theme-options.php:593
567
  #: ../includes/ot-functions-docs-page.php:350
568
  msgid "Typography"
569
  msgstr ""
570
 
571
- #: ../assets/theme-mode/demo-theme-options.php:594
572
  #: ../includes/ot-functions-docs-page.php:351
573
  #, php-format
574
  msgid ""
@@ -580,12 +593,12 @@ msgid ""
580
  "filters allow you to fine tune the select lists for your specific needs."
581
  msgstr ""
582
 
583
- #: ../assets/theme-mode/demo-theme-options.php:608
584
  #: ../includes/ot-functions-docs-page.php:370
585
  msgid "Upload"
586
  msgstr ""
587
 
588
- #: ../assets/theme-mode/demo-theme-options.php:609
589
  #: ../includes/ot-functions-docs-page.php:371
590
  #, php-format
591
  msgid ""
@@ -735,7 +748,7 @@ msgstr ""
735
 
736
  #: ../includes/ot-functions-admin.php:624
737
  #: ../includes/ot-functions-option-types.php:239
738
- #: ../includes/ot-functions-option-types.php:2227
739
  msgid "Remove Media"
740
  msgstr ""
741
 
@@ -760,17 +773,17 @@ msgid "Sorry, you can't have settings three levels deep."
760
  msgstr ""
761
 
762
  #: ../includes/ot-functions-admin.php:630
763
- #: ../includes/ot-functions-option-types.php:775
764
  msgid "Delete Gallery"
765
  msgstr ""
766
 
767
  #: ../includes/ot-functions-admin.php:631
768
- #: ../includes/ot-functions-option-types.php:776
769
  msgid "Edit Gallery"
770
  msgstr ""
771
 
772
  #: ../includes/ot-functions-admin.php:632
773
- #: ../includes/ot-functions-option-types.php:783
774
  msgid "Create Gallery"
775
  msgstr ""
776
 
@@ -794,226 +807,226 @@ msgstr ""
794
  msgid "Option Tree"
795
  msgstr ""
796
 
797
- #: ../includes/ot-functions-admin.php:821
798
  msgid "General"
799
  msgstr ""
800
 
801
- #: ../includes/ot-functions-admin.php:827
802
  msgid "Sample Text Field Label"
803
  msgstr ""
804
 
805
- #: ../includes/ot-functions-admin.php:828
806
  msgid "Description for the sample text field."
807
  msgstr ""
808
 
809
- #: ../includes/ot-functions-admin.php:2045
810
  msgid "Settings updated."
811
  msgstr ""
812
 
813
- #: ../includes/ot-functions-admin.php:2049
814
  msgid "Settings could not be saved."
815
  msgstr ""
816
 
817
- #: ../includes/ot-functions-admin.php:2057
818
  msgid "Settings Imported."
819
  msgstr ""
820
 
821
- #: ../includes/ot-functions-admin.php:2061
822
  msgid "Settings could not be imported."
823
  msgstr ""
824
 
825
- #: ../includes/ot-functions-admin.php:2068
826
  msgid "Data Imported."
827
  msgstr ""
828
 
829
- #: ../includes/ot-functions-admin.php:2072
830
  msgid "Data could not be imported."
831
  msgstr ""
832
 
833
- #: ../includes/ot-functions-admin.php:2080
834
  msgid "Layouts Imported."
835
  msgstr ""
836
 
837
- #: ../includes/ot-functions-admin.php:2084
838
  msgid "Layouts could not be imported."
839
  msgstr ""
840
 
841
- #: ../includes/ot-functions-admin.php:2092
842
  msgid "Layouts Updated."
843
  msgstr ""
844
 
845
- #: ../includes/ot-functions-admin.php:2096
846
  msgid "Layouts could not be updated."
847
  msgstr ""
848
 
849
- #: ../includes/ot-functions-admin.php:2100
850
  msgid "Layouts have been deleted."
851
  msgstr ""
852
 
853
- #: ../includes/ot-functions-admin.php:2106
854
  msgid "Layout activated."
855
  msgstr ""
856
 
857
- #: ../includes/ot-functions-admin.php:2673
858
  msgid "Left Sidebar"
859
  msgstr ""
860
 
861
- #: ../includes/ot-functions-admin.php:2678
862
  msgid "Right Sidebar"
863
  msgstr ""
864
 
865
- #: ../includes/ot-functions-admin.php:2683
866
  msgid "Full Width (no sidebar)"
867
  msgstr ""
868
 
869
- #: ../includes/ot-functions-admin.php:2688
870
  msgid "Dual Sidebar"
871
  msgstr ""
872
 
873
- #: ../includes/ot-functions-admin.php:2693
874
  msgid "Left Dual Sidebar"
875
  msgstr ""
876
 
877
- #: ../includes/ot-functions-admin.php:2698
878
  msgid "Right Dual Sidebar"
879
  msgstr ""
880
 
881
- #: ../includes/ot-functions-admin.php:2728
882
- #: ../includes/ot-functions-admin.php:2789
883
  msgid "Image"
884
  msgstr ""
885
 
886
- #: ../includes/ot-functions-admin.php:2739
887
- #: ../includes/ot-functions-admin.php:2795
888
  msgid "Link"
889
  msgstr ""
890
 
891
- #: ../includes/ot-functions-admin.php:2750
892
- #: ../includes/ot-functions-admin.php:2801
893
  #: ../includes/ot-functions-docs-page.php:43
894
  #: ../includes/ot-functions-docs-page.php:401
895
  #: ../includes/ot-functions-docs-page.php:451
896
  msgid "Description"
897
  msgstr ""
898
 
899
- #: ../includes/ot-functions-admin.php:3284
900
  msgid "edit"
901
  msgstr ""
902
 
903
- #: ../includes/ot-functions-admin.php:3285
904
- #: ../includes/ot-functions-admin.php:3353
905
  #: ../includes/ot-functions-admin.php:3354
906
- #: ../includes/ot-functions-admin.php:3516
907
  #: ../includes/ot-functions-admin.php:3517
908
- #: ../includes/ot-functions-admin.php:3582
909
  #: ../includes/ot-functions-admin.php:3583
910
- #: ../includes/ot-functions-admin.php:3710
911
  #: ../includes/ot-functions-admin.php:3711
 
912
  msgid "Edit"
913
  msgstr ""
914
 
915
- #: ../includes/ot-functions-admin.php:3287
916
  #: ../includes/ot-functions-admin.php:3288
917
- #: ../includes/ot-functions-admin.php:3356
918
  #: ../includes/ot-functions-admin.php:3357
919
- #: ../includes/ot-functions-admin.php:3519
920
  #: ../includes/ot-functions-admin.php:3520
921
- #: ../includes/ot-functions-admin.php:3585
922
  #: ../includes/ot-functions-admin.php:3586
923
- #: ../includes/ot-functions-admin.php:3644
924
  #: ../includes/ot-functions-admin.php:3645
925
- #: ../includes/ot-functions-admin.php:3713
926
  #: ../includes/ot-functions-admin.php:3714
 
927
  msgid "Delete"
928
  msgstr ""
929
 
930
- #: ../includes/ot-functions-admin.php:3294
931
  msgid ""
932
  "<strong>Section Title</strong>: Displayed as a menu item on the Theme "
933
  "Options page."
934
  msgstr ""
935
 
936
- #: ../includes/ot-functions-admin.php:3302
937
  msgid ""
938
  "<strong>Section ID</strong>: A unique lower case alphanumeric string, "
939
  "underscores allowed."
940
  msgstr ""
941
 
942
- #: ../includes/ot-functions-admin.php:3363
943
  msgid ""
944
  "<strong>Label</strong>: Displayed as the label of a form element on the "
945
  "Theme Options page."
946
  msgstr ""
947
 
948
- #: ../includes/ot-functions-admin.php:3371
949
- #: ../includes/ot-functions-admin.php:3600
950
  msgid ""
951
  "<strong>ID</strong>: A unique lower case alphanumeric string, underscores "
952
  "allowed."
953
  msgstr ""
954
 
955
- #: ../includes/ot-functions-admin.php:3379
956
  msgid ""
957
  "<strong>Type</strong>: Choose one of the available option types from the "
958
  "dropdown."
959
  msgstr ""
960
 
961
- #: ../includes/ot-functions-admin.php:3390
962
  msgid ""
963
  "<strong>Description</strong>: Enter a detailed description for the users to "
964
  "read on the Theme Options page, HTML is allowed. This is also where you "
965
  "enter content for both the Textblock & Textblock Titled option types."
966
  msgstr ""
967
 
968
- #: ../includes/ot-functions-admin.php:3398
969
  msgid ""
970
  "<strong>Choices</strong>: This will only affect the following option types: "
971
  "Checkbox, Radio, Select & Select Image."
972
  msgstr ""
973
 
974
- #: ../includes/ot-functions-admin.php:3403
975
  msgid "Add Choice"
976
  msgstr ""
977
 
978
- #: ../includes/ot-functions-admin.php:3409
979
  msgid ""
980
  "<strong>Settings</strong>: This will only affect the List Item option type."
981
  msgstr ""
982
 
983
- #: ../includes/ot-functions-admin.php:3414
984
  #: ../includes/ot-functions-settings-page.php:93
985
  msgid "Add Setting"
986
  msgstr ""
987
 
988
- #: ../includes/ot-functions-admin.php:3420
989
  msgid ""
990
  "<strong>Standard</strong>: Setting the standard value for your option only "
991
  "works for some option types. Read the <code>OptionTree->Documentation</code> "
992
  "for more information on which ones."
993
  msgstr ""
994
 
995
- #: ../includes/ot-functions-admin.php:3428
996
  msgid ""
997
  "<strong>Rows</strong>: Enter a numeric value for the number of rows in your "
998
  "textarea. This will only affect the following option types: CSS, Textarea, & "
999
  "Textarea Simple."
1000
  msgstr ""
1001
 
1002
- #: ../includes/ot-functions-admin.php:3436
1003
  msgid ""
1004
  "<strong>Post Type</strong>: Add a comma separated list of post type like "
1005
  "'post,page'. This will only affect the following option types: Custom Post "
1006
  "Type Checkbox, & Custom Post Type Select."
1007
  msgstr ""
1008
 
1009
- #: ../includes/ot-functions-admin.php:3444
1010
  msgid ""
1011
  "<strong>Taxonomy</strong>: Add a comma separated list of any registered "
1012
  "taxonomy like 'category,post_tag'. This will only affect the following "
1013
  "option types: Taxonomy Checkbox, & Taxonomy Select."
1014
  msgstr ""
1015
 
1016
- #: ../includes/ot-functions-admin.php:3452
1017
  msgid ""
1018
  "<strong>Min, Max, & Step</strong>: Add a comma separated list of options in "
1019
  "the following format <code>0,100,1</code> (slide from <code>0-100</code> in "
@@ -1022,11 +1035,11 @@ msgid ""
1022
  "type."
1023
  msgstr ""
1024
 
1025
- #: ../includes/ot-functions-admin.php:3460
1026
  msgid "<strong>CSS Class</strong>: Add and optional class to this option type."
1027
  msgstr ""
1028
 
1029
- #: ../includes/ot-functions-admin.php:3468
1030
  #, php-format
1031
  msgid ""
1032
  "<strong>Condition</strong>: Add a comma separated list (no spaces) of "
@@ -1035,56 +1048,56 @@ msgid ""
1035
  "placeholder for your condition, which can be in the form of %s."
1036
  msgstr ""
1037
 
1038
- #: ../includes/ot-functions-admin.php:3476
1039
  msgid ""
1040
  "<strong>Operator</strong>: Choose the logical operator to compute the result "
1041
  "of the conditions."
1042
  msgstr ""
1043
 
1044
- #: ../includes/ot-functions-admin.php:3480
1045
  msgid "or"
1046
  msgstr ""
1047
 
1048
- #: ../includes/ot-functions-admin.php:3526
1049
  #: ../includes/ot-functions-docs-page.php:29
1050
  msgid "Label"
1051
  msgstr ""
1052
 
1053
- #: ../includes/ot-functions-admin.php:3536
1054
  msgid "Value"
1055
  msgstr ""
1056
 
1057
- #: ../includes/ot-functions-admin.php:3546
1058
  msgid "Image Source (Radio Image only)"
1059
  msgstr ""
1060
 
1061
- #: ../includes/ot-functions-admin.php:3592
1062
  msgid ""
1063
  "<strong>Title</strong>: Displayed as a contextual help menu item on the "
1064
  "Theme Options page."
1065
  msgstr ""
1066
 
1067
- #: ../includes/ot-functions-admin.php:3608
1068
  msgid ""
1069
  "<strong>Content</strong>: Enter the HTML content about this contextual help "
1070
  "item displayed on the Theme Option page for end users to read."
1071
  msgstr ""
1072
 
1073
- #: ../includes/ot-functions-admin.php:3639
1074
  msgid "Layout"
1075
  msgstr ""
1076
 
1077
- #: ../includes/ot-functions-admin.php:3641
1078
  #: ../includes/ot-functions-admin.php:3642
 
1079
  msgid "Activate"
1080
  msgstr ""
1081
 
1082
- #: ../includes/ot-functions-admin.php:3678 ../includes/ot-meta-box-api.php:202
1083
  #: ../includes/ot-settings-api.php:595
1084
  msgid "Title"
1085
  msgstr ""
1086
 
1087
- #: ../includes/ot-functions-admin.php:3877
1088
  msgid "New Layout"
1089
  msgstr ""
1090
 
@@ -1796,7 +1809,7 @@ msgid "background-size"
1796
  msgstr ""
1797
 
1798
  #: ../includes/ot-functions-option-types.php:227
1799
- #: ../includes/ot-functions-option-types.php:2215
1800
  msgid "Add Media"
1801
  msgstr ""
1802
 
@@ -1807,58 +1820,58 @@ msgstr ""
1807
 
1808
  #: ../includes/ot-functions-option-types.php:346
1809
  #: ../includes/ot-functions-option-types.php:607
1810
- #: ../includes/ot-functions-option-types.php:1130
1811
- #: ../includes/ot-functions-option-types.php:1313
1812
- #: ../includes/ot-functions-option-types.php:1673
1813
- #: ../includes/ot-functions-option-types.php:1788
1814
  msgid "Choose One"
1815
  msgstr ""
1816
 
1817
  #: ../includes/ot-functions-option-types.php:555
1818
  #: ../includes/ot-functions-option-types.php:613
1819
- #: ../includes/ot-functions-option-types.php:1264
1820
- #: ../includes/ot-functions-option-types.php:1319
1821
  msgid "No Posts Found"
1822
  msgstr ""
1823
 
1824
- #: ../includes/ot-functions-option-types.php:855
1825
- #: ../includes/ot-functions-option-types.php:1208
1826
  msgid "Add New"
1827
  msgstr ""
1828
 
1829
- #: ../includes/ot-functions-option-types.php:858
1830
- #: ../includes/ot-functions-option-types.php:1211
1831
  msgid "You can re-order with drag & drop, the order will update after saving."
1832
  msgstr ""
1833
 
1834
- #: ../includes/ot-functions-option-types.php:1009
1835
  msgid "On"
1836
  msgstr ""
1837
 
1838
- #: ../includes/ot-functions-option-types.php:1013
1839
  msgid "Off"
1840
  msgstr ""
1841
 
1842
- #: ../includes/ot-functions-option-types.php:1081
1843
- #: ../includes/ot-functions-option-types.php:1136
1844
  msgid "No Pages Found"
1845
  msgstr ""
1846
 
1847
- #: ../includes/ot-functions-option-types.php:1535
1848
  msgid "Choose Sidebar"
1849
  msgstr ""
1850
 
1851
- #: ../includes/ot-functions-option-types.php:1540
1852
  msgid "No Sidebars"
1853
  msgstr ""
1854
 
1855
- #: ../includes/ot-functions-option-types.php:1624
1856
- #: ../includes/ot-functions-option-types.php:1678
1857
  msgid "No Tags Found"
1858
  msgstr ""
1859
 
1860
- #: ../includes/ot-functions-option-types.php:1736
1861
- #: ../includes/ot-functions-option-types.php:1793
1862
  msgid "No Taxonomies Found"
1863
  msgstr ""
1864
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: OptionTree\n"
4
+ "POT-Creation-Date: 2014-02-25 02:23-0800\n"
5
+ "PO-Revision-Date: 2014-02-25 02:23-0800\n"
6
  "Last-Translator: Derek Herman <derek@valendesigns.com>\n"
7
  "Language-Team: Valen Designs\n"
8
  "Language: English\n"
17
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../ot-loader.php:670 ../assets/theme-mode/demo-theme-options.php:624
21
  #: ../includes/ot-functions-admin.php:623
22
  #: ../includes/ot-functions-docs-page.php:371
23
  #: ../includes/ot-functions-settings-page.php:170
61
  msgstr ""
62
 
63
  #: ../assets/theme-mode/demo-meta-boxes.php:62
64
+ #: ../assets/theme-mode/demo-theme-options.php:533
65
  #: ../includes/ot-functions-docs-page.php:266
66
  msgid "Text"
67
  msgstr ""
71
  msgstr ""
72
 
73
  #: ../assets/theme-mode/demo-meta-boxes.php:68
74
+ #: ../assets/theme-mode/demo-theme-options.php:548
75
  #: ../includes/ot-functions-docs-page.php:269
76
  msgid "Textarea"
77
  msgstr ""
112
  msgstr ""
113
 
114
  #: ../assets/theme-mode/demo-theme-options.php:45
115
+ #: ../assets/theme-mode/demo-theme-options.php:609
116
+ #: ../includes/ot-functions-admin.php:3480
117
  #: ../includes/ot-functions-docs-page.php:111
118
  #: ../includes/ot-functions-docs-page.php:351
119
  msgid "and"
159
  msgstr ""
160
 
161
  #: ../assets/theme-mode/demo-theme-options.php:104
162
+ #: ../assets/theme-mode/demo-theme-options.php:394
163
+ #: ../assets/theme-mode/demo-theme-options.php:446
164
  msgid "No"
165
  msgstr ""
166
 
167
  #: ../assets/theme-mode/demo-theme-options.php:109
168
+ #: ../assets/theme-mode/demo-theme-options.php:389
169
+ #: ../assets/theme-mode/demo-theme-options.php:441
170
  msgid "Yes"
171
  msgstr ""
172
 
276
  msgstr ""
277
 
278
  #: ../assets/theme-mode/demo-theme-options.php:223
279
+ msgid "Gallery Shortcode"
280
+ msgstr ""
281
+
282
+ #: ../assets/theme-mode/demo-theme-options.php:224
283
+ #, php-format
284
+ msgid ""
285
+ "The Gallery option type can also be saved as a shortcode by adding %s to the "
286
+ "class attribute. Using the Gallery option type in this manner will result in "
287
+ "a better user experience as you're able to save the link, column, and order "
288
+ "settings."
289
+ msgstr ""
290
+
291
+ #: ../assets/theme-mode/demo-theme-options.php:238
292
  #: ../includes/ot-functions-docs-page.php:159
293
  msgid "List Item"
294
  msgstr ""
295
 
296
+ #: ../assets/theme-mode/demo-theme-options.php:239
297
  msgid ""
298
  "The List Item option type allows for a great deal of customization. You can "
299
  "add settings to the List Item and those settings will be displayed to the "
301
  "content or blocks of code for custom layouts."
302
  msgstr ""
303
 
304
+ #: ../assets/theme-mode/demo-theme-options.php:253
305
  msgid "Content"
306
  msgstr ""
307
 
308
+ #: ../assets/theme-mode/demo-theme-options.php:269
309
  #: ../includes/ot-functions-docs-page.php:162
310
  msgid "Measurement"
311
  msgstr ""
312
 
313
+ #: ../assets/theme-mode/demo-theme-options.php:270
314
  #: ../includes/ot-functions-docs-page.php:163
315
  #, php-format
316
  msgid ""
320
  "However, you can change them with the %s filter."
321
  msgstr ""
322
 
323
+ #: ../assets/theme-mode/demo-theme-options.php:284
324
  #: ../includes/ot-functions-docs-page.php:193
325
  msgid "Numeric Slider"
326
  msgstr ""
327
 
328
+ #: ../assets/theme-mode/demo-theme-options.php:285
329
  #: ../includes/ot-functions-docs-page.php:194
330
  msgid ""
331
  "The Numeric Slider option type displays a jQuery UI slider. It will return a "
332
  "single numerical value for use in a custom function or loop."
333
  msgstr ""
334
 
335
+ #: ../assets/theme-mode/demo-theme-options.php:299
336
  #: ../includes/ot-functions-docs-page.php:196
337
  msgid "On/Off"
338
  msgstr ""
339
 
340
+ #: ../assets/theme-mode/demo-theme-options.php:300
341
  #: ../includes/ot-functions-docs-page.php:197
342
  #, php-format
343
  msgid ""
345
  "things on or off. The saved return value is either %s or %s."
346
  msgstr ""
347
 
348
+ #: ../assets/theme-mode/demo-theme-options.php:314
349
  #: ../includes/ot-functions-docs-page.php:199
350
  msgid "Page Checkbox"
351
  msgstr ""
352
 
353
+ #: ../assets/theme-mode/demo-theme-options.php:315
354
  #: ../includes/ot-functions-docs-page.php:200
355
  msgid ""
356
  "The Page Checkbox option type displays a list of page IDs. It allows the "
357
  "user to check multiple page IDs for use in a custom function or loop."
358
  msgstr ""
359
 
360
+ #: ../assets/theme-mode/demo-theme-options.php:329
361
  #: ../includes/ot-functions-docs-page.php:202
362
  msgid "Page Select"
363
  msgstr ""
364
 
365
+ #: ../assets/theme-mode/demo-theme-options.php:330
366
  #: ../includes/ot-functions-docs-page.php:203
367
  msgid ""
368
  "The Page Select option type displays a list of page IDs. It will return a "
369
  "single page ID for use in a custom function or loop."
370
  msgstr ""
371
 
372
+ #: ../assets/theme-mode/demo-theme-options.php:344
373
  #: ../includes/ot-functions-docs-page.php:205
374
  msgid "Post Checkbox"
375
  msgstr ""
376
 
377
+ #: ../assets/theme-mode/demo-theme-options.php:345
378
  #: ../includes/ot-functions-docs-page.php:206
379
  msgid ""
380
  "The Post Checkbox option type displays a list of post IDs. It allows the "
381
  "user to check multiple post IDs for use in a custom function or loop."
382
  msgstr ""
383
 
384
+ #: ../assets/theme-mode/demo-theme-options.php:359
385
  #: ../includes/ot-functions-docs-page.php:208
386
  msgid "Post Select"
387
  msgstr ""
388
 
389
+ #: ../assets/theme-mode/demo-theme-options.php:360
390
  #: ../includes/ot-functions-docs-page.php:209
391
  msgid ""
392
  "The Post Select option type displays a list of post IDs. It will return a "
393
  "single post ID for use in a custom function or loop."
394
  msgstr ""
395
 
396
+ #: ../assets/theme-mode/demo-theme-options.php:374
397
  #: ../includes/ot-functions-docs-page.php:211
398
  msgid "Radio"
399
  msgstr ""
400
 
401
+ #: ../assets/theme-mode/demo-theme-options.php:375
402
  #: ../includes/ot-functions-docs-page.php:212
403
  msgid ""
404
  "The Radio option type displays a group of choices. It allows the user to "
406
  "function or loop."
407
  msgstr ""
408
 
409
+ #: ../assets/theme-mode/demo-theme-options.php:399
410
+ #: ../assets/theme-mode/demo-theme-options.php:451
411
  msgid "Maybe"
412
  msgstr ""
413
 
414
+ #: ../assets/theme-mode/demo-theme-options.php:406
415
  #: ../includes/ot-functions-docs-page.php:214
416
  msgid "Radio Image"
417
  msgstr ""
418
 
419
+ #: ../assets/theme-mode/demo-theme-options.php:407
420
  #: ../includes/ot-functions-docs-page.php:215
421
  #, php-format
422
  msgid ""
425
  "using the choices array."
426
  msgstr ""
427
 
428
+ #: ../assets/theme-mode/demo-theme-options.php:421
429
  #: ../includes/ot-functions-docs-page.php:241
430
  msgid "Select"
431
  msgstr ""
432
 
433
+ #: ../assets/theme-mode/demo-theme-options.php:422
434
  #: ../includes/ot-functions-docs-page.php:242
435
  msgid ""
436
  "The Select option type is used to list anything you want that would be "
437
  "chosen from a select list."
438
  msgstr ""
439
 
440
+ #: ../assets/theme-mode/demo-theme-options.php:436
441
  msgid "-- Choose One --"
442
  msgstr ""
443
 
444
+ #: ../assets/theme-mode/demo-theme-options.php:458
445
  #: ../includes/ot-functions-docs-page.php:244
446
  msgid "Sidebar Select"
447
  msgstr ""
448
 
449
+ #: ../assets/theme-mode/demo-theme-options.php:459
450
  #: ../includes/ot-functions-docs-page.php:245
451
  #, php-format
452
  msgid ""
456
  "on a specific content area."
457
  msgstr ""
458
 
459
+ #: ../assets/theme-mode/demo-theme-options.php:459
460
  #: ../includes/ot-functions-docs-page.php:246
461
  #, php-format
462
  msgid ""
466
  "using a regular expression if we have a common name like %s."
467
  msgstr ""
468
 
469
+ #: ../assets/theme-mode/demo-theme-options.php:473
470
  #: ../includes/ot-functions-docs-page.php:254
471
  msgid "Tag Checkbox"
472
  msgstr ""
473
 
474
+ #: ../assets/theme-mode/demo-theme-options.php:474
475
  #: ../includes/ot-functions-docs-page.php:255
476
  msgid ""
477
  "The Tag Checkbox option type displays a list of tag IDs. It allows the user "
479
  "a custom function or loop."
480
  msgstr ""
481
 
482
+ #: ../assets/theme-mode/demo-theme-options.php:488
483
  #: ../includes/ot-functions-docs-page.php:257
484
  msgid "Tag Select"
485
  msgstr ""
486
 
487
+ #: ../assets/theme-mode/demo-theme-options.php:489
488
  #: ../includes/ot-functions-docs-page.php:258
489
  msgid ""
490
  "The Tag Select option type displays a list of tag IDs. It allows the user to "
492
  "function or loop."
493
  msgstr ""
494
 
495
+ #: ../assets/theme-mode/demo-theme-options.php:503
496
  #: ../includes/ot-functions-docs-page.php:260
497
  msgid "Taxonomy Checkbox"
498
  msgstr ""
499
 
500
+ #: ../assets/theme-mode/demo-theme-options.php:504
501
  #: ../includes/ot-functions-docs-page.php:261
502
  msgid ""
503
  "The Taxonomy Checkbox option type displays a list of taxonomy IDs. It allows "
505
  "array for use in a custom function or loop."
506
  msgstr ""
507
 
508
+ #: ../assets/theme-mode/demo-theme-options.php:518
509
  #: ../includes/ot-functions-docs-page.php:263
510
  msgid "Taxonomy Select"
511
  msgstr ""
512
 
513
+ #: ../assets/theme-mode/demo-theme-options.php:519
514
  #: ../includes/ot-functions-docs-page.php:264
515
  msgid ""
516
  "The Taxonomy Select option type displays a list of taxonomy IDs. It allows "
518
  "in a custom function or loop."
519
  msgstr ""
520
 
521
+ #: ../assets/theme-mode/demo-theme-options.php:534
522
  #: ../includes/ot-functions-docs-page.php:267
523
  msgid ""
524
  "The Text option type is used to save string values. For example, any "
525
  "optional or required text that is of reasonably short character length."
526
  msgstr ""
527
 
528
+ #: ../assets/theme-mode/demo-theme-options.php:549
529
  #: ../includes/ot-functions-docs-page.php:270
530
  #, php-format
531
  msgid ""
534
  "the how it is displayed. For example, you can filter %s, %s, %s, and %s."
535
  msgstr ""
536
 
537
+ #: ../assets/theme-mode/demo-theme-options.php:563
538
  #: ../includes/ot-functions-docs-page.php:328
539
  msgid "Textarea Simple"
540
  msgstr ""
541
 
542
+ #: ../assets/theme-mode/demo-theme-options.php:564
543
  #: ../includes/ot-functions-docs-page.php:329
544
  msgid ""
545
  "The Textarea Simple option type is a large string value used for custom code "
546
  "or text in the theme. The Textarea Simple does not have a WYSIWYG editor."
547
  msgstr ""
548
 
549
+ #: ../assets/theme-mode/demo-theme-options.php:578
550
  #: ../includes/ot-functions-docs-page.php:344
551
  msgid "Textblock"
552
  msgstr ""
553
 
554
+ #: ../assets/theme-mode/demo-theme-options.php:579
555
  #: ../includes/ot-functions-docs-page.php:345
556
  msgid ""
557
  "The Textblock option type is used only on the Theme Option page. It will "
561
  "themes template files as it does not save a value."
562
  msgstr ""
563
 
564
+ #: ../assets/theme-mode/demo-theme-options.php:593
565
  #: ../includes/ot-functions-docs-page.php:347
566
  msgid "Textblock Titled"
567
  msgstr ""
568
 
569
+ #: ../assets/theme-mode/demo-theme-options.php:594
570
  #: ../includes/ot-functions-docs-page.php:348
571
  msgid ""
572
  "The Textblock Titled option type is used only on the Theme Option page. It "
576
  "this in your themes template files as it does not save a value."
577
  msgstr ""
578
 
579
+ #: ../assets/theme-mode/demo-theme-options.php:608
580
  #: ../includes/ot-functions-docs-page.php:350
581
  msgid "Typography"
582
  msgstr ""
583
 
584
+ #: ../assets/theme-mode/demo-theme-options.php:609
585
  #: ../includes/ot-functions-docs-page.php:351
586
  #, php-format
587
  msgid ""
593
  "filters allow you to fine tune the select lists for your specific needs."
594
  msgstr ""
595
 
596
+ #: ../assets/theme-mode/demo-theme-options.php:623
597
  #: ../includes/ot-functions-docs-page.php:370
598
  msgid "Upload"
599
  msgstr ""
600
 
601
+ #: ../assets/theme-mode/demo-theme-options.php:624
602
  #: ../includes/ot-functions-docs-page.php:371
603
  #, php-format
604
  msgid ""
748
 
749
  #: ../includes/ot-functions-admin.php:624
750
  #: ../includes/ot-functions-option-types.php:239
751
+ #: ../includes/ot-functions-option-types.php:2249
752
  msgid "Remove Media"
753
  msgstr ""
754
 
773
  msgstr ""
774
 
775
  #: ../includes/ot-functions-admin.php:630
776
+ #: ../includes/ot-functions-option-types.php:794
777
  msgid "Delete Gallery"
778
  msgstr ""
779
 
780
  #: ../includes/ot-functions-admin.php:631
781
+ #: ../includes/ot-functions-option-types.php:795
782
  msgid "Edit Gallery"
783
  msgstr ""
784
 
785
  #: ../includes/ot-functions-admin.php:632
786
+ #: ../includes/ot-functions-option-types.php:802
787
  msgid "Create Gallery"
788
  msgstr ""
789
 
807
  msgid "Option Tree"
808
  msgstr ""
809
 
810
+ #: ../includes/ot-functions-admin.php:822
811
  msgid "General"
812
  msgstr ""
813
 
814
+ #: ../includes/ot-functions-admin.php:828
815
  msgid "Sample Text Field Label"
816
  msgstr ""
817
 
818
+ #: ../includes/ot-functions-admin.php:829
819
  msgid "Description for the sample text field."
820
  msgstr ""
821
 
822
+ #: ../includes/ot-functions-admin.php:2046
823
  msgid "Settings updated."
824
  msgstr ""
825
 
826
+ #: ../includes/ot-functions-admin.php:2050
827
  msgid "Settings could not be saved."
828
  msgstr ""
829
 
830
+ #: ../includes/ot-functions-admin.php:2058
831
  msgid "Settings Imported."
832
  msgstr ""
833
 
834
+ #: ../includes/ot-functions-admin.php:2062
835
  msgid "Settings could not be imported."
836
  msgstr ""
837
 
838
+ #: ../includes/ot-functions-admin.php:2069
839
  msgid "Data Imported."
840
  msgstr ""
841
 
842
+ #: ../includes/ot-functions-admin.php:2073
843
  msgid "Data could not be imported."
844
  msgstr ""
845
 
846
+ #: ../includes/ot-functions-admin.php:2081
847
  msgid "Layouts Imported."
848
  msgstr ""
849
 
850
+ #: ../includes/ot-functions-admin.php:2085
851
  msgid "Layouts could not be imported."
852
  msgstr ""
853
 
854
+ #: ../includes/ot-functions-admin.php:2093
855
  msgid "Layouts Updated."
856
  msgstr ""
857
 
858
+ #: ../includes/ot-functions-admin.php:2097
859
  msgid "Layouts could not be updated."
860
  msgstr ""
861
 
862
+ #: ../includes/ot-functions-admin.php:2101
863
  msgid "Layouts have been deleted."
864
  msgstr ""
865
 
866
+ #: ../includes/ot-functions-admin.php:2107
867
  msgid "Layout activated."
868
  msgstr ""
869
 
870
+ #: ../includes/ot-functions-admin.php:2674
871
  msgid "Left Sidebar"
872
  msgstr ""
873
 
874
+ #: ../includes/ot-functions-admin.php:2679
875
  msgid "Right Sidebar"
876
  msgstr ""
877
 
878
+ #: ../includes/ot-functions-admin.php:2684
879
  msgid "Full Width (no sidebar)"
880
  msgstr ""
881
 
882
+ #: ../includes/ot-functions-admin.php:2689
883
  msgid "Dual Sidebar"
884
  msgstr ""
885
 
886
+ #: ../includes/ot-functions-admin.php:2694
887
  msgid "Left Dual Sidebar"
888
  msgstr ""
889
 
890
+ #: ../includes/ot-functions-admin.php:2699
891
  msgid "Right Dual Sidebar"
892
  msgstr ""
893
 
894
+ #: ../includes/ot-functions-admin.php:2729
895
+ #: ../includes/ot-functions-admin.php:2790
896
  msgid "Image"
897
  msgstr ""
898
 
899
+ #: ../includes/ot-functions-admin.php:2740
900
+ #: ../includes/ot-functions-admin.php:2796
901
  msgid "Link"
902
  msgstr ""
903
 
904
+ #: ../includes/ot-functions-admin.php:2751
905
+ #: ../includes/ot-functions-admin.php:2802
906
  #: ../includes/ot-functions-docs-page.php:43
907
  #: ../includes/ot-functions-docs-page.php:401
908
  #: ../includes/ot-functions-docs-page.php:451
909
  msgid "Description"
910
  msgstr ""
911
 
912
+ #: ../includes/ot-functions-admin.php:3285
913
  msgid "edit"
914
  msgstr ""
915
 
916
+ #: ../includes/ot-functions-admin.php:3286
 
917
  #: ../includes/ot-functions-admin.php:3354
918
+ #: ../includes/ot-functions-admin.php:3355
919
  #: ../includes/ot-functions-admin.php:3517
920
+ #: ../includes/ot-functions-admin.php:3518
921
  #: ../includes/ot-functions-admin.php:3583
922
+ #: ../includes/ot-functions-admin.php:3584
923
  #: ../includes/ot-functions-admin.php:3711
924
+ #: ../includes/ot-functions-admin.php:3712
925
  msgid "Edit"
926
  msgstr ""
927
 
 
928
  #: ../includes/ot-functions-admin.php:3288
929
+ #: ../includes/ot-functions-admin.php:3289
930
  #: ../includes/ot-functions-admin.php:3357
931
+ #: ../includes/ot-functions-admin.php:3358
932
  #: ../includes/ot-functions-admin.php:3520
933
+ #: ../includes/ot-functions-admin.php:3521
934
  #: ../includes/ot-functions-admin.php:3586
935
+ #: ../includes/ot-functions-admin.php:3587
936
  #: ../includes/ot-functions-admin.php:3645
937
+ #: ../includes/ot-functions-admin.php:3646
938
  #: ../includes/ot-functions-admin.php:3714
939
+ #: ../includes/ot-functions-admin.php:3715
940
  msgid "Delete"
941
  msgstr ""
942
 
943
+ #: ../includes/ot-functions-admin.php:3295
944
  msgid ""
945
  "<strong>Section Title</strong>: Displayed as a menu item on the Theme "
946
  "Options page."
947
  msgstr ""
948
 
949
+ #: ../includes/ot-functions-admin.php:3303
950
  msgid ""
951
  "<strong>Section ID</strong>: A unique lower case alphanumeric string, "
952
  "underscores allowed."
953
  msgstr ""
954
 
955
+ #: ../includes/ot-functions-admin.php:3364
956
  msgid ""
957
  "<strong>Label</strong>: Displayed as the label of a form element on the "
958
  "Theme Options page."
959
  msgstr ""
960
 
961
+ #: ../includes/ot-functions-admin.php:3372
962
+ #: ../includes/ot-functions-admin.php:3601
963
  msgid ""
964
  "<strong>ID</strong>: A unique lower case alphanumeric string, underscores "
965
  "allowed."
966
  msgstr ""
967
 
968
+ #: ../includes/ot-functions-admin.php:3380
969
  msgid ""
970
  "<strong>Type</strong>: Choose one of the available option types from the "
971
  "dropdown."
972
  msgstr ""
973
 
974
+ #: ../includes/ot-functions-admin.php:3391
975
  msgid ""
976
  "<strong>Description</strong>: Enter a detailed description for the users to "
977
  "read on the Theme Options page, HTML is allowed. This is also where you "
978
  "enter content for both the Textblock & Textblock Titled option types."
979
  msgstr ""
980
 
981
+ #: ../includes/ot-functions-admin.php:3399
982
  msgid ""
983
  "<strong>Choices</strong>: This will only affect the following option types: "
984
  "Checkbox, Radio, Select & Select Image."
985
  msgstr ""
986
 
987
+ #: ../includes/ot-functions-admin.php:3404
988
  msgid "Add Choice"
989
  msgstr ""
990
 
991
+ #: ../includes/ot-functions-admin.php:3410
992
  msgid ""
993
  "<strong>Settings</strong>: This will only affect the List Item option type."
994
  msgstr ""
995
 
996
+ #: ../includes/ot-functions-admin.php:3415
997
  #: ../includes/ot-functions-settings-page.php:93
998
  msgid "Add Setting"
999
  msgstr ""
1000
 
1001
+ #: ../includes/ot-functions-admin.php:3421
1002
  msgid ""
1003
  "<strong>Standard</strong>: Setting the standard value for your option only "
1004
  "works for some option types. Read the <code>OptionTree->Documentation</code> "
1005
  "for more information on which ones."
1006
  msgstr ""
1007
 
1008
+ #: ../includes/ot-functions-admin.php:3429
1009
  msgid ""
1010
  "<strong>Rows</strong>: Enter a numeric value for the number of rows in your "
1011
  "textarea. This will only affect the following option types: CSS, Textarea, & "
1012
  "Textarea Simple."
1013
  msgstr ""
1014
 
1015
+ #: ../includes/ot-functions-admin.php:3437
1016
  msgid ""
1017
  "<strong>Post Type</strong>: Add a comma separated list of post type like "
1018
  "'post,page'. This will only affect the following option types: Custom Post "
1019
  "Type Checkbox, & Custom Post Type Select."
1020
  msgstr ""
1021
 
1022
+ #: ../includes/ot-functions-admin.php:3445
1023
  msgid ""
1024
  "<strong>Taxonomy</strong>: Add a comma separated list of any registered "
1025
  "taxonomy like 'category,post_tag'. This will only affect the following "
1026
  "option types: Taxonomy Checkbox, & Taxonomy Select."
1027
  msgstr ""
1028
 
1029
+ #: ../includes/ot-functions-admin.php:3453
1030
  msgid ""
1031
  "<strong>Min, Max, & Step</strong>: Add a comma separated list of options in "
1032
  "the following format <code>0,100,1</code> (slide from <code>0-100</code> in "
1035
  "type."
1036
  msgstr ""
1037
 
1038
+ #: ../includes/ot-functions-admin.php:3461
1039
  msgid "<strong>CSS Class</strong>: Add and optional class to this option type."
1040
  msgstr ""
1041
 
1042
+ #: ../includes/ot-functions-admin.php:3469
1043
  #, php-format
1044
  msgid ""
1045
  "<strong>Condition</strong>: Add a comma separated list (no spaces) of "
1048
  "placeholder for your condition, which can be in the form of %s."
1049
  msgstr ""
1050
 
1051
+ #: ../includes/ot-functions-admin.php:3477
1052
  msgid ""
1053
  "<strong>Operator</strong>: Choose the logical operator to compute the result "
1054
  "of the conditions."
1055
  msgstr ""
1056
 
1057
+ #: ../includes/ot-functions-admin.php:3481
1058
  msgid "or"
1059
  msgstr ""
1060
 
1061
+ #: ../includes/ot-functions-admin.php:3527
1062
  #: ../includes/ot-functions-docs-page.php:29
1063
  msgid "Label"
1064
  msgstr ""
1065
 
1066
+ #: ../includes/ot-functions-admin.php:3537
1067
  msgid "Value"
1068
  msgstr ""
1069
 
1070
+ #: ../includes/ot-functions-admin.php:3547
1071
  msgid "Image Source (Radio Image only)"
1072
  msgstr ""
1073
 
1074
+ #: ../includes/ot-functions-admin.php:3593
1075
  msgid ""
1076
  "<strong>Title</strong>: Displayed as a contextual help menu item on the "
1077
  "Theme Options page."
1078
  msgstr ""
1079
 
1080
+ #: ../includes/ot-functions-admin.php:3609
1081
  msgid ""
1082
  "<strong>Content</strong>: Enter the HTML content about this contextual help "
1083
  "item displayed on the Theme Option page for end users to read."
1084
  msgstr ""
1085
 
1086
+ #: ../includes/ot-functions-admin.php:3640
1087
  msgid "Layout"
1088
  msgstr ""
1089
 
 
1090
  #: ../includes/ot-functions-admin.php:3642
1091
+ #: ../includes/ot-functions-admin.php:3643
1092
  msgid "Activate"
1093
  msgstr ""
1094
 
1095
+ #: ../includes/ot-functions-admin.php:3679 ../includes/ot-meta-box-api.php:202
1096
  #: ../includes/ot-settings-api.php:595
1097
  msgid "Title"
1098
  msgstr ""
1099
 
1100
+ #: ../includes/ot-functions-admin.php:3878
1101
  msgid "New Layout"
1102
  msgstr ""
1103
 
1809
  msgstr ""
1810
 
1811
  #: ../includes/ot-functions-option-types.php:227
1812
+ #: ../includes/ot-functions-option-types.php:2237
1813
  msgid "Add Media"
1814
  msgstr ""
1815
 
1820
 
1821
  #: ../includes/ot-functions-option-types.php:346
1822
  #: ../includes/ot-functions-option-types.php:607
1823
+ #: ../includes/ot-functions-option-types.php:1149
1824
+ #: ../includes/ot-functions-option-types.php:1332
1825
+ #: ../includes/ot-functions-option-types.php:1695
1826
+ #: ../includes/ot-functions-option-types.php:1810
1827
  msgid "Choose One"
1828
  msgstr ""
1829
 
1830
  #: ../includes/ot-functions-option-types.php:555
1831
  #: ../includes/ot-functions-option-types.php:613
1832
+ #: ../includes/ot-functions-option-types.php:1283
1833
+ #: ../includes/ot-functions-option-types.php:1338
1834
  msgid "No Posts Found"
1835
  msgstr ""
1836
 
1837
+ #: ../includes/ot-functions-option-types.php:874
1838
+ #: ../includes/ot-functions-option-types.php:1227
1839
  msgid "Add New"
1840
  msgstr ""
1841
 
1842
+ #: ../includes/ot-functions-option-types.php:877
1843
+ #: ../includes/ot-functions-option-types.php:1230
1844
  msgid "You can re-order with drag & drop, the order will update after saving."
1845
  msgstr ""
1846
 
1847
+ #: ../includes/ot-functions-option-types.php:1028
1848
  msgid "On"
1849
  msgstr ""
1850
 
1851
+ #: ../includes/ot-functions-option-types.php:1032
1852
  msgid "Off"
1853
  msgstr ""
1854
 
1855
+ #: ../includes/ot-functions-option-types.php:1100
1856
+ #: ../includes/ot-functions-option-types.php:1155
1857
  msgid "No Pages Found"
1858
  msgstr ""
1859
 
1860
+ #: ../includes/ot-functions-option-types.php:1557
1861
  msgid "Choose Sidebar"
1862
  msgstr ""
1863
 
1864
+ #: ../includes/ot-functions-option-types.php:1562
1865
  msgid "No Sidebars"
1866
  msgstr ""
1867
 
1868
+ #: ../includes/ot-functions-option-types.php:1646
1869
+ #: ../includes/ot-functions-option-types.php:1700
1870
  msgid "No Tags Found"
1871
  msgstr ""
1872
 
1873
+ #: ../includes/ot-functions-option-types.php:1758
1874
+ #: ../includes/ot-functions-option-types.php:1815
1875
  msgid "No Taxonomies Found"
1876
  msgstr ""
1877
 
ot-loader.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: OptionTree
4
  * Plugin URI: http://wp.envato.com
5
  * Description: Theme Options UI Builder for WordPress. A simple way to create & save Theme Options and Meta Boxes for free or premium themes.
6
- * Version: 2.3.1
7
  * Author: Derek Herman
8
  * Author URI: http://valendesigns.com
9
  * License: GPLv3
@@ -142,7 +142,7 @@ if ( ! class_exists( 'OT_Loader' ) ) {
142
  /**
143
  * Current Version number.
144
  */
145
- define( 'OT_VERSION', '2.3.1' );
146
 
147
  /**
148
  * For developers: Theme mode.
3
  * Plugin Name: OptionTree
4
  * Plugin URI: http://wp.envato.com
5
  * Description: Theme Options UI Builder for WordPress. A simple way to create & save Theme Options and Meta Boxes for free or premium themes.
6
+ * Version: 2.3.2
7
  * Author: Derek Herman
8
  * Author URI: http://valendesigns.com
9
  * License: GPLv3
142
  /**
143
  * Current Version number.
144
  */
145
+ define( 'OT_VERSION', '2.3.2' );
146
 
147
  /**
148
  * For developers: Theme mode.
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://bit.ly/NuXI3T
4
  Tags: options, theme options, meta boxes
5
  Requires at least: 3.5
6
  Tested up to: 3.8.1
7
- Stable tag: 2.3.1
8
  License: GPLv3
9
 
10
  Theme Options UI Builder for WordPress. A simple way to create & save Theme Options and Meta Boxes for free or premium themes.
@@ -106,6 +106,13 @@ There sure is, and I'm glad you asked. Download and activate the [OptionTree The
106
 
107
  == Changelog ==
108
 
 
 
 
 
 
 
 
109
  = 2.3.1 =
110
  * Hotfix - Fixed a bug with the Gallery option type that would show attachments in the media window when none had been added yet.
111
  * Hotfix - Added the option to save the Gallery as a shortcode by adding `ot-gallery-shortcode` to the elements `class` attribute.
4
  Tags: options, theme options, meta boxes
5
  Requires at least: 3.5
6
  Tested up to: 3.8.1
7
+ Stable tag: 2.3.2
8
  License: GPLv3
9
 
10
  Theme Options UI Builder for WordPress. A simple way to create & save Theme Options and Meta Boxes for free or premium themes.
106
 
107
  == Changelog ==
108
 
109
+ = 2.3.2 =
110
+ * Hotfix - Fixed an issue with the `ot_create_media_post` function creating multiple `option-tree` posts.
111
+ * Hotfix - Change the icon used by the layout management option type to differentiate it from the edit button.
112
+ * Hotfix - Suppress PHP warning in the Background option type "Invalid argument supplied for foreach()". Contributors via github @tomkwok.
113
+ * Hotfix - Added filter `ot_type_date_picker_date_format` to change the date format of the Date Picker option type.
114
+ * Hotfix - Added filter `ot_type_date_time_picker_date_format` to change the date format of the Date Time Picker option type.
115
+
116
  = 2.3.1 =
117
  * Hotfix - Fixed a bug with the Gallery option type that would show attachments in the media window when none had been added yet.
118
  * Hotfix - Added the option to save the Gallery as a shortcode by adding `ot-gallery-shortcode` to the elements `class` attribute.