Version Description
ACF Extended Pro 0.8.8.7:
- Module: Templates - Fixed top-level Seamless Clones values not being correctly loaded
- Module: Templates - Fixed Templates List columns data
- Module: Global Conditional Logic - Fixed Field Group Locations when using a Global Field on the "Add Term" screen
- Module: Global Conditional Logic - Enhanced Field Group Locations to only use matched groups when using the same field on different screens
- Module: Global Conditional Logic - Fixed ACF Ajax Screen rules being incorrectly applied
- Field: Date Range Picker - Fixed "Default Start/End" settings not working correctly
- Field: Date Range Picker - Added "Show Dropdowns" settings
- Field: Date Range Picker - Enhanced dropdowns CSS
- Field: Flexible Content - Grid System - Renamed "Wrap" setting to "No Wrap" for consistency
- Field: Payment - Fixed Conditional Logic not working correctly
- Field: Payment - Fixed "Incorrect Payment Data" in Summary Render when there was no items saved
- Field: Payment - Enhanced Summary Render & Data validation
- Field: Payment - Fixed recursive "Payment Field Selection" when payment fields are inside sub fields
- Field: Post Field - Taxonomy - Fixed initialization with non-hierarchical taxonomy
- Field: Post Field - Editor - Added delayed re-initialization
- Field: Post Object - Fixed "Allow Creation" setting not triggering Conditional Logic on post creation
- Field: WYSIWYG - Added "Auto Init" setting when using "Delay Init"
ACF Extended Basic 0.8.8.7:
- Module: Ajax Authorbox - Fixed disappearing authorbox when ACF Ajax Screen is triggered (category selection etc...)
- Module: Clean Orphan Meta - Enhanced logic for cloned fields with sub fields
- Module: Forms - Enhanced
acfe/form/prepare
arguments when usingreturn false
- Module: Developer Mode - Fixed potential PHP notice when using Local Field Groups
- Module: Developer Mode -
ACFE_DEV
&ACFE_SUPER_DEV
constants are now uppercase - Module: Options UI - Fixed
orderby
column sanitization - Module: Single Meta - Fixed Preview Changes not working correctly with Single Meta
- Field: Columns - Fixed CSS when used inside Tabs Aligned Left
- Field: Flexible Content - Fixed "Modal Select Size" being always forced to "Full"
- Field: Flexible Content - Fixed sub fields CSS when displayed inside a "Modal Edit" from the Sidebar
- Field: Flexible Content - Fixed sidebar Gutenberg title CSS glitch
- Field: WYSIWYG - Fixed "Delay init" setting being automatically initialized on page load
- Field Groups: Fixed potential PHP notice when no Field Group are saved in DB in the "Sync Available" Tab
- Locations: Post Type list/Taxonomy list/User list/Attachment list - Fixed Flexible Content field initialization
- Locations: Post Type list/Taxonomy list/User list/Attachment list - Fixed fields CSS padding
- General: Added
acfe_get_field_descendants()
&acfe_map_any_field()
helpers - General: Fixed native ACF 5.11 bug with multiple front-end forms which wrongly trigger validation when one one field was requried
- General: Fixed
acfe/validate_save_post
to correctly work withacfe_add_validation_error()
helper - General: Enhanced Select2 CSS integration for ACF 5.10/5.11.3/5.11.4 and YOAST
- General: Enhanced french translation
- General: Code Cleanup & Formatting
Download this release
Release Info
Developer | hwk-fr |
Plugin | Advanced Custom Fields: Extended |
Version | 0.8.8.7 |
Comparing to | |
See all releases |
Code changes from version 0.8.8.6 to 0.8.8.7
- acf-extended.php +3 -2
- assets/css/acfe-admin.css +267 -199
- assets/css/acfe-admin.min.css +1 -1
- assets/css/acfe-input.css +21 -11
- assets/css/acfe-input.min.css +1 -1
- assets/css/acfe.css +33 -0
- assets/css/acfe.min.css +1 -1
- assets/js/acfe-input.js +417 -335
- assets/js/acfe-input.min.js +1 -1
- includes/acfe-field-functions.php +90 -13
- includes/acfe-helper-functions.php +20 -2
- includes/acfe-meta-functions.php +25 -0
- includes/field-groups/field-groups.php +5 -0
- includes/fields-settings/bidirectional.php +46 -48
- includes/fields/field-flexible-content.php +1 -0
- includes/fields/field-wysiwyg.php +36 -0
- includes/forms/form-attachment.php +11 -9
- includes/forms/form-post.php +11 -9
- includes/forms/form-taxonomy.php +11 -9
- includes/forms/form-user.php +11 -9
- includes/hooks.php +1 -1
- includes/modules/author.php +11 -11
- includes/modules/dev.php +1 -1
- includes/modules/forms-front.php +9 -6
- includes/modules/module.php +21 -21
- includes/modules/options.class.php +9 -5
- includes/modules/single-meta.php +9 -4
- lang/acfe-fr_FR.mo +0 -0
- lang/acfe-fr_FR.po +199 -188
- lang/acfe.pot +194 -186
- readme.txt +47 -1
acf-extended.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Plugin Name: Advanced Custom Fields: Extended
|
4 |
* Description: All-in-one enhancement suite that improves WordPress & Advanced Custom Fields.
|
5 |
-
* Version: 0.8.8.
|
6 |
* Author: ACF Extended
|
7 |
* Author URI: https://www.acf-extended.com
|
8 |
* Text Domain: acfe
|
@@ -17,7 +17,7 @@ if(!class_exists('ACFE')):
|
|
17 |
class ACFE{
|
18 |
|
19 |
// Vars
|
20 |
-
var $version = '0.8.8.
|
21 |
|
22 |
/*
|
23 |
* Construct
|
@@ -199,6 +199,7 @@ class ACFE{
|
|
199 |
acfe_include('includes/fields/field-repeater.php');
|
200 |
acfe_include('includes/fields/field-select.php');
|
201 |
acfe_include('includes/fields/field-textarea.php');
|
|
|
202 |
|
203 |
/*
|
204 |
* Fields settings
|
2 |
/**
|
3 |
* Plugin Name: Advanced Custom Fields: Extended
|
4 |
* Description: All-in-one enhancement suite that improves WordPress & Advanced Custom Fields.
|
5 |
+
* Version: 0.8.8.7
|
6 |
* Author: ACF Extended
|
7 |
* Author URI: https://www.acf-extended.com
|
8 |
* Text Domain: acfe
|
17 |
class ACFE{
|
18 |
|
19 |
// Vars
|
20 |
+
var $version = '0.8.8.7';
|
21 |
|
22 |
/*
|
23 |
* Construct
|
199 |
acfe_include('includes/fields/field-repeater.php');
|
200 |
acfe_include('includes/fields/field-select.php');
|
201 |
acfe_include('includes/fields/field-textarea.php');
|
202 |
+
acfe_include('includes/fields/field-wysiwyg.php');
|
203 |
|
204 |
/*
|
205 |
* Fields settings
|
assets/css/acfe-admin.css
CHANGED
@@ -367,8 +367,14 @@ body.post-type-acfe-template .column-acfe-terms {
|
|
367 |
width: 120px
|
368 |
}
|
369 |
|
370 |
-
|
371 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
372 |
}
|
373 |
|
374 |
.edit-post-layout__metaboxes:not(:empty) {
|
@@ -603,25 +609,25 @@ body.post-type-acfe-template .column-acfe-terms {
|
|
603 |
content: "\f106"
|
604 |
}
|
605 |
|
606 |
-
.acfe-
|
607 |
cursor: initial
|
608 |
}
|
609 |
|
610 |
-
.acfe-
|
611 |
-
|
612 |
-
display: none
|
613 |
}
|
614 |
|
615 |
-
.acfe-
|
616 |
-
|
617 |
-
|
618 |
}
|
619 |
|
620 |
-
.acfe-
|
621 |
-
|
|
|
622 |
}
|
623 |
|
624 |
-
.acfe-
|
625 |
min-width: auto !important
|
626 |
}
|
627 |
|
@@ -782,193 +788,6 @@ body.post-type-acfe-template .column-acfe-terms {
|
|
782 |
}
|
783 |
}
|
784 |
|
785 |
-
body:not(.acf-admin-5-3) .acf-field .select2-container .select2-selection {
|
786 |
-
border-color: #dfdfdf !important;
|
787 |
-
border-radius: 0 !important
|
788 |
-
}
|
789 |
-
|
790 |
-
body:not(.acf-admin-5-3) .acf-field .select2-container .select2-selection__choice {
|
791 |
-
border-color: #dfdfdf !important;
|
792 |
-
border-radius: 0 !important
|
793 |
-
}
|
794 |
-
|
795 |
-
body:not(.acf-admin-5-3) .acf-field .select2-dropdown {
|
796 |
-
border-color: #dfdfdf !important;
|
797 |
-
border-radius: 0 !important
|
798 |
-
}
|
799 |
-
|
800 |
-
body:not(.acf-admin-5-3) .acf-field .select2-container .select2-search--inline .select2-search__field {
|
801 |
-
margin-top: 0 !important
|
802 |
-
}
|
803 |
-
|
804 |
-
.acf-field .select2-container .select2-selection--single {
|
805 |
-
border-radius: 3px !important;
|
806 |
-
height: 30px !important;
|
807 |
-
outline: 0
|
808 |
-
}
|
809 |
-
|
810 |
-
.acf-field .select2-container.select2-container--open .select2-selection--single,
|
811 |
-
.acf-field .select2-container:focus .select2-selection--single {
|
812 |
-
border-color: #007cba !important;
|
813 |
-
color: #016087 !important;
|
814 |
-
-webkit-box-shadow: 0 0 0 1px #007cba !important;
|
815 |
-
box-shadow: 0 0 0 1px #007cba !important
|
816 |
-
}
|
817 |
-
|
818 |
-
.acf-field .select2-container .select2-selection--single .select2-selection__rendered {
|
819 |
-
font-size: 14px;
|
820 |
-
height: 28px;
|
821 |
-
line-height: 27px !important;
|
822 |
-
padding-right: 23px !important
|
823 |
-
}
|
824 |
-
|
825 |
-
.acf-field .select2-container .select2-selection--single .select2-selection__clear {
|
826 |
-
line-height: 26px;
|
827 |
-
height: 28px;
|
828 |
-
font-size: 16px
|
829 |
-
}
|
830 |
-
|
831 |
-
.acf-field .select2-container--default .select2-selection--single .select2-selection__placeholder {
|
832 |
-
color: #444
|
833 |
-
}
|
834 |
-
|
835 |
-
.acf-field .select2-container--default .select2-selection--single .select2-selection__arrow {
|
836 |
-
height: 28px !important
|
837 |
-
}
|
838 |
-
|
839 |
-
.acf-field .select2-container--default .select2-selection--single .select2-selection__arrow b {
|
840 |
-
background: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') no-repeat;
|
841 |
-
background-size: 16px 16px;
|
842 |
-
border: 0 !important;
|
843 |
-
width: 16px !important;
|
844 |
-
height: 16px !important;
|
845 |
-
margin-left: -11px !important;
|
846 |
-
margin-top: -7px !important
|
847 |
-
}
|
848 |
-
|
849 |
-
.acf-field .select2-container .select2-search--inline .select2-search__field {
|
850 |
-
margin-top: 4px !important;
|
851 |
-
font-size: 14px !important;
|
852 |
-
padding-left: 6px !important
|
853 |
-
}
|
854 |
-
|
855 |
-
.acf-field .select2-container .select2-search--inline .select2-search__field::-webkit-input-placeholder {
|
856 |
-
color: #444
|
857 |
-
}
|
858 |
-
|
859 |
-
.acf-field .select2-container .select2-search--inline .select2-search__field::-moz-placeholder {
|
860 |
-
color: #444
|
861 |
-
}
|
862 |
-
|
863 |
-
.acf-field .select2-container .select2-search--inline .select2-search__field:-ms-input-placeholder {
|
864 |
-
color: #444
|
865 |
-
}
|
866 |
-
|
867 |
-
.acf-field .select2-container .select2-search--inline .select2-search__field::-ms-input-placeholder {
|
868 |
-
color: #444
|
869 |
-
}
|
870 |
-
|
871 |
-
.acf-field .select2-container .select2-search--inline .select2-search__field::placeholder {
|
872 |
-
color: #444
|
873 |
-
}
|
874 |
-
|
875 |
-
.acf-field .select2-container .select2-selection__choice+.select2-search--inline .select2-search__field {
|
876 |
-
padding-left: 2px !important
|
877 |
-
}
|
878 |
-
|
879 |
-
.acf-field .select2-container .select2-selection--multiple {
|
880 |
-
min-height: 30px !important;
|
881 |
-
line-height: 1;
|
882 |
-
border-radius: 3px !important
|
883 |
-
}
|
884 |
-
|
885 |
-
.acf-field .select2-container--default .select2-selection--multiple .select2-selection__rendered {
|
886 |
-
padding: 0 2px !important
|
887 |
-
}
|
888 |
-
|
889 |
-
.acf-field .select2-container--default .select2-selection--multiple .select2-selection__choice {
|
890 |
-
margin-right: 2px !important;
|
891 |
-
margin-top: 2px !important;
|
892 |
-
line-height: 1.6;
|
893 |
-
border-radius: 3px !important;
|
894 |
-
font-size: 14px
|
895 |
-
}
|
896 |
-
|
897 |
-
.acf-field .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
898 |
-
float: right;
|
899 |
-
margin-left: 3px;
|
900 |
-
margin-right: 0;
|
901 |
-
line-height: 23px;
|
902 |
-
font-size: 15px;
|
903 |
-
vertical-align: text-top
|
904 |
-
}
|
905 |
-
|
906 |
-
.acf-field .select2-container--default.select2-container--focus .select2-selection--multiple {
|
907 |
-
border-color: #7e8993 !important
|
908 |
-
}
|
909 |
-
|
910 |
-
.acf-field .select2-container--default .select2-selection--multiple .select2-selection__clear {
|
911 |
-
margin-top: 5px !important;
|
912 |
-
margin-right: 5px !important;
|
913 |
-
font-size: 16px
|
914 |
-
}
|
915 |
-
|
916 |
-
.acf-field>.acf-input>.select2 .select2-search {
|
917 |
-
width: auto
|
918 |
-
}
|
919 |
-
|
920 |
-
.select2-container .select2-dropdown .select2-search__field {
|
921 |
-
min-height: 30px !important;
|
922 |
-
border: 0 !important;
|
923 |
-
-webkit-box-shadow: none !important;
|
924 |
-
box-shadow: none !important;
|
925 |
-
padding: 0 2px
|
926 |
-
}
|
927 |
-
|
928 |
-
.select2-container .select2-dropdown .select2-search__field::-webkit-input-placeholder {
|
929 |
-
color: #777
|
930 |
-
}
|
931 |
-
|
932 |
-
.select2-container .select2-dropdown .select2-search__field::-moz-placeholder {
|
933 |
-
color: #777
|
934 |
-
}
|
935 |
-
|
936 |
-
.select2-container .select2-dropdown .select2-search__field:-ms-input-placeholder {
|
937 |
-
color: #777
|
938 |
-
}
|
939 |
-
|
940 |
-
.select2-container .select2-dropdown .select2-search__field::-ms-input-placeholder {
|
941 |
-
color: #777
|
942 |
-
}
|
943 |
-
|
944 |
-
.select2-container .select2-dropdown .select2-search__field::placeholder {
|
945 |
-
color: #777
|
946 |
-
}
|
947 |
-
|
948 |
-
.select2-selection__choice>code,
|
949 |
-
.select2-selection__rendered>code {
|
950 |
-
font-size: 12px;
|
951 |
-
padding: 3px;
|
952 |
-
vertical-align: 1px;
|
953 |
-
line-height: 12px
|
954 |
-
}
|
955 |
-
|
956 |
-
.select2-results__option>code {
|
957 |
-
font-size: 12px
|
958 |
-
}
|
959 |
-
|
960 |
-
.acf-input-wrap .acf-is-prepended+.select2>.selection>.select2-selection {
|
961 |
-
border-radius: 0 3px 3px 0 !important
|
962 |
-
}
|
963 |
-
|
964 |
-
.acf-input-wrap .acf-is-appended+.select2>.selection>.select2-selection {
|
965 |
-
border-radius: 3px 0 0 3px !important
|
966 |
-
}
|
967 |
-
|
968 |
-
.acf-input-wrap .acf-is-prepended.acf-is-appended+.select2>.selection>.select2-selection {
|
969 |
-
border-radius: 0 !important
|
970 |
-
}
|
971 |
-
|
972 |
.acf-tab-group li a .acfe-tab-badge {
|
973 |
border-radius: 100px;
|
974 |
background: #ddd;
|
@@ -1108,4 +927,253 @@ body.is-dragging-metaboxes #acf_after_title-sortables {
|
|
1108 |
display: flow-root;
|
1109 |
min-height: 60px;
|
1110 |
margin-bottom: 3px !important
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1111 |
}
|
367 |
width: 120px
|
368 |
}
|
369 |
|
370 |
+
#acfe-author>.inside {
|
371 |
+
margin: 0 !important;
|
372 |
+
padding: 0 !important
|
373 |
+
}
|
374 |
+
|
375 |
+
#acfe-author>.inside>.acf-field {
|
376 |
+
margin: 0;
|
377 |
+
padding: 15px 12px
|
378 |
}
|
379 |
|
380 |
.edit-post-layout__metaboxes:not(:empty) {
|
609 |
content: "\f106"
|
610 |
}
|
611 |
|
612 |
+
.acfe-list-postboxes .postbox>.postbox-header>h2.hndle {
|
613 |
cursor: initial
|
614 |
}
|
615 |
|
616 |
+
.acfe-list-postboxes .postbox>.postbox-header>.handle-actions>.acf-hndle-cog {
|
617 |
+
width: 2.2rem
|
|
|
618 |
}
|
619 |
|
620 |
+
.acfe-list-postboxes .postbox>.postbox-header>.handle-actions>button,
|
621 |
+
.acfe-list-postboxes .postbox>.postbox-header>.handle-actions>span {
|
622 |
+
display: none
|
623 |
}
|
624 |
|
625 |
+
.acfe-list-postboxes .postbox>.acf-fields>#acf-form-data+.acf-field {
|
626 |
+
border-top: none;
|
627 |
+
margin-top: 0
|
628 |
}
|
629 |
|
630 |
+
.acfe-list-postboxes.-side {
|
631 |
min-width: auto !important
|
632 |
}
|
633 |
|
788 |
}
|
789 |
}
|
790 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
791 |
.acf-tab-group li a .acfe-tab-badge {
|
792 |
border-radius: 100px;
|
793 |
background: #ddd;
|
927 |
display: flow-root;
|
928 |
min-height: 60px;
|
929 |
margin-bottom: 3px !important
|
930 |
+
}
|
931 |
+
|
932 |
+
.acf-field .select2-container.-acf .select2-selection--single {
|
933 |
+
border-radius: 3px;
|
934 |
+
height: 30px;
|
935 |
+
outline: 0
|
936 |
+
}
|
937 |
+
|
938 |
+
.acf-field .select2-container.-acf .select2-selection--single .select2-selection__rendered {
|
939 |
+
font-size: 14px;
|
940 |
+
height: 28px;
|
941 |
+
line-height: 27px;
|
942 |
+
padding-right: 23px
|
943 |
+
}
|
944 |
+
|
945 |
+
.acf-field .select2-container.-acf .select2-selection--single .select2-selection__clear {
|
946 |
+
line-height: 26px;
|
947 |
+
height: 28px;
|
948 |
+
font-size: 16px;
|
949 |
+
margin-right: 0
|
950 |
+
}
|
951 |
+
|
952 |
+
.acf-field .select2-container.-acf .select2-selection--single button.select2-selection__clear {
|
953 |
+
position: absolute;
|
954 |
+
right: 24px;
|
955 |
+
padding: 0
|
956 |
+
}
|
957 |
+
|
958 |
+
.acf-field .select2-container.-acf .select2-selection--single button.select2-selection__clear span {
|
959 |
+
line-height: 26px;
|
960 |
+
height: 28px;
|
961 |
+
display: inline-block
|
962 |
+
}
|
963 |
+
|
964 |
+
.acf-field .select2-container.-acf .select2-selection--single .select2-selection__placeholder {
|
965 |
+
color: #444
|
966 |
+
}
|
967 |
+
|
968 |
+
.acf-field .select2-container.-acf .select2-selection--single .select2-selection__arrow {
|
969 |
+
height: 28px
|
970 |
+
}
|
971 |
+
|
972 |
+
.acf-field .select2-container.-acf .select2-selection--single .select2-selection__arrow b {
|
973 |
+
background: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') no-repeat;
|
974 |
+
background-size: 16px 16px;
|
975 |
+
border: 0;
|
976 |
+
width: 16px;
|
977 |
+
height: 16px;
|
978 |
+
margin-left: -11px;
|
979 |
+
margin-top: -7px
|
980 |
+
}
|
981 |
+
|
982 |
+
.acf-field .select2-container.-acf.select2-container--open .select2-selection--single,
|
983 |
+
.acf-field .select2-container.-acf:focus .select2-selection--single {
|
984 |
+
border-color: #007cba;
|
985 |
+
color: #016087;
|
986 |
+
-webkit-box-shadow: 0 0 0 1px #007cba;
|
987 |
+
box-shadow: 0 0 0 1px #007cba
|
988 |
+
}
|
989 |
+
|
990 |
+
.select2-container .select2-dropdown .select2-search--dropdown .select2-search__field {
|
991 |
+
min-height: 30px;
|
992 |
+
border: 0;
|
993 |
+
-webkit-box-shadow: none;
|
994 |
+
box-shadow: none;
|
995 |
+
padding: 0 2px
|
996 |
+
}
|
997 |
+
|
998 |
+
.select2-container .select2-dropdown .select2-search--dropdown .select2-search__field::-webkit-input-placeholder {
|
999 |
+
color: #777
|
1000 |
+
}
|
1001 |
+
|
1002 |
+
.select2-container .select2-dropdown .select2-search--dropdown .select2-search__field::-moz-placeholder {
|
1003 |
+
color: #777
|
1004 |
+
}
|
1005 |
+
|
1006 |
+
.select2-container .select2-dropdown .select2-search--dropdown .select2-search__field:-ms-input-placeholder {
|
1007 |
+
color: #777
|
1008 |
+
}
|
1009 |
+
|
1010 |
+
.select2-container .select2-dropdown .select2-search--dropdown .select2-search__field::-ms-input-placeholder {
|
1011 |
+
color: #777
|
1012 |
+
}
|
1013 |
+
|
1014 |
+
.select2-container .select2-dropdown .select2-search--dropdown .select2-search__field::placeholder {
|
1015 |
+
color: #777
|
1016 |
+
}
|
1017 |
+
|
1018 |
+
.select2-container .select2-dropdown .select2-results__option {
|
1019 |
+
margin-bottom: 0
|
1020 |
+
}
|
1021 |
+
|
1022 |
+
.acf-field .select2-container.-acf .select2-selection--multiple {
|
1023 |
+
min-height: 30px;
|
1024 |
+
line-height: 1;
|
1025 |
+
border-radius: 3px;
|
1026 |
+
padding: 0
|
1027 |
+
}
|
1028 |
+
|
1029 |
+
.acf-field .select2-container.-acf .select2-selection--multiple .select2-selection__rendered {
|
1030 |
+
padding: 0 2px;
|
1031 |
+
display: inline-block;
|
1032 |
+
margin: 0
|
1033 |
+
}
|
1034 |
+
|
1035 |
+
.acf-field .select2-container.-acf .select2-selection--multiple .select2-selection__choice {
|
1036 |
+
margin-right: 2px;
|
1037 |
+
margin-top: 2px;
|
1038 |
+
line-height: 1.6;
|
1039 |
+
border-radius: 3px;
|
1040 |
+
font-size: 14px;
|
1041 |
+
margin-left: 0;
|
1042 |
+
display: inline-block;
|
1043 |
+
vertical-align: unset;
|
1044 |
+
padding: 0 5px
|
1045 |
+
}
|
1046 |
+
|
1047 |
+
.acf-field .select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__display {
|
1048 |
+
padding: 0
|
1049 |
+
}
|
1050 |
+
|
1051 |
+
.acf-field .select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
|
1052 |
+
float: right;
|
1053 |
+
margin-left: 3px;
|
1054 |
+
margin-right: 0;
|
1055 |
+
line-height: 23px;
|
1056 |
+
font-size: 15px;
|
1057 |
+
vertical-align: text-top;
|
1058 |
+
position: static;
|
1059 |
+
padding: 0;
|
1060 |
+
border: 0;
|
1061 |
+
margin-top: 0
|
1062 |
+
}
|
1063 |
+
|
1064 |
+
.acf-field .select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover {
|
1065 |
+
background: 0 0
|
1066 |
+
}
|
1067 |
+
|
1068 |
+
.acf-field .select2-container.-acf .select2-selection--multiple .select2-selection__clear {
|
1069 |
+
margin-top: 0;
|
1070 |
+
margin-right: 6px;
|
1071 |
+
font-size: 16px;
|
1072 |
+
padding: 0;
|
1073 |
+
line-height: 26px;
|
1074 |
+
height: 27px;
|
1075 |
+
position: relative
|
1076 |
+
}
|
1077 |
+
|
1078 |
+
.acf-field .select2-container.-acf .select2-selection--multiple button.select2-selection__clear {
|
1079 |
+
float: right
|
1080 |
+
}
|
1081 |
+
|
1082 |
+
.acf-field .select2-container.-acf .select2-selection--multiple .select2-search--inline {
|
1083 |
+
float: left;
|
1084 |
+
width: auto
|
1085 |
+
}
|
1086 |
+
|
1087 |
+
.acf-field .select2-container.-acf .select2-selection--multiple .select2-search--inline .select2-search__field {
|
1088 |
+
margin-top: 4px;
|
1089 |
+
font-size: 14px;
|
1090 |
+
padding-left: 2px;
|
1091 |
+
margin-left: 0
|
1092 |
+
}
|
1093 |
+
|
1094 |
+
.acf-field .select2-container.-acf .select2-selection--multiple .select2-search--inline .select2-search__field::-webkit-input-placeholder {
|
1095 |
+
color: #444
|
1096 |
+
}
|
1097 |
+
|
1098 |
+
.acf-field .select2-container.-acf .select2-selection--multiple .select2-search--inline .select2-search__field::-moz-placeholder {
|
1099 |
+
color: #444
|
1100 |
+
}
|
1101 |
+
|
1102 |
+
.acf-field .select2-container.-acf .select2-selection--multiple .select2-search--inline .select2-search__field:-ms-input-placeholder {
|
1103 |
+
color: #444
|
1104 |
+
}
|
1105 |
+
|
1106 |
+
.acf-field .select2-container.-acf .select2-selection--multiple .select2-search--inline .select2-search__field::-ms-input-placeholder {
|
1107 |
+
color: #444
|
1108 |
+
}
|
1109 |
+
|
1110 |
+
.acf-field .select2-container.-acf .select2-selection--multiple .select2-search--inline .select2-search__field::placeholder {
|
1111 |
+
color: #444
|
1112 |
+
}
|
1113 |
+
|
1114 |
+
.acf-field .select2-container.-acf .select2-selection--multiple .select2-search--inline:first-child:last-child .select2-search__field {
|
1115 |
+
padding-left: 6px
|
1116 |
+
}
|
1117 |
+
|
1118 |
+
.acf-field .select2-container.-acf .select2-selection--multiple .select2-selection__rendered+.select2-search--inline {
|
1119 |
+
float: none;
|
1120 |
+
display: inline-block;
|
1121 |
+
vertical-align: top
|
1122 |
+
}
|
1123 |
+
|
1124 |
+
.acf-field .select2-container.-acf .select2-selection--multiple .select2-selection__rendered+.select2-search--inline .select2-search__field {
|
1125 |
+
height: 22px;
|
1126 |
+
line-height: 1.4;
|
1127 |
+
padding-left: 0;
|
1128 |
+
font-family: inherit;
|
1129 |
+
border-radius: 0;
|
1130 |
+
margin-top: 4px !important
|
1131 |
+
}
|
1132 |
+
|
1133 |
+
.acf-field .select2-container.-acf.select2-container--focus .select2-selection--multiple,
|
1134 |
+
.acf-field .select2-container.-acf.select2-container--open .select2-selection--multiple {
|
1135 |
+
border-color: #7e8993
|
1136 |
+
}
|
1137 |
+
|
1138 |
+
.select2-selection__choice>code,
|
1139 |
+
.select2-selection__rendered>code {
|
1140 |
+
font-size: 12px;
|
1141 |
+
padding: 3px;
|
1142 |
+
vertical-align: 1px;
|
1143 |
+
line-height: 12px
|
1144 |
+
}
|
1145 |
+
|
1146 |
+
.select2-results__option>code {
|
1147 |
+
font-size: 12px
|
1148 |
+
}
|
1149 |
+
|
1150 |
+
.acf-input-wrap .acf-is-prepended+.select2>.selection>.select2-selection {
|
1151 |
+
border-radius: 0 3px 3px 0 !important
|
1152 |
+
}
|
1153 |
+
|
1154 |
+
.acf-input-wrap .acf-is-appended+.select2>.selection>.select2-selection {
|
1155 |
+
border-radius: 3px 0 0 3px !important
|
1156 |
+
}
|
1157 |
+
|
1158 |
+
.acf-input-wrap .acf-is-prepended.acf-is-appended+.select2>.selection>.select2-selection {
|
1159 |
+
border-radius: 0 !important
|
1160 |
+
}
|
1161 |
+
|
1162 |
+
body:not(.acf-admin-5-3) .acf-field .select2-container .select2-selection {
|
1163 |
+
border-color: #dfdfdf !important;
|
1164 |
+
border-radius: 0 !important
|
1165 |
+
}
|
1166 |
+
|
1167 |
+
body:not(.acf-admin-5-3) .acf-field .select2-container .select2-selection__choice {
|
1168 |
+
border-color: #dfdfdf !important;
|
1169 |
+
border-radius: 0 !important
|
1170 |
+
}
|
1171 |
+
|
1172 |
+
body:not(.acf-admin-5-3) .acf-field .select2-container .select2-search--inline .select2-search__field {
|
1173 |
+
margin-top: 0 !important
|
1174 |
+
}
|
1175 |
+
|
1176 |
+
body:not(.acf-admin-5-3) .acf-field .select2-dropdown {
|
1177 |
+
border-color: #dfdfdf !important;
|
1178 |
+
border-radius: 0 !important
|
1179 |
}
|
assets/css/acfe-admin.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace;font-size:1em}pre{display:block;padding:9.5px;margin:0;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f9f9f9;border:1px solid #ccc;border-radius:1px;white-space:pre-wrap;overflow:auto}code{-webkit-user-select:all;-moz-user-select:all;user-select:all}pre>code{-webkit-user-select:inherit;-moz-user-select:inherit;-ms-user-select:inherit;user-select:inherit;padding:0;margin:0;background:0 0;font-size:1em;display:block}.code-codemirror>.CodeMirror,.pre-codemirror>.CodeMirror{border:1px solid #ccc;height:auto;width:auto;background:#f9f9f9;padding:9px 6px}.code-codemirror{display:inline;vertical-align:middle}.code-codemirror>.CodeMirror{display:inline-block;padding:0}.code-codemirror>.CodeMirror .CodeMirror-selected,.pre-codemirror>.CodeMirror .CodeMirror-selected{background:#ddd!important}.code-codemirror>.CodeMirror .CodeMirror-lines,.pre-codemirror>.CodeMirror .CodeMirror-lines{padding:0}.widget.open{z-index:inherit!important}.acfe-pre-highlight{display:block;padding:9.5px;margin:0;line-height:1.42857143;color:#333;background-color:#f9f9f9;border:1px solid #ccc;border-radius:1px;overflow:auto;font-family:Menlo,Monaco,Consolas,Courier New,monospace;font-size:1em;white-space:nowrap}.acf-postbox.seamless>.inside>.acf-field{padding:15px 12px}.acf-flexible-content .layout.ui-sortable-helper:first-child+.layout.ui-sortable-placeholder{margin-top:0}.acfe-postbox.acfe-postbox-no-handle h2.hndle{cursor:initial}.acfe-postbox.acfe-postbox-no-handle .handlediv{display:none}.acfe-postbox-top>.inside{position:relative}.acfe-postbox-top>.inside.-border{border:1px solid #ccd0d4;background:#fff}.acfe-postbox-top>.inside>.acf-field{position:relative;margin:0;padding:15px 12px;border-top:1px solid #eee}.acfe-postbox-top>.inside>.acf-field:first-child{border-top:none;margin-top:0}.acfe-postbox-left>.inside{position:relative}.acfe-postbox-left>.inside:after{display:block;clear:both;content:""}.acfe-postbox-left>.inside.-border{border:1px solid #ccd0d4;background:#fff}.acfe-postbox-left>.inside>.acf-field{position:relative;margin:0;border-top:1px solid #eee;padding:15px 0}.acfe-postbox-left>.inside>.acf-field:first-child{border-top:none;margin-top:0}.acfe-postbox-left>.inside.-clear>.acf-field{border:none;padding:0;margin:15px 0}.acfe-postbox-left>.inside>.acf-field:after{display:block;clear:both;content:""}.acfe-postbox-left>.inside>.acf-field:before{content:"";display:block;position:absolute;z-index:0;background:#f9f9f9;border-color:#e1e1e1;border-style:solid;border-width:0 1px 0 0;top:0;bottom:0;left:0;width:20%}.acfe-postbox-left>.inside>.acf-field[data-width]{float:none;width:auto!important;border-left-width:0!important;border-right-width:0!important}.acfe-postbox-left>.inside>.acf-field>.acf-label{float:left;width:20%;margin:0;padding:0 12px}.acfe-postbox-left>.inside>.acf-field>.acf-input{float:left;width:80%;margin:0;padding:0 12px}html[dir=rtl] .acfe-postbox-left>.inside>.acf-field:before{border-width:0 0 0 1px;left:auto;right:0}html[dir=rtl] .acfe-postbox-left>.inside>.acf-field>.acf-input,html[dir=rtl] .acfe-postbox-left>.inside>.acf-field>.acf-label{float:right}#side-sortables .acfe-postbox-left>.inside>.acf-field:before{display:none}#side-sortables .acfe-postbox-left>.inside>.acf-field>.acf-label{width:100%;margin-bottom:10px}#side-sortables .acfe-postbox-left>.inside>.acf-field>.acf-input{width:100%}@media screen and (max-width:640px){.acfe-postbox-left>.inside>.acf-field:before{display:none}.acfe-postbox-left>.inside>.acf-field>.acf-label{width:100%;margin-bottom:10px}.acfe-postbox-left>.inside>.acf-field>.acf-input{width:100%}}.wrap .acfe-dop-admin-config,.wrap .acfe-dpt-admin-config,.wrap .acfe-dt-admin-config{display:inline-block;padding-left:4px;padding-right:4px}.wrap .acfe-dop-admin-config:active,.wrap .acfe-dpt-admin-config:active,.wrap .acfe-dt-admin-config:active{padding-left:4px;padding-right:4px}.wrap .acfe-dop-admin-config span,.wrap .acfe-dpt-admin-config span,.wrap .acfe-dt-admin-config span{font-size:16px;vertical-align:text-top;height:15px;width:19px;line-height:19px}body.post-type-acfe-dbt #minor-publishing-actions,body.post-type-acfe-dbt #misc-publishing-actions #visibility,body.post-type-acfe-dbt #misc-publishing-actions .edit-post-status,body.post-type-acfe-dbt #misc-publishing-actions .edit-timestamp,body.post-type-acfe-dop #minor-publishing-actions,body.post-type-acfe-dop #misc-publishing-actions #visibility,body.post-type-acfe-dop #misc-publishing-actions .edit-post-status,body.post-type-acfe-dop #misc-publishing-actions .edit-timestamp,body.post-type-acfe-dpt #minor-publishing-actions,body.post-type-acfe-dpt #misc-publishing-actions #visibility,body.post-type-acfe-dpt #misc-publishing-actions .edit-post-status,body.post-type-acfe-dpt #misc-publishing-actions .edit-timestamp,body.post-type-acfe-dt #minor-publishing-actions,body.post-type-acfe-dt #misc-publishing-actions #visibility,body.post-type-acfe-dt #misc-publishing-actions .edit-post-status,body.post-type-acfe-dt #misc-publishing-actions .edit-timestamp,body.post-type-acfe-form #minor-publishing-actions,body.post-type-acfe-form #misc-publishing-actions #visibility,body.post-type-acfe-form #misc-publishing-actions .edit-post-status,body.post-type-acfe-form #misc-publishing-actions .edit-timestamp,body.post-type-acfe-template #minor-publishing-actions,body.post-type-acfe-template #misc-publishing-actions #visibility,body.post-type-acfe-template #misc-publishing-actions .edit-post-status,body.post-type-acfe-template #misc-publishing-actions .edit-timestamp{display:none!important}body.post-type-acfe-dbt .acfe-misc-export,body.post-type-acfe-dop .acfe-misc-export,body.post-type-acfe-dpt .acfe-misc-export,body.post-type-acfe-dt .acfe-misc-export,body.post-type-acfe-form .acfe-misc-export,body.post-type-acfe-template .acfe-misc-export{padding-top:2px}body.post-type-acfe-dbt .acfe-misc-export span.dashicons,body.post-type-acfe-dop .acfe-misc-export span.dashicons,body.post-type-acfe-dpt .acfe-misc-export span.dashicons,body.post-type-acfe-dt .acfe-misc-export span.dashicons,body.post-type-acfe-form .acfe-misc-export span.dashicons,body.post-type-acfe-template .acfe-misc-export span.dashicons{font-size:18px;color:#82878c;line-height:1.2;width:18px;margin-right:4px}body.post-type-acfe-dbt.post-new-php .acfe-misc-export,body.post-type-acfe-dop.post-new-php .acfe-misc-export,body.post-type-acfe-dpt.post-new-php .acfe-misc-export,body.post-type-acfe-dt.post-new-php .acfe-misc-export,body.post-type-acfe-form.post-new-php .acfe-misc-export,body.post-type-acfe-template.post-new-php .acfe-misc-export{display:none}body.post-type-acfe-dbt .status-acf-disabled .column-title a,body.post-type-acfe-dbt .status-acf-disabled .column-title code,body.post-type-acfe-dop .status-acf-disabled .column-title a,body.post-type-acfe-dop .status-acf-disabled .column-title code,body.post-type-acfe-dpt .status-acf-disabled .column-title a,body.post-type-acfe-dpt .status-acf-disabled .column-title code,body.post-type-acfe-dt .status-acf-disabled .column-title a,body.post-type-acfe-dt .status-acf-disabled .column-title code,body.post-type-acfe-form .status-acf-disabled .column-title a,body.post-type-acfe-form .status-acf-disabled .column-title code,body.post-type-acfe-template .status-acf-disabled .column-title a,body.post-type-acfe-template .status-acf-disabled .column-title code{color:#555!important}body.post-type-acfe-dbt .status-acf-disabled .column-title strong,body.post-type-acfe-dop .status-acf-disabled .column-title strong,body.post-type-acfe-dpt .status-acf-disabled .column-title strong,body.post-type-acfe-dt .status-acf-disabled .column-title strong,body.post-type-acfe-form .status-acf-disabled .column-title strong,body.post-type-acfe-template .status-acf-disabled .column-title strong{color:#a0a5aa}body.post-type-acfe-dbt .column-acfe-posts,body.post-type-acfe-dbt .column-acfe-terms,body.post-type-acfe-dop .column-acfe-posts,body.post-type-acfe-dop .column-acfe-terms,body.post-type-acfe-dpt .column-acfe-posts,body.post-type-acfe-dpt .column-acfe-terms,body.post-type-acfe-dt .column-acfe-posts,body.post-type-acfe-dt .column-acfe-terms,body.post-type-acfe-form .column-acfe-posts,body.post-type-acfe-form .column-acfe-terms,body.post-type-acfe-template .column-acfe-posts,body.post-type-acfe-template .column-acfe-terms{width:120px}.acf-field.acf-field-acfe-author>.acf-label{display:none}.edit-post-layout__metaboxes:not(:empty){background:#f3f4f5;padding:10px 10px 0!important}.edit-post-layout__metaboxes .edit-post-meta-boxes-area .postbox{margin-bottom:10px;border:1px solid #e1e1e1}.edit-post-layout__metaboxes .edit-post-meta-boxes-area .postbox>.inside{border-bottom:0}#acf-admin-tool-acfe_dynamic_block_types_export ul,#acf-admin-tool-acfe_dynamic_forms_export ul,#acf-admin-tool-acfe_dynamic_options_pages_export ul,#acf-admin-tool-acfe_dynamic_post_types_export ul,#acf-admin-tool-acfe_dynamic_taxonomies_export ul{-webkit-column-width:200px;-moz-column-width:200px;column-width:200px}#acf-admin-tool-acfe_dynamic_block_types_export .acf-postbox-columns,#acf-admin-tool-acfe_dynamic_forms_export .acf-postbox-columns,#acf-admin-tool-acfe_dynamic_options_pages_export .acf-postbox-columns,#acf-admin-tool-acfe_dynamic_post_types_export .acf-postbox-columns,#acf-admin-tool-acfe_dynamic_taxonomies_export .acf-postbox-columns{margin-right:0}.acf-meta-box-wrap.-grid #acf-admin-tool-acfe-fg-local{display:none}#acfe-admin-settings .inside>.acf-field{display:-webkit-box;display:-ms-flexbox;display:flex;padding:0}#acfe-admin-settings .inside>.acf-field>.acf-label{padding-top:15px;padding-bottom:15px;float:none}#acfe-admin-settings .inside>.acf-field>.acf-label label span.acf-js-tooltip{float:right;font-size:14px;color:#ccc}#acfe-admin-settings .inside>.acf-field>.acf-input{display:-webkit-box;display:-ms-flexbox;display:flex;float:none;padding:0}#acfe-admin-settings .inside>.acf-field>.acf-input>div{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;max-width:50%;padding:8px;min-width:0}#acfe-admin-settings .inside>.acf-field>.acf-input>div:nth-child(2){border-left:1px solid #eee}#acfe-admin-settings .inside>.acf-field>.acf-input .acfe-settings-text{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;max-width:100%;display:inline-block}#acfe-admin-settings .inside>.acf-field>.acf-input .acfe-settings-text>code{font-size:12px}#acfe-admin-settings .inside>.acf-field>.acf-input .dashicons-saved{font-size:21px;display:inline}#acfe-admin-settings .inside>.acf-field>.acf-input .dashicons-no-alt{color:#ccc;font-size:21px;display:inline}#acfe-admin-settings .inside>.acf-field.acfe-settings-thead>.acf-input{padding:0;border-bottom:1px solid #eee}#acfe-admin-settings .inside>.acf-field.acfe-settings-thead+.acf-field{border-top:0}.settings_page_acfe-options .column-option_id{width:65px}.settings_page_acfe-options .column-option_name{width:435px}.settings_page_acfe-options .column-autoload{width:100px;text-align:center}.acf-field[data-name=acfe_form_action_docs]{padding:0!important;border:0!important;position:absolute!important;top:12px;right:11px;z-index:3}.acf-field[data-name=acfe_form_action_docs]::before{background:0 0!important;border:0!important}.acf-field[data-name=acfe_form_action_docs]>.acf-label{min-height:0!important}.acf-field[data-name=acfe_form_action_docs]>.acf-input{float:none!important;width:auto!important;padding:0!important}.acf-field[data-name=acfe_form_action_docs]+.acf-field,.acf-field[data-name=acfe_form_action_docs]+.acf-tab-wrap>.acf-tab-group{border-top:0}.acf-field[data-name=acfe_form_post_save_post_content_custom],.acf-field[data-name=acfe_form_post_save_post_excerpt_custom],.acf-field[data-name=acfe_form_post_save_post_name_custom],.acf-field[data-name=acfe_form_post_save_post_title_custom],.acf-field[data-name=acfe_form_term_save_description_custom],.acf-field[data-name=acfe_form_term_save_name_custom],.acf-field[data-name=acfe_form_term_save_slug_custom],.acf-field[data-name=acfe_form_user_save_description_custom],.acf-field[data-name=acfe_form_user_save_display_name_custom],.acf-field[data-name=acfe_form_user_save_email_custom],.acf-field[data-name=acfe_form_user_save_first_name_custom],.acf-field[data-name=acfe_form_user_save_last_name_custom],.acf-field[data-name=acfe_form_user_save_nickname_custom],.acf-field[data-name=acfe_form_user_save_password_custom],.acf-field[data-name=acfe_form_user_save_username_custom],.acf-field[data-name=acfe_form_user_save_website_custom]{border-top:0!important;padding-top:0!important}.acf-field.acf-field-acfe-form-attributes>.acf-input>.acf-fields>.acf-field,.acf-field.acf-field-acfe-form-fields-attributes>.acf-input>.acf-fields>.acf-field{border-left-width:0}.acf-field-repeater.acf-field-acfe-form-email-files-static>.acf-input>.acf-repeater>.acf-actions,.acf-field-repeater.acf-field-acfe-form-email-files>.acf-input>.acf-repeater>.acf-actions{text-align:left}.misc-pub-acfe-object-category::before,.misc-pub-acfe-object-data::before,.misc-pub-acfe-object-id::before,.misc-pub-acfe-object-meta::before,.misc-pub-acfe-object-role::before,.misc-pub-acfe-object-single-meta::before,.misc-pub-acfe-object-type::before{font:19px/1 dashicons;speak:never;display:inline-block;margin-left:-1px;padding-right:3px;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#8c8f94;content:"\f173";margin-right:1px}.misc-pub-acfe-object-id::before{content:"\f464"}.misc-pub-acfe-object-type::before{content:"\f109"}.misc-pub-acfe-object-role::before{content:"\f338"}.misc-pub-acfe-object-category::before{content:"\f318"}.misc-pub-acfe-object-data::before{content:"\f206"}.misc-pub-acfe-object-meta::before{content:"\f17e"}.misc-pub-acfe-object-single-meta::before{content:"\f106"}.acfe-dev-postboxes .postbox>.postbox-header>h2.hndle{cursor:initial}.acfe-dev-postboxes .postbox>.postbox-header>.handle-actions>button,.acfe-dev-postboxes .postbox>.postbox-header>.handle-actions>span{display:none}.acfe-dev-postboxes .postbox>.inside{margin:0!important;padding:0!important}.acfe-dev-postboxes .postbox>.inside>.acf-field{padding:15px 0}.acfe-dev-postboxes.-side{min-width:auto!important}#acfe-clean-meta>.inside{margin:0!important;padding:15px 12px!important}.postbox#acfe-acf-custom-fields>.inside,.postbox#acfe-wp-custom-fields>.inside{padding:0;margin:0}.postbox#acfe-acf-custom-fields>.inside .wp-list-table,.postbox#acfe-wp-custom-fields>.inside .wp-list-table{border:0}.postbox#acfe-acf-custom-fields>.inside .wp-list-table .col-name,.postbox#acfe-wp-custom-fields>.inside .wp-list-table .col-name{width:30%}.postbox#acfe-acf-custom-fields>.inside .wp-list-table .col-value,.postbox#acfe-wp-custom-fields>.inside .wp-list-table .col-value{width:auto}.postbox#acfe-acf-custom-fields>.inside .wp-list-table .col-field-type,.postbox#acfe-wp-custom-fields>.inside .wp-list-table .col-field-type{width:100px}.postbox#acfe-acf-custom-fields>.inside .wp-list-table .col-field-group,.postbox#acfe-wp-custom-fields>.inside .wp-list-table .col-field-group{width:120px}.postbox#acfe-acf-custom-fields>.inside .wp-list-table .col-autoload,.postbox#acfe-wp-custom-fields>.inside .wp-list-table .col-autoload{width:65px}.postbox#acfe-acf-custom-fields+.acfe_dev_bulk_actions,.postbox#acfe-wp-custom-fields+.acfe_dev_bulk_actions{padding-top:0;margin-top:-8px;margin-bottom:20px}.postbox#acfe-acf-custom-fields+.acfe_dev_bulk_actions:last-child,.postbox#acfe-wp-custom-fields+.acfe_dev_bulk_actions:last-child{margin-bottom:0}.postbox#acfe-acf-custom-fields em,.postbox#acfe-wp-custom-fields em{color:#aaa}.postbox#acfe-acf-custom-fields .acfe_dev_meta_count,.postbox#acfe-wp-custom-fields .acfe_dev_meta_count{background:#72777c;padding:1px 5px;border-radius:4px;color:#fff;margin-left:7px;font-size:12px;margin-right:auto}.postbox#acfe-acf-custom-fields pre,.postbox#acfe-wp-custom-fields pre{max-height:200px;overflow:auto;white-space:pre}.postbox#acfe-acf-custom-fields pre.raw,.postbox#acfe-wp-custom-fields pre.raw{white-space:unset;margin-top:10px;max-width:100%}@media only screen and (max-width:1100px){.postbox#acfe-acf-custom-fields thead,.postbox#acfe-wp-custom-fields thead{display:none}.postbox#acfe-acf-custom-fields tbody tr,.postbox#acfe-wp-custom-fields tbody tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.postbox#acfe-acf-custom-fields tbody td,.postbox#acfe-acf-custom-fields tbody th,.postbox#acfe-wp-custom-fields tbody td,.postbox#acfe-wp-custom-fields tbody th{display:block}.postbox#acfe-acf-custom-fields tbody td:first-of-type,.postbox#acfe-wp-custom-fields tbody td:first-of-type{-webkit-box-flex:1;-ms-flex:1;flex:1}.postbox#acfe-acf-custom-fields tbody td:first-of-type strong,.postbox#acfe-wp-custom-fields tbody td:first-of-type strong{display:inline-block;word-break:break-all}.postbox#acfe-acf-custom-fields tbody td:first-of-type .row-actions,.postbox#acfe-wp-custom-fields tbody td:first-of-type .row-actions{display:inline-block;padding:0;float:right}@media only screen and (max-width:850px){.postbox#acfe-acf-custom-fields tbody td:first-of-type,.postbox#acfe-wp-custom-fields tbody td:first-of-type{line-height:2.2}.postbox#acfe-acf-custom-fields tbody td:first-of-type .row-actions,.postbox#acfe-wp-custom-fields tbody td:first-of-type .row-actions{left:auto}}.postbox#acfe-acf-custom-fields tbody td:first-of-type .row-actions .delete,.postbox#acfe-acf-custom-fields tbody td:first-of-type .row-actions a,.postbox#acfe-wp-custom-fields tbody td:first-of-type .row-actions .delete,.postbox#acfe-wp-custom-fields tbody td:first-of-type .row-actions a{padding:0}.postbox#acfe-acf-custom-fields tbody td:nth-child(3),.postbox#acfe-wp-custom-fields tbody td:nth-child(3){-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}}body:not(.acf-admin-5-3) .acf-field .select2-container .select2-selection,body:not(.acf-admin-5-3) .acf-field .select2-container .select2-selection__choice,body:not(.acf-admin-5-3) .acf-field .select2-dropdown{border-color:#dfdfdf!important;border-radius:0!important}body:not(.acf-admin-5-3) .acf-field .select2-container .select2-search--inline .select2-search__field{margin-top:0!important}.acf-field .select2-container .select2-selection--single{border-radius:3px!important;height:30px!important;outline:0}.acf-field .select2-container.select2-container--open .select2-selection--single,.acf-field .select2-container:focus .select2-selection--single{border-color:#007cba!important;color:#016087!important;-webkit-box-shadow:0 0 0 1px #007cba!important;box-shadow:0 0 0 1px #007cba!important}.acf-field .select2-container .select2-selection--single .select2-selection__rendered{font-size:14px;height:28px;line-height:27px!important;padding-right:23px!important}.acf-field .select2-container .select2-selection--single .select2-selection__clear{line-height:26px;height:28px;font-size:16px}.acf-field .select2-container--default .select2-selection--single .select2-selection__placeholder{color:#444}.acf-field .select2-container--default .select2-selection--single .select2-selection__arrow{height:28px!important}.acf-field .select2-container--default .select2-selection--single .select2-selection__arrow b{background:url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') 0 0/16px 16px no-repeat;border:0!important;width:16px!important;height:16px!important;margin-left:-11px!important;margin-top:-7px!important}.acf-field .select2-container .select2-search--inline .select2-search__field{margin-top:4px!important;font-size:14px!important;padding-left:6px!important}.acf-field .select2-container .select2-search--inline .select2-search__field::-webkit-input-placeholder{color:#444}.acf-field .select2-container .select2-search--inline .select2-search__field::-moz-placeholder{color:#444}.acf-field .select2-container .select2-search--inline .select2-search__field:-ms-input-placeholder{color:#444}.acf-field .select2-container .select2-search--inline .select2-search__field::-ms-input-placeholder{color:#444}.acf-field .select2-container .select2-search--inline .select2-search__field::placeholder{color:#444}.acf-field .select2-container .select2-selection__choice+.select2-search--inline .select2-search__field{padding-left:2px!important}.acf-field .select2-container .select2-selection--multiple{min-height:30px!important;line-height:1;border-radius:3px!important}.acf-field .select2-container--default .select2-selection--multiple .select2-selection__rendered{padding:0 2px!important}.acf-field .select2-container--default .select2-selection--multiple .select2-selection__choice{margin-right:2px!important;margin-top:2px!important;line-height:1.6;border-radius:3px!important;font-size:14px}.acf-field .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{float:right;margin-left:3px;margin-right:0;line-height:23px;font-size:15px;vertical-align:text-top}.acf-field .select2-container--default.select2-container--focus .select2-selection--multiple{border-color:#7e8993!important}.acf-field .select2-container--default .select2-selection--multiple .select2-selection__clear{margin-top:5px!important;margin-right:5px!important;font-size:16px}.acf-field>.acf-input>.select2 .select2-search{width:auto}.select2-container .select2-dropdown .select2-search__field{min-height:30px!important;border:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;padding:0 2px}.select2-container .select2-dropdown .select2-search__field::-webkit-input-placeholder{color:#777}.select2-container .select2-dropdown .select2-search__field::-moz-placeholder{color:#777}.select2-container .select2-dropdown .select2-search__field:-ms-input-placeholder{color:#777}.select2-container .select2-dropdown .select2-search__field::-ms-input-placeholder{color:#777}.select2-container .select2-dropdown .select2-search__field::placeholder{color:#777}.select2-selection__choice>code,.select2-selection__rendered>code{font-size:12px;padding:3px;vertical-align:1px;line-height:12px}.select2-results__option>code{font-size:12px}.acf-input-wrap .acf-is-prepended+.select2>.selection>.select2-selection{border-radius:0 3px 3px 0!important}.acf-input-wrap .acf-is-appended+.select2>.selection>.select2-selection{border-radius:3px 0 0 3px!important}.acf-input-wrap .acf-is-prepended.acf-is-appended+.select2>.selection>.select2-selection{border-radius:0!important}.acf-tab-group li a .acfe-tab-badge{border-radius:100px;background:#ddd;width:18px;height:18px;font-size:12px;display:inline-block;vertical-align:text-bottom;padding:0;text-align:center;margin-left:5px;line-height:18px}.acf-tab-group li a:hover .acfe-tab-badge,.acf-tab-group li.active a .acfe-tab-badge{background:#f1f1f1}.acf-field>.acf-input>.acf-input-wrap{overflow:initial}.acf-field>.acf-input>.acf-input-append+.acf-input-wrap,.acf-field>.acf-input>.acf-input-prepend+.acf-input-wrap{overflow:hidden}.menu-item-settings{position:initial}@media screen and (min-width:783px){.postbox .handle-order-higher,.postbox .handle-order-lower{visibility:hidden}.postbox:hover .handle-order-higher,.postbox:hover .handle-order-lower{visibility:visible}}.postbox .handle-order-higher,.postbox .handle-order-lower{vertical-align:bottom;width:1.42rem}.postbox .handle-order-higher .order-higher-indicator::before,.postbox .handle-order-lower .order-lower-indicator::before{font-size:15px;top:.23rem}.postbox .handlediv{width:1.62rem}.postbox .handlediv .toggle-indicator::before{text-indent:-7px;top:.1rem}#poststuff .stuffbox>h3,#poststuff h2,#poststuff h3.hndle{line-height:1.48}.acf-settings-wrap .acf-box{margin:16px 0}.acf-box .title{padding:8px 15px}.acf-box .title h3{line-height:1.4}.acf-columns-2{margin-right:300px;clear:both}.acf-columns-2:after{display:block;clear:both;content:""}html[dir=rtl] .acf-columns-2{margin-right:0;margin-left:300px}.acf-columns-2 .acf-column-1{float:left;width:100%}html[dir=rtl] .acf-columns-2 .acf-column-1{float:right}.acf-columns-2 .acf-column-2{float:right;margin-right:-300px;width:280px}html[dir=rtl] .acf-columns-2 .acf-column-2{float:left;margin-right:0;margin-left:-300px}@media only screen and (max-width:850px){.acf-columns-2{margin-right:0}.acf-columns-2 .acf-column-1,.acf-columns-2 .acf-column-2{float:none;width:auto;margin:0}}body.is-dragging-metaboxes #acf_after_title-sortables{outline:#646970 dashed 3px;display:flow-root;min-height:60px;margin-bottom:3px!important}
|
1 |
+
code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace;font-size:1em}pre{display:block;padding:9.5px;margin:0;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f9f9f9;border:1px solid #ccc;border-radius:1px;white-space:pre-wrap;overflow:auto}code{-webkit-user-select:all;-moz-user-select:all;user-select:all}pre>code{-webkit-user-select:inherit;-moz-user-select:inherit;-ms-user-select:inherit;user-select:inherit;padding:0;margin:0;background:0 0;font-size:1em;display:block}.code-codemirror>.CodeMirror,.pre-codemirror>.CodeMirror{border:1px solid #ccc;height:auto;width:auto;background:#f9f9f9;padding:9px 6px}.code-codemirror{display:inline;vertical-align:middle}.code-codemirror>.CodeMirror{display:inline-block;padding:0}.code-codemirror>.CodeMirror .CodeMirror-selected,.pre-codemirror>.CodeMirror .CodeMirror-selected{background:#ddd!important}.code-codemirror>.CodeMirror .CodeMirror-lines,.pre-codemirror>.CodeMirror .CodeMirror-lines{padding:0}.widget.open{z-index:inherit!important}.acfe-pre-highlight{display:block;padding:9.5px;margin:0;line-height:1.42857143;color:#333;background-color:#f9f9f9;border:1px solid #ccc;border-radius:1px;overflow:auto;font-family:Menlo,Monaco,Consolas,Courier New,monospace;font-size:1em;white-space:nowrap}.acf-postbox.seamless>.inside>.acf-field{padding:15px 12px}.acf-flexible-content .layout.ui-sortable-helper:first-child+.layout.ui-sortable-placeholder{margin-top:0}.acfe-postbox.acfe-postbox-no-handle h2.hndle{cursor:initial}.acfe-postbox.acfe-postbox-no-handle .handlediv{display:none}.acfe-postbox-top>.inside{position:relative}.acfe-postbox-top>.inside.-border{border:1px solid #ccd0d4;background:#fff}.acfe-postbox-top>.inside>.acf-field{position:relative;margin:0;padding:15px 12px;border-top:1px solid #eee}.acfe-postbox-top>.inside>.acf-field:first-child{border-top:none;margin-top:0}.acfe-postbox-left>.inside{position:relative}.acfe-postbox-left>.inside:after{display:block;clear:both;content:""}.acfe-postbox-left>.inside.-border{border:1px solid #ccd0d4;background:#fff}.acfe-postbox-left>.inside>.acf-field{position:relative;margin:0;border-top:1px solid #eee;padding:15px 0}.acfe-postbox-left>.inside>.acf-field:first-child{border-top:none;margin-top:0}.acfe-postbox-left>.inside.-clear>.acf-field{border:none;padding:0;margin:15px 0}.acfe-postbox-left>.inside>.acf-field:after{display:block;clear:both;content:""}.acfe-postbox-left>.inside>.acf-field:before{content:"";display:block;position:absolute;z-index:0;background:#f9f9f9;border-color:#e1e1e1;border-style:solid;border-width:0 1px 0 0;top:0;bottom:0;left:0;width:20%}.acfe-postbox-left>.inside>.acf-field[data-width]{float:none;width:auto!important;border-left-width:0!important;border-right-width:0!important}.acfe-postbox-left>.inside>.acf-field>.acf-label{float:left;width:20%;margin:0;padding:0 12px}.acfe-postbox-left>.inside>.acf-field>.acf-input{float:left;width:80%;margin:0;padding:0 12px}html[dir=rtl] .acfe-postbox-left>.inside>.acf-field:before{border-width:0 0 0 1px;left:auto;right:0}html[dir=rtl] .acfe-postbox-left>.inside>.acf-field>.acf-input,html[dir=rtl] .acfe-postbox-left>.inside>.acf-field>.acf-label{float:right}#side-sortables .acfe-postbox-left>.inside>.acf-field:before{display:none}#side-sortables .acfe-postbox-left>.inside>.acf-field>.acf-label{width:100%;margin-bottom:10px}#side-sortables .acfe-postbox-left>.inside>.acf-field>.acf-input{width:100%}@media screen and (max-width:640px){.acfe-postbox-left>.inside>.acf-field:before{display:none}.acfe-postbox-left>.inside>.acf-field>.acf-label{width:100%;margin-bottom:10px}.acfe-postbox-left>.inside>.acf-field>.acf-input{width:100%}}.wrap .acfe-dop-admin-config,.wrap .acfe-dpt-admin-config,.wrap .acfe-dt-admin-config{display:inline-block;padding-left:4px;padding-right:4px}.wrap .acfe-dop-admin-config:active,.wrap .acfe-dpt-admin-config:active,.wrap .acfe-dt-admin-config:active{padding-left:4px;padding-right:4px}.wrap .acfe-dop-admin-config span,.wrap .acfe-dpt-admin-config span,.wrap .acfe-dt-admin-config span{font-size:16px;vertical-align:text-top;height:15px;width:19px;line-height:19px}body.post-type-acfe-dbt #minor-publishing-actions,body.post-type-acfe-dbt #misc-publishing-actions #visibility,body.post-type-acfe-dbt #misc-publishing-actions .edit-post-status,body.post-type-acfe-dbt #misc-publishing-actions .edit-timestamp,body.post-type-acfe-dop #minor-publishing-actions,body.post-type-acfe-dop #misc-publishing-actions #visibility,body.post-type-acfe-dop #misc-publishing-actions .edit-post-status,body.post-type-acfe-dop #misc-publishing-actions .edit-timestamp,body.post-type-acfe-dpt #minor-publishing-actions,body.post-type-acfe-dpt #misc-publishing-actions #visibility,body.post-type-acfe-dpt #misc-publishing-actions .edit-post-status,body.post-type-acfe-dpt #misc-publishing-actions .edit-timestamp,body.post-type-acfe-dt #minor-publishing-actions,body.post-type-acfe-dt #misc-publishing-actions #visibility,body.post-type-acfe-dt #misc-publishing-actions .edit-post-status,body.post-type-acfe-dt #misc-publishing-actions .edit-timestamp,body.post-type-acfe-form #minor-publishing-actions,body.post-type-acfe-form #misc-publishing-actions #visibility,body.post-type-acfe-form #misc-publishing-actions .edit-post-status,body.post-type-acfe-form #misc-publishing-actions .edit-timestamp,body.post-type-acfe-template #minor-publishing-actions,body.post-type-acfe-template #misc-publishing-actions #visibility,body.post-type-acfe-template #misc-publishing-actions .edit-post-status,body.post-type-acfe-template #misc-publishing-actions .edit-timestamp{display:none!important}body.post-type-acfe-dbt .acfe-misc-export,body.post-type-acfe-dop .acfe-misc-export,body.post-type-acfe-dpt .acfe-misc-export,body.post-type-acfe-dt .acfe-misc-export,body.post-type-acfe-form .acfe-misc-export,body.post-type-acfe-template .acfe-misc-export{padding-top:2px}body.post-type-acfe-dbt .acfe-misc-export span.dashicons,body.post-type-acfe-dop .acfe-misc-export span.dashicons,body.post-type-acfe-dpt .acfe-misc-export span.dashicons,body.post-type-acfe-dt .acfe-misc-export span.dashicons,body.post-type-acfe-form .acfe-misc-export span.dashicons,body.post-type-acfe-template .acfe-misc-export span.dashicons{font-size:18px;color:#82878c;line-height:1.2;width:18px;margin-right:4px}body.post-type-acfe-dbt.post-new-php .acfe-misc-export,body.post-type-acfe-dop.post-new-php .acfe-misc-export,body.post-type-acfe-dpt.post-new-php .acfe-misc-export,body.post-type-acfe-dt.post-new-php .acfe-misc-export,body.post-type-acfe-form.post-new-php .acfe-misc-export,body.post-type-acfe-template.post-new-php .acfe-misc-export{display:none}body.post-type-acfe-dbt .status-acf-disabled .column-title a,body.post-type-acfe-dbt .status-acf-disabled .column-title code,body.post-type-acfe-dop .status-acf-disabled .column-title a,body.post-type-acfe-dop .status-acf-disabled .column-title code,body.post-type-acfe-dpt .status-acf-disabled .column-title a,body.post-type-acfe-dpt .status-acf-disabled .column-title code,body.post-type-acfe-dt .status-acf-disabled .column-title a,body.post-type-acfe-dt .status-acf-disabled .column-title code,body.post-type-acfe-form .status-acf-disabled .column-title a,body.post-type-acfe-form .status-acf-disabled .column-title code,body.post-type-acfe-template .status-acf-disabled .column-title a,body.post-type-acfe-template .status-acf-disabled .column-title code{color:#555!important}body.post-type-acfe-dbt .status-acf-disabled .column-title strong,body.post-type-acfe-dop .status-acf-disabled .column-title strong,body.post-type-acfe-dpt .status-acf-disabled .column-title strong,body.post-type-acfe-dt .status-acf-disabled .column-title strong,body.post-type-acfe-form .status-acf-disabled .column-title strong,body.post-type-acfe-template .status-acf-disabled .column-title strong{color:#a0a5aa}body.post-type-acfe-dbt .column-acfe-posts,body.post-type-acfe-dbt .column-acfe-terms,body.post-type-acfe-dop .column-acfe-posts,body.post-type-acfe-dop .column-acfe-terms,body.post-type-acfe-dpt .column-acfe-posts,body.post-type-acfe-dpt .column-acfe-terms,body.post-type-acfe-dt .column-acfe-posts,body.post-type-acfe-dt .column-acfe-terms,body.post-type-acfe-form .column-acfe-posts,body.post-type-acfe-form .column-acfe-terms,body.post-type-acfe-template .column-acfe-posts,body.post-type-acfe-template .column-acfe-terms{width:120px}#acfe-author>.inside{margin:0!important;padding:0!important}#acfe-author>.inside>.acf-field{margin:0;padding:15px 12px}.edit-post-layout__metaboxes:not(:empty){background:#f3f4f5;padding:10px 10px 0!important}.edit-post-layout__metaboxes .edit-post-meta-boxes-area .postbox{margin-bottom:10px;border:1px solid #e1e1e1}.edit-post-layout__metaboxes .edit-post-meta-boxes-area .postbox>.inside{border-bottom:0}#acf-admin-tool-acfe_dynamic_block_types_export ul,#acf-admin-tool-acfe_dynamic_forms_export ul,#acf-admin-tool-acfe_dynamic_options_pages_export ul,#acf-admin-tool-acfe_dynamic_post_types_export ul,#acf-admin-tool-acfe_dynamic_taxonomies_export ul{-webkit-column-width:200px;-moz-column-width:200px;column-width:200px}#acf-admin-tool-acfe_dynamic_block_types_export .acf-postbox-columns,#acf-admin-tool-acfe_dynamic_forms_export .acf-postbox-columns,#acf-admin-tool-acfe_dynamic_options_pages_export .acf-postbox-columns,#acf-admin-tool-acfe_dynamic_post_types_export .acf-postbox-columns,#acf-admin-tool-acfe_dynamic_taxonomies_export .acf-postbox-columns{margin-right:0}.acf-meta-box-wrap.-grid #acf-admin-tool-acfe-fg-local{display:none}#acfe-admin-settings .inside>.acf-field{display:-webkit-box;display:-ms-flexbox;display:flex;padding:0}#acfe-admin-settings .inside>.acf-field>.acf-label{padding-top:15px;padding-bottom:15px;float:none}#acfe-admin-settings .inside>.acf-field>.acf-label label span.acf-js-tooltip{float:right;font-size:14px;color:#ccc}#acfe-admin-settings .inside>.acf-field>.acf-input{display:-webkit-box;display:-ms-flexbox;display:flex;float:none;padding:0}#acfe-admin-settings .inside>.acf-field>.acf-input>div{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;max-width:50%;padding:8px;min-width:0}#acfe-admin-settings .inside>.acf-field>.acf-input>div:nth-child(2){border-left:1px solid #eee}#acfe-admin-settings .inside>.acf-field>.acf-input .acfe-settings-text{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;max-width:100%;display:inline-block}#acfe-admin-settings .inside>.acf-field>.acf-input .acfe-settings-text>code{font-size:12px}#acfe-admin-settings .inside>.acf-field>.acf-input .dashicons-saved{font-size:21px;display:inline}#acfe-admin-settings .inside>.acf-field>.acf-input .dashicons-no-alt{color:#ccc;font-size:21px;display:inline}#acfe-admin-settings .inside>.acf-field.acfe-settings-thead>.acf-input{padding:0;border-bottom:1px solid #eee}#acfe-admin-settings .inside>.acf-field.acfe-settings-thead+.acf-field{border-top:0}.settings_page_acfe-options .column-option_id{width:65px}.settings_page_acfe-options .column-option_name{width:435px}.settings_page_acfe-options .column-autoload{width:100px;text-align:center}.acf-field[data-name=acfe_form_action_docs]{padding:0!important;border:0!important;position:absolute!important;top:12px;right:11px;z-index:3}.acf-field[data-name=acfe_form_action_docs]::before{background:0 0!important;border:0!important}.acf-field[data-name=acfe_form_action_docs]>.acf-label{min-height:0!important}.acf-field[data-name=acfe_form_action_docs]>.acf-input{float:none!important;width:auto!important;padding:0!important}.acf-field[data-name=acfe_form_action_docs]+.acf-field,.acf-field[data-name=acfe_form_action_docs]+.acf-tab-wrap>.acf-tab-group{border-top:0}.acf-field[data-name=acfe_form_post_save_post_content_custom],.acf-field[data-name=acfe_form_post_save_post_excerpt_custom],.acf-field[data-name=acfe_form_post_save_post_name_custom],.acf-field[data-name=acfe_form_post_save_post_title_custom],.acf-field[data-name=acfe_form_term_save_description_custom],.acf-field[data-name=acfe_form_term_save_name_custom],.acf-field[data-name=acfe_form_term_save_slug_custom],.acf-field[data-name=acfe_form_user_save_description_custom],.acf-field[data-name=acfe_form_user_save_display_name_custom],.acf-field[data-name=acfe_form_user_save_email_custom],.acf-field[data-name=acfe_form_user_save_first_name_custom],.acf-field[data-name=acfe_form_user_save_last_name_custom],.acf-field[data-name=acfe_form_user_save_nickname_custom],.acf-field[data-name=acfe_form_user_save_password_custom],.acf-field[data-name=acfe_form_user_save_username_custom],.acf-field[data-name=acfe_form_user_save_website_custom]{border-top:0!important;padding-top:0!important}.acf-field.acf-field-acfe-form-attributes>.acf-input>.acf-fields>.acf-field,.acf-field.acf-field-acfe-form-fields-attributes>.acf-input>.acf-fields>.acf-field{border-left-width:0}.acf-field-repeater.acf-field-acfe-form-email-files-static>.acf-input>.acf-repeater>.acf-actions,.acf-field-repeater.acf-field-acfe-form-email-files>.acf-input>.acf-repeater>.acf-actions{text-align:left}.misc-pub-acfe-object-category::before,.misc-pub-acfe-object-data::before,.misc-pub-acfe-object-id::before,.misc-pub-acfe-object-meta::before,.misc-pub-acfe-object-role::before,.misc-pub-acfe-object-single-meta::before,.misc-pub-acfe-object-type::before{font:19px/1 dashicons;speak:never;display:inline-block;margin-left:-1px;padding-right:3px;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#8c8f94;content:"\f173";margin-right:1px}.misc-pub-acfe-object-id::before{content:"\f464"}.misc-pub-acfe-object-type::before{content:"\f109"}.misc-pub-acfe-object-role::before{content:"\f338"}.misc-pub-acfe-object-category::before{content:"\f318"}.misc-pub-acfe-object-data::before{content:"\f206"}.misc-pub-acfe-object-meta::before{content:"\f17e"}.misc-pub-acfe-object-single-meta::before{content:"\f106"}.acfe-list-postboxes .postbox>.postbox-header>h2.hndle{cursor:initial}.acfe-list-postboxes .postbox>.postbox-header>.handle-actions>.acf-hndle-cog{width:2.2rem}.acfe-list-postboxes .postbox>.postbox-header>.handle-actions>button,.acfe-list-postboxes .postbox>.postbox-header>.handle-actions>span{display:none}.acfe-list-postboxes .postbox>.acf-fields>#acf-form-data+.acf-field{border-top:none;margin-top:0}.acfe-list-postboxes.-side{min-width:auto!important}#acfe-clean-meta>.inside{margin:0!important;padding:15px 12px!important}.postbox#acfe-acf-custom-fields>.inside,.postbox#acfe-wp-custom-fields>.inside{padding:0;margin:0}.postbox#acfe-acf-custom-fields>.inside .wp-list-table,.postbox#acfe-wp-custom-fields>.inside .wp-list-table{border:0}.postbox#acfe-acf-custom-fields>.inside .wp-list-table .col-name,.postbox#acfe-wp-custom-fields>.inside .wp-list-table .col-name{width:30%}.postbox#acfe-acf-custom-fields>.inside .wp-list-table .col-value,.postbox#acfe-wp-custom-fields>.inside .wp-list-table .col-value{width:auto}.postbox#acfe-acf-custom-fields>.inside .wp-list-table .col-field-type,.postbox#acfe-wp-custom-fields>.inside .wp-list-table .col-field-type{width:100px}.postbox#acfe-acf-custom-fields>.inside .wp-list-table .col-field-group,.postbox#acfe-wp-custom-fields>.inside .wp-list-table .col-field-group{width:120px}.postbox#acfe-acf-custom-fields>.inside .wp-list-table .col-autoload,.postbox#acfe-wp-custom-fields>.inside .wp-list-table .col-autoload{width:65px}.postbox#acfe-acf-custom-fields+.acfe_dev_bulk_actions,.postbox#acfe-wp-custom-fields+.acfe_dev_bulk_actions{padding-top:0;margin-top:-8px;margin-bottom:20px}.postbox#acfe-acf-custom-fields+.acfe_dev_bulk_actions:last-child,.postbox#acfe-wp-custom-fields+.acfe_dev_bulk_actions:last-child{margin-bottom:0}.postbox#acfe-acf-custom-fields em,.postbox#acfe-wp-custom-fields em{color:#aaa}.postbox#acfe-acf-custom-fields .acfe_dev_meta_count,.postbox#acfe-wp-custom-fields .acfe_dev_meta_count{background:#72777c;padding:1px 5px;border-radius:4px;color:#fff;margin-left:7px;font-size:12px;margin-right:auto}.postbox#acfe-acf-custom-fields pre,.postbox#acfe-wp-custom-fields pre{max-height:200px;overflow:auto;white-space:pre}.postbox#acfe-acf-custom-fields pre.raw,.postbox#acfe-wp-custom-fields pre.raw{white-space:unset;margin-top:10px;max-width:100%}@media only screen and (max-width:1100px){.postbox#acfe-acf-custom-fields thead,.postbox#acfe-wp-custom-fields thead{display:none}.postbox#acfe-acf-custom-fields tbody tr,.postbox#acfe-wp-custom-fields tbody tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.postbox#acfe-acf-custom-fields tbody td,.postbox#acfe-acf-custom-fields tbody th,.postbox#acfe-wp-custom-fields tbody td,.postbox#acfe-wp-custom-fields tbody th{display:block}.postbox#acfe-acf-custom-fields tbody td:first-of-type,.postbox#acfe-wp-custom-fields tbody td:first-of-type{-webkit-box-flex:1;-ms-flex:1;flex:1}.postbox#acfe-acf-custom-fields tbody td:first-of-type strong,.postbox#acfe-wp-custom-fields tbody td:first-of-type strong{display:inline-block;word-break:break-all}.postbox#acfe-acf-custom-fields tbody td:first-of-type .row-actions,.postbox#acfe-wp-custom-fields tbody td:first-of-type .row-actions{display:inline-block;padding:0;float:right}@media only screen and (max-width:850px){.postbox#acfe-acf-custom-fields tbody td:first-of-type,.postbox#acfe-wp-custom-fields tbody td:first-of-type{line-height:2.2}.postbox#acfe-acf-custom-fields tbody td:first-of-type .row-actions,.postbox#acfe-wp-custom-fields tbody td:first-of-type .row-actions{left:auto}}.postbox#acfe-acf-custom-fields tbody td:first-of-type .row-actions .delete,.postbox#acfe-acf-custom-fields tbody td:first-of-type .row-actions a,.postbox#acfe-wp-custom-fields tbody td:first-of-type .row-actions .delete,.postbox#acfe-wp-custom-fields tbody td:first-of-type .row-actions a{padding:0}.postbox#acfe-acf-custom-fields tbody td:nth-child(3),.postbox#acfe-wp-custom-fields tbody td:nth-child(3){-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}}.acf-tab-group li a .acfe-tab-badge{border-radius:100px;background:#ddd;width:18px;height:18px;font-size:12px;display:inline-block;vertical-align:text-bottom;padding:0;text-align:center;margin-left:5px;line-height:18px}.acf-tab-group li a:hover .acfe-tab-badge,.acf-tab-group li.active a .acfe-tab-badge{background:#f1f1f1}.acf-field>.acf-input>.acf-input-wrap{overflow:initial}.acf-field>.acf-input>.acf-input-append+.acf-input-wrap,.acf-field>.acf-input>.acf-input-prepend+.acf-input-wrap{overflow:hidden}.menu-item-settings{position:initial}@media screen and (min-width:783px){.postbox .handle-order-higher,.postbox .handle-order-lower{visibility:hidden}.postbox:hover .handle-order-higher,.postbox:hover .handle-order-lower{visibility:visible}}.postbox .handle-order-higher,.postbox .handle-order-lower{vertical-align:bottom;width:1.42rem}.postbox .handle-order-higher .order-higher-indicator::before,.postbox .handle-order-lower .order-lower-indicator::before{font-size:15px;top:.23rem}.postbox .handlediv{width:1.62rem}.postbox .handlediv .toggle-indicator::before{text-indent:-7px;top:.1rem}#poststuff .stuffbox>h3,#poststuff h2,#poststuff h3.hndle{line-height:1.48}.acf-settings-wrap .acf-box{margin:16px 0}.acf-box .title{padding:8px 15px}.acf-box .title h3{line-height:1.4}.acf-columns-2{margin-right:300px;clear:both}.acf-columns-2:after{display:block;clear:both;content:""}html[dir=rtl] .acf-columns-2{margin-right:0;margin-left:300px}.acf-columns-2 .acf-column-1{float:left;width:100%}html[dir=rtl] .acf-columns-2 .acf-column-1{float:right}.acf-columns-2 .acf-column-2{float:right;margin-right:-300px;width:280px}html[dir=rtl] .acf-columns-2 .acf-column-2{float:left;margin-right:0;margin-left:-300px}@media only screen and (max-width:850px){.acf-columns-2{margin-right:0}.acf-columns-2 .acf-column-1,.acf-columns-2 .acf-column-2{float:none;width:auto;margin:0}}body.is-dragging-metaboxes #acf_after_title-sortables{outline:#646970 dashed 3px;display:flow-root;min-height:60px;margin-bottom:3px!important}.acf-field .select2-container.-acf .select2-selection--single{border-radius:3px;height:30px;outline:0}.acf-field .select2-container.-acf .select2-selection--single .select2-selection__rendered{font-size:14px;height:28px;line-height:27px;padding-right:23px}.acf-field .select2-container.-acf .select2-selection--single .select2-selection__clear{line-height:26px;height:28px;font-size:16px;margin-right:0}.acf-field .select2-container.-acf .select2-selection--single button.select2-selection__clear{position:absolute;right:24px;padding:0}.acf-field .select2-container.-acf .select2-selection--single button.select2-selection__clear span{line-height:26px;height:28px;display:inline-block}.acf-field .select2-container.-acf .select2-selection--single .select2-selection__placeholder{color:#444}.acf-field .select2-container.-acf .select2-selection--single .select2-selection__arrow{height:28px}.acf-field .select2-container.-acf .select2-selection--single .select2-selection__arrow b{background:url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') 0 0/16px 16px no-repeat;border:0;width:16px;height:16px;margin-left:-11px;margin-top:-7px}.acf-field .select2-container.-acf.select2-container--open .select2-selection--single,.acf-field .select2-container.-acf:focus .select2-selection--single{border-color:#007cba;color:#016087;-webkit-box-shadow:0 0 0 1px #007cba;box-shadow:0 0 0 1px #007cba}.select2-container .select2-dropdown .select2-search--dropdown .select2-search__field{min-height:30px;border:0;-webkit-box-shadow:none;box-shadow:none;padding:0 2px}.select2-container .select2-dropdown .select2-search--dropdown .select2-search__field::-webkit-input-placeholder{color:#777}.select2-container .select2-dropdown .select2-search--dropdown .select2-search__field::-moz-placeholder{color:#777}.select2-container .select2-dropdown .select2-search--dropdown .select2-search__field:-ms-input-placeholder{color:#777}.select2-container .select2-dropdown .select2-search--dropdown .select2-search__field::-ms-input-placeholder{color:#777}.select2-container .select2-dropdown .select2-search--dropdown .select2-search__field::placeholder{color:#777}.select2-container .select2-dropdown .select2-results__option{margin-bottom:0}.acf-field .select2-container.-acf .select2-selection--multiple{min-height:30px;line-height:1;border-radius:3px;padding:0}.acf-field .select2-container.-acf .select2-selection--multiple .select2-selection__rendered{padding:0 2px;display:inline-block;margin:0}.acf-field .select2-container.-acf .select2-selection--multiple .select2-selection__choice{margin-right:2px;margin-top:2px;line-height:1.6;border-radius:3px;font-size:14px;margin-left:0;display:inline-block;vertical-align:unset;padding:0 5px}.acf-field .select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__display{padding:0}.acf-field .select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove{float:right;margin-left:3px;margin-right:0;line-height:23px;font-size:15px;vertical-align:text-top;position:static;padding:0;border:0;margin-top:0}.acf-field .select2-container.-acf .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover{background:0 0}.acf-field .select2-container.-acf .select2-selection--multiple .select2-selection__clear{margin-top:0;margin-right:6px;font-size:16px;padding:0;line-height:26px;height:27px;position:relative}.acf-field .select2-container.-acf .select2-selection--multiple button.select2-selection__clear{float:right}.acf-field .select2-container.-acf .select2-selection--multiple .select2-search--inline{float:left;width:auto}.acf-field .select2-container.-acf .select2-selection--multiple .select2-search--inline .select2-search__field{margin-top:4px;font-size:14px;padding-left:2px;margin-left:0}.acf-field .select2-container.-acf .select2-selection--multiple .select2-search--inline .select2-search__field::-webkit-input-placeholder{color:#444}.acf-field .select2-container.-acf .select2-selection--multiple .select2-search--inline .select2-search__field::-moz-placeholder{color:#444}.acf-field .select2-container.-acf .select2-selection--multiple .select2-search--inline .select2-search__field:-ms-input-placeholder{color:#444}.acf-field .select2-container.-acf .select2-selection--multiple .select2-search--inline .select2-search__field::-ms-input-placeholder{color:#444}.acf-field .select2-container.-acf .select2-selection--multiple .select2-search--inline .select2-search__field::placeholder{color:#444}.acf-field .select2-container.-acf .select2-selection--multiple .select2-search--inline:first-child:last-child .select2-search__field{padding-left:6px}.acf-field .select2-container.-acf .select2-selection--multiple .select2-selection__rendered+.select2-search--inline{float:none;display:inline-block;vertical-align:top}.acf-field .select2-container.-acf .select2-selection--multiple .select2-selection__rendered+.select2-search--inline .select2-search__field{height:22px;line-height:1.4;padding-left:0;font-family:inherit;border-radius:0;margin-top:4px!important}.acf-field .select2-container.-acf.select2-container--focus .select2-selection--multiple,.acf-field .select2-container.-acf.select2-container--open .select2-selection--multiple{border-color:#7e8993}.select2-selection__choice>code,.select2-selection__rendered>code{font-size:12px;padding:3px;vertical-align:1px;line-height:12px}.select2-results__option>code{font-size:12px}.acf-input-wrap .acf-is-prepended+.select2>.selection>.select2-selection{border-radius:0 3px 3px 0!important}.acf-input-wrap .acf-is-appended+.select2>.selection>.select2-selection{border-radius:3px 0 0 3px!important}.acf-input-wrap .acf-is-prepended.acf-is-appended+.select2>.selection>.select2-selection{border-radius:0!important}body:not(.acf-admin-5-3) .acf-field .select2-container .select2-selection,body:not(.acf-admin-5-3) .acf-field .select2-container .select2-selection__choice{border-color:#dfdfdf!important;border-radius:0!important}body:not(.acf-admin-5-3) .acf-field .select2-container .select2-search--inline .select2-search__field{margin-top:0!important}body:not(.acf-admin-5-3) .acf-field .select2-dropdown{border-color:#dfdfdf!important;border-radius:0!important}
|
assets/css/acfe-input.css
CHANGED
@@ -188,7 +188,9 @@ body:not(.acf-admin-5-3) .acf-field-acfe-code-editor>.acf-input>.acf-input-wrap>
|
|
188 |
display: -ms-flexbox;
|
189 |
display: flex;
|
190 |
-ms-flex-wrap: wrap;
|
191 |
-
flex-wrap: wrap
|
|
|
|
|
192 |
}
|
193 |
|
194 |
.acf-fields.acfe-column-wrapper>.acf-tab-wrap {
|
@@ -1041,6 +1043,16 @@ body:not(.acf-admin-5-3) .layout>.acfe-fc-placeholder>a span {
|
|
1041 |
border-width: 0
|
1042 |
}
|
1043 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1044 |
.acf-fields.-left>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input {
|
1045 |
margin: 0
|
1046 |
}
|
@@ -1060,23 +1072,26 @@ body:not(.acf-admin-5-3) .layout>.acfe-fc-placeholder>a span {
|
|
1060 |
}
|
1061 |
|
1062 |
.acf-fields.-left>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input>.acf-fields,
|
|
|
|
|
1063 |
.acf-fields.-left>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-input>.acf-table {
|
1064 |
border-width: 0
|
1065 |
}
|
1066 |
|
1067 |
-
.acf-fields>.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields,
|
1068 |
-
.acf-fields>.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-table {
|
1069 |
-
border-width: 0
|
1070 |
-
}
|
1071 |
-
|
1072 |
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input,
|
|
|
1073 |
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input,
|
|
|
|
|
1074 |
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-table {
|
1075 |
margin: 0
|
1076 |
}
|
1077 |
|
1078 |
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input>.acf-fields,
|
|
|
1079 |
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input>.acf-fields,
|
|
|
|
|
1080 |
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-input>.acf-table {
|
1081 |
border-width: 1px
|
1082 |
}
|
@@ -1087,11 +1102,6 @@ body:not(.acf-admin-5-3) .layout>.acfe-fc-placeholder>a span {
|
|
1087 |
padding: 0 12px
|
1088 |
}
|
1089 |
|
1090 |
-
.acf-fields>.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acf-fields,
|
1091 |
-
.acf-fields>.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acf-table {
|
1092 |
-
display: none
|
1093 |
-
}
|
1094 |
-
|
1095 |
tr.acf-field.acf-field-group.acfe-seamless-style>td.acf-input>.acf-fields {
|
1096 |
border: 0;
|
1097 |
margin-left: -10px;
|
188 |
display: -ms-flexbox;
|
189 |
display: flex;
|
190 |
-ms-flex-wrap: wrap;
|
191 |
+
flex-wrap: wrap;
|
192 |
+
-ms-flex-line-pack: start;
|
193 |
+
align-content: flex-start
|
194 |
}
|
195 |
|
196 |
.acf-fields.acfe-column-wrapper>.acf-tab-wrap {
|
1043 |
border-width: 0
|
1044 |
}
|
1045 |
|
1046 |
+
.acf-fields>.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields,
|
1047 |
+
.acf-fields>.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-table {
|
1048 |
+
border-width: 0
|
1049 |
+
}
|
1050 |
+
|
1051 |
+
.acf-fields>.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acf-fields,
|
1052 |
+
.acf-fields>.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acf-table {
|
1053 |
+
display: none
|
1054 |
+
}
|
1055 |
+
|
1056 |
.acf-fields.-left>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input {
|
1057 |
margin: 0
|
1058 |
}
|
1072 |
}
|
1073 |
|
1074 |
.acf-fields.-left>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input>.acf-fields,
|
1075 |
+
.acf-fields.-left>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input>.acf-table,
|
1076 |
+
.acf-fields.-left>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-input>.acf-fields,
|
1077 |
.acf-fields.-left>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-input>.acf-table {
|
1078 |
border-width: 0
|
1079 |
}
|
1080 |
|
|
|
|
|
|
|
|
|
|
|
1081 |
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input,
|
1082 |
+
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-table,
|
1083 |
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input,
|
1084 |
+
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-table,
|
1085 |
+
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-input,
|
1086 |
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-table {
|
1087 |
margin: 0
|
1088 |
}
|
1089 |
|
1090 |
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input>.acf-fields,
|
1091 |
+
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input>.acf-table,
|
1092 |
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input>.acf-fields,
|
1093 |
+
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input>.acf-table,
|
1094 |
+
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-input>.acf-fields,
|
1095 |
.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-input>.acf-table {
|
1096 |
border-width: 1px
|
1097 |
}
|
1102 |
padding: 0 12px
|
1103 |
}
|
1104 |
|
|
|
|
|
|
|
|
|
|
|
1105 |
tr.acf-field.acf-field-group.acfe-seamless-style>td.acf-input>.acf-fields {
|
1106 |
border: 0;
|
1107 |
margin-left: -10px;
|
assets/css/acfe-input.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.acf-field .acf-label label{font-weight:600}.acf-field p.description{word-break:break-word}.acf-fields.-left>.acf-field>.acf-label,.acfe-postbox-left>.inside>.acf-field>.acf-label{min-height:1px}#side-sortables .acf-fields>.acf-field.acfe-no-label>.acf-label,.acf-field.acfe-no-label>.acf-label{margin:0}#side-sortables .acf-fields>.acf-field.acfe-no-label>.acf-label>label,.acf-field.acfe-no-label>.acf-label>label{display:none}#side-sortables .acf-fields>.acf-field.acfe-no-label>.acf-label>p.description,.acf-field.acfe-no-label>.acf-label>p.description{margin-bottom:10px}body .medium-editor-toolbar{z-index:999999!important}.acf-accordion{z-index:initial}.acf-link.-value .acfe-modal .button{display:inline-block}.acf-field-checkbox .acf-input .acf-checkbox-list.acf-bl li+li>strong{margin-top:15px;display:inline-block}.acf-fields>.acf-field-clone.acfe-field-clone-layout-block.acfe-seamless-style:not([data-acfe-clone-modal="1"])>.acf-input,.acf-fields>.acf-field-clone.acfe-field-clone-layout-row.acfe-seamless-style:not([data-acfe-clone-modal="1"])>.acf-input{margin-left:-12px;margin-right:-12px;margin-bottom:-15px}.acf-fields>.acf-field-clone.acfe-field-clone-layout-block.acfe-no-label.acfe-seamless-style:not([data-acfe-clone-modal="1"])>.acf-input,.acf-fields>.acf-field-clone.acfe-field-clone-layout-row.acfe-no-label.acfe-seamless-style:not([data-acfe-clone-modal="1"])>.acf-input{margin-top:-15px}.acf-fields>.acf-field-clone.acfe-field-clone-layout-block.acfe-seamless-style.acfe-no-label:not([data-acfe-clone-modal="1"])>.acf-label>p.description,.acf-fields>.acf-field-clone.acfe-field-clone-layout-row.acfe-seamless-style.acfe-no-label:not([data-acfe-clone-modal="1"])>.acf-label>p.description{margin-bottom:15px}.acf-fields>.acf-field-clone.acfe-field-clone-layout-row.acfe-no-label.acfe-seamless-style>.acf-input>.acf-fields{border-width:0}.acf-fields>.acf-field-clone.acfe-field-clone-layout-row.acfe-seamless-style>.acf-input>.acf-fields{border-left-width:0;border-right-width:0;border-bottom-width:0}.acf-fields>.acf-field-clone.acfe-field-clone-layout-block.acfe-seamless-style>.acf-input>.acf-fields{border-width:0}.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-row.acfe-seamless-style>.acf-input{margin:0}.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-row.acfe-seamless-style>.acf-input>.acf-fields{border-width:1px}.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-block.acfe-seamless-style:not([data-acfe-clone-modal="1"])>.acf-input,.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-table.acfe-seamless-style:not([data-acfe-clone-modal="1"])>.acf-input{padding:0 0 0 1px;margin:-15px 0}.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-block.acfe-seamless-style>.acf-input>.acf-fields,.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-table.acfe-seamless-style>.acf-input>.acf-table,.acf-fields>.acf-field-clone[data-acfe-clone-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields,.acf-fields>.acf-field-clone[data-acfe-clone-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-table{border-width:0}.acf-postbox.seamless>.acf-fields>.acf-field-clone.acfe-field-clone-layout-block.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields>.acf-field-clone.acfe-field-clone-layout-row.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields>.acf-field-clone.acfe-field-clone-layout-table.acfe-seamless-style>.acf-table{margin:0}.acf-postbox.seamless>.acf-fields>.acf-field-clone.acfe-field-clone-layout-block.acfe-seamless-style>.acf-input>.acf-fields,.acf-postbox.seamless>.acf-fields>.acf-field-clone.acfe-field-clone-layout-row.acfe-seamless-style>.acf-input>.acf-fields,.acf-postbox.seamless>.acf-fields>.acf-field-clone.acfe-field-clone-layout-table.acfe-seamless-style>.acf-input>.acf-table{border-width:1px}.acf-postbox.seamless>.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-block.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-row.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-table.acfe-seamless-style>.acf-input{padding:0 12px}tr.acf-field.acf-field-clone.acfe-seamless-style>td.acf-input>.acf-fields{border:0;margin:-15px -10px}tr.acf-field.acf-field-clone.acfe-seamless-style.acfe-field-clone-layout-table>td.acf-input{padding:0;margin:-15px 0}tr.acf-field.acf-field-clone.acfe-seamless-style.acfe-field-clone-layout-table>td.acf-input>.acf-table,tr.acf-field.acf-field-clone[data-acfe-clone-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields,tr.acf-field.acf-field-clone[data-acfe-clone-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-table{border-width:0}.acf-field-acfe-code-editor>.acf-input>.acf-input-wrap>.CodeMirror-wrap{height:auto}.acf-field-acfe-code-editor>.acf-input>.acf-input-wrap>.CodeMirror-wrap.cm-s-default{border:1px solid #7e8993;border-radius:4px}.acf-field-acfe-code-editor>.acf-input>.acf-input-wrap>.CodeMirror-wrap.cm-s-default .CodeMirror-gutters{border-right:1px solid #7e8993;background:#f9f9f9}.acf-field-acfe-code-editor>.acf-input>.acf-input-wrap>.CodeMirror-wrap.cm-s-default .CodeMirror-activeline-background{background:#f9f9f9}.acf-field-acfe-code-editor>.acf-input>.acf-input-wrap>.CodeMirror-wrap.cm-s-default .CodeMirror-selected{background:#f0f0f0!important}.acf-field-acfe-code-editor>td.acf-input{max-width:1px}body .CodeMirror-wrap pre{word-break:break-all}body:not(.acf-admin-5-3) .acf-field-acfe-code-editor>.acf-input>.acf-input-wrap>.CodeMirror-wrap.cm-s-default{border-color:#dfdfdf}.acfe-modal-content .acf-color-picker .wp-picker-holder{position:relative}.acf-fields.acfe-column-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.acf-fields.acfe-column-wrapper>.acf-field,.acf-fields.acfe-column-wrapper>.acf-tab-wrap{width:100%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0;border-top-width:0}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-endpoint="1"]{width:100%;border-top:1px solid #eee}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-endpoint="1"]+.acf-field:not(.acf-field-acfe-column),.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-endpoint="1"]:last-child{border-top:none}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="1/12"]{width:8.333333%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="2/12"]{width:16.66666%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="3/12"]{width:25%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="4/12"]{width:33.33333%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="5/12"]{width:41.66667%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="6/12"]{width:50%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="7/12"]{width:58.33333%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="8/12"]{width:66.66666%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="9/12"]{width:75%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="10/12"]{width:83.33333%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="11/12"]{width:91.66667%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="12/12"]{width:100%;border-right:0}@media only screen and (max-width:1024px){.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="1/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="10/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="11/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="2/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="3/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="4/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="5/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="7/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="8/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="9/12"]{width:50%}}@media only screen and (max-width:640px){.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="1/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="10/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="11/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="12/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="2/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="3/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="4/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="5/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="6/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="7/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="8/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="9/12"]{width:100%}}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column>.acf-input>.acf-fields>.acf-field{border-top-width:0}.acf-fields.acfe-column-wrapper.-left>.acf-field.acf-field-acfe-column>.acf-input{float:none;width:auto;margin:0;padding:0}.acf-fields.acfe-column-wrapper>.acfe-flexible-opened-actions{width:100%}.acf-postbox.seamless>.inside.acfe-column-wrapper{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.acf-ui-datepicker .ui-datepicker{padding:0;border-color:#7e8993!important;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff}.acf-ui-datepicker select{font-size:14px;cursor:pointer;vertical-align:middle;line-height:2;color:#32373c;border-color:#7e8993;-webkit-box-shadow:none;box-shadow:none;border-radius:3px;padding:0 24px 0 8px;min-height:30px;max-width:25rem;-webkit-appearance:none;background:url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') right 5px top 55%/16px 16px no-repeat #fff}.acf-ui-datepicker .ui-datepicker table{font-size:13px;margin:0 0 7px}.acf-ui-datepicker .ui-datepicker .ui-datepicker-header{border:none;background:#f9f9f9;color:#222;font-weight:400;border-radius:4px 4px 0}.acf-ui-datepicker .ui-datepicker .ui-datepicker-header .ui-state-hover{background:#f9f9f9;cursor:pointer;border-radius:0;border:0}.acf-ui-datepicker .ui-datepicker thead{background:#f9f9f9;color:#222}.acf-ui-datepicker .ui-datepicker .ui-datepicker-title{margin-top:.4em;margin-bottom:.3em;color:#222;font-size:14px}.acf-ui-datepicker .ui-datepicker .ui-datepicker-next,.acf-ui-datepicker .ui-datepicker .ui-datepicker-next-hover,.acf-ui-datepicker .ui-datepicker .ui-datepicker-prev,.acf-ui-datepicker .ui-datepicker .ui-datepicker-prev-hover{height:20px;width:20px;border:none;overflow:hidden;margin-top:15px;top:0}.acf-ui-datepicker .ui-datepicker .ui-datepicker-next-hover,.acf-ui-datepicker .ui-datepicker .ui-datepicker-prev-hover{background:0 0!important;color:#007cba!important}.acf-ui-datepicker .ui-datepicker .ui-datepicker-next{right:7px}.acf-ui-datepicker .ui-datepicker .ui-datepicker-prev{left:7px}.acf-ui-datepicker .ui-datepicker .ui-datepicker-next span,.acf-ui-datepicker .ui-datepicker .ui-datepicker-prev span{height:20px;width:20px;background:0 0;position:relative;margin:0;left:unset;top:unset;font-size:1px}.acf-ui-datepicker .ui-datepicker .ui-datepicker-next span:before,.acf-ui-datepicker .ui-datepicker .ui-datepicker-prev span:before{display:block;font-family:dashicons;line-height:1;font-weight:400;text-indent:0;font-style:normal;speak:none;text-decoration:inherit;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:20px;height:20px;font-size:16px;vertical-align:top;text-align:center}.acf-ui-datepicker .ui-datepicker .ui-datepicker-next span:before{content:"\f345"}.acf-ui-datepicker .ui-datepicker .ui-datepicker-prev span:before{content:"\f341"}.acf-ui-datepicker .ui-datepicker .ui-datepicker-title select{margin:0 3px}.acf-ui-datepicker .ui-datepicker th{padding:.75em 0;color:#222;font-weight:400;border:none;border-bottom:1px solid #e1e1e1;background:#f9f9f9}.acf-ui-datepicker .ui-datepicker td{background:#fff;border:none;padding:0}.acf-ui-datepicker .ui-datepicker td .ui-state-default{background:0 0;border:none;text-align:center;padding:.5em;margin:0;font-weight:400;color:#333}.acf-ui-datepicker .ui-datepicker td .ui-state-active,.acf-ui-datepicker .ui-datepicker td .ui-state-hover{background:#007cba;color:#fff;-webkit-box-shadow:none;box-shadow:none}.acf-ui-datepicker .ui-datepicker td.ui-state-disabled,.acf-ui-datepicker .ui-datepicker td.ui-state-disabled .ui-state-default{opacity:1;color:#999}.acf-ui-datepicker .ui-datepicker-today .ui-state-highlight{border:none!important;background:#eee!important;font-weight:400!important;color:#222!important}.acf-ui-datepicker .ui-state-highlight.ui-state-active,.acf-ui-datepicker .ui-state-highlight.ui-state-hover{border:none!important;background:#007cba!important;font-weight:400!important;color:#fff!important}.acf-ui-datepicker .ui-state-highlight.ui-state-hover.ui-state-active{background:#007cba!important}.acf-ui-datepicker .ui-timepicker-div{padding:10px 7px!important}.acf-ui-datepicker .ui-timepicker-div .ui-widget-header{background:0 0!important;border:0!important;display:none!important}.acf-ui-datepicker .ui-timepicker-div .ui-widget-header .ui-datepicker-title{font-size:13px!important;font-weight:600!important}.acf-ui-datepicker .ui-timepicker-div dl{margin:0;text-align:center!important}.acf-ui-datepicker .ui-timepicker-div .ui_tpicker_time_label{display:none!important}.acf-ui-datepicker .ui-timepicker-div select{background:url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') right 5px top 55%/16px 16px no-repeat #fff!important;color:#32373c!important;border-color:#7e8993!important}.acf-ui-datepicker .ui-datepicker-buttonpane{border:0!important;padding:7px!important;margin:0!important;background:#f9f9f9!important;border-top:1px solid #e1e1e1!important;border-radius:0 0 4px 4px!important}.acf-ui-datepicker .ui-datepicker-buttonpane:after{content:'';display:block;clear:both}.acf-ui-datepicker .ui-datepicker-buttonpane button{display:inline-block;text-decoration:none;font-size:13px!important;line-height:2.15384615;min-height:30px;margin:0!important;padding:0 10px!important;cursor:pointer!important;-webkit-appearance:none;border-radius:3px;font-weight:400!important;white-space:nowrap;-webkit-box-sizing:border-box;box-sizing:border-box;color:#0071a1!important;background:#f3f5f6!important;vertical-align:top;-webkit-box-shadow:none!important;box-shadow:none!important;outline:0!important;opacity:unset!important;-webkit-filter:unset!important;filter:unset!important;border:1px solid #0071a1!important}.acf-ui-datepicker .ui-datepicker-buttonpane button:hover{background:#f1f1f1!important;border-color:#016087!important;color:#016087!important}.acf-flexible-content .layout .acf-icon.acfe-flexible-icon.dashicons:before{font-family:dashicons}.acf-flexible-content .layout .acf-icon.acfe-flexible-icon.dashicons{visibility:hidden}.acf-flexible-content .layout .acf-icon.acfe-flexible-icon.dashicons.dashicons-admin-generic,.acf-flexible-content .layout:hover>.acf-fc-layout-controls .acf-icon.acfe-flexible-icon.dashicons{visibility:visible}.acf-flexible-content .layout .acf-icon.acfe-flexible-icon.dashicons.dashicons-admin-generic:before{margin-left:1px;line-height:.9}.acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-duplicate,.acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-minus,.acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-plus,.acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-duplicate,.acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-minus,.acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-plus{visibility:hidden}.acf-flexible-content .layout.-hover>.acf-fc-layout-controls .acf-icon.-duplicate,.acf-flexible-content .layout.-hover>.acf-fc-layout-controls .acf-icon.-minus,.acf-flexible-content .layout.-hover>.acf-fc-layout-controls .acf-icon.-plus,.acf-flexible-content .layout:hover>.acf-fc-layout-controls .acf-icon.-duplicate,.acf-flexible-content .layout:hover>.acf-fc-layout-controls .acf-icon.-minus,.acf-flexible-content .layout:hover>.acf-fc-layout-controls .acf-icon.-plus{visibility:visible}.acf-flexible-content .layout>.acf-fc-layout-controls .acf-icon.disabled{color:#ccc;cursor:initial}.acf-flexible-content .layout>.acf-fc-layout-controls .acf-icon.disabled:hover{color:#ccc;background:#f5f5f5}.acf-field-acfe-flexible-layout-title{display:none}input.acfe-flexible-control-title{border:none;-webkit-box-shadow:none!important;box-shadow:none!important;outline:0!important;border-radius:0;border-bottom:1px solid transparent!important;font-weight:600;width:auto!important;padding:0!important;display:none;min-height:20px;vertical-align:unset;background:0 0}.layout>.acf-fc-layout-handle .acfe-layout-title{cursor:text;position:relative}.layout:not(.acfe-flexible-title-edition)>.acf-fc-layout-handle .acfe-layout-title:hover{background:#f4f4f4}.layout.acfe-flexible-title-edition>.acf-fc-layout-handle .acfe-layout-title input.acfe-flexible-control-title{display:inline-block;border-bottom:1px solid #ddd!important}.layout.acfe-flexible-title-edition>.acf-fc-layout-handle .acfe-layout-title .acfe-layout-title-text{display:none}.layout.acfe-flexible-layout-hidden>.acf-fc-layout-controls,.layout.acfe-flexible-layout-hidden>.acf-fc-layout-handle,.layout.acfe-flexible-layout-hidden>.acf-fields,.layout.acfe-flexible-layout-hidden>.acfe-fc-placeholder{opacity:.5}.acf-field-flexible-content[data-acfe-flexible-modal-edition="1"]>.acf-input>.acf-flexible-content>.values>.layout>.acf-fc-layout-controls>a.-collapse{display:none}body.-loading *{cursor:wait!important}.acf-flexible-content>.values>.ui-sortable-placeholder{border-width:2px;border-color:#ccc}.acf-flexible-content .layout .acf-fc-layout-handle{color:#444;font-weight:600}.layout.acfe-flexible-modal-edit-error>.acf-fc-layout-handle{color:#f33b28}.layout.acfe-flexible-modal-edit-error>.acf-fc-layout-handle>.acf-fc-layout-order{background:#f33b28;color:#fff}.acf-field-flexible-content[data-acfe-flexible-modal-edition="1"]:not([data-acfe-flexible-placeholder="1"]):not([data-acfe-flexible-preview="1"])>.acf-input>.acf-flexible-content>.values>.layout>.acf-fc-layout-handle{border-bottom-width:0}.acf-field-flexible-content[data-acfe-flexible-placeholder="1"]>.acf-input>.acf-flexible-content>.values>.layout.-collapsed>.acf-fc-layout-handle,.acf-field-flexible-content[data-acfe-flexible-preview="1"]>.acf-input>.acf-flexible-content>.values>.layout.-collapsed>.acf-fc-layout-handle{border-bottom-width:1px}.acf-field-flexible-content[data-acfe-flexible-lock="1"]>.acf-input>.acf-flexible-content>.values>.layout>.acf-fc-layout-handle{cursor:pointer}.acf-fc-popup.top.acfe-fc-popup-grey:before{border-top-color:#e1e1e1}.acf-tooltip.bottom.acfe-fc-popup-grey:before{border-bottom-color:#e1e1e1}.acf-fc-popup.acfe-fc-popup-grey{background:#fcfcfc;border-radius:3px;color:#444;border:1px solid #e1e1e1;font-size:13px}.acf-tooltip.top.acfe-fc-popup-grey{margin-top:-16px}.acf-tooltip.bottom.acfe-fc-popup-grey{margin-bottom:-16px}.acf-fc-popup.acfe-fc-popup-grey a{color:#444}.acf-fc-popup.acfe-fc-popup-grey a:hover{color:#fff}.layout>.acfe-fc-placeholder{text-align:center;background:#f9f9f9;display:block;text-decoration:none;position:relative;cursor:pointer}.layout>.acfe-fc-placeholder:focus{border-color:#ccc;-webkit-box-shadow:none;box-shadow:none}.layout>.acfe-fc-placeholder>.acfe-flexible-placeholder{height:110px;overflow:hidden;text-align:initial}.layout>.acfe-fc-placeholder>a{z-index:2;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);border-color:#ccd0d4;color:#23282d;border-radius:100px;-webkit-box-shadow:none;box-shadow:none;background:#fff;width:30px;min-height:30px;height:30px;padding:0;display:block}body:not(.acf-admin-5-3) .layout>.acfe-fc-placeholder>a{border-color:#999}.acfe-modal.-open.acfe-modal-sub>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-flexible-content>.acf-input>.acf-flexible-content>.values>.layout>.acfe-fc-placeholder>a{z-index:0}.layout>.acfe-fc-placeholder>a:active{-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.layout>.acfe-fc-placeholder>a:focus{border-color:#ccc;-webkit-box-shadow:none;box-shadow:none}.layout>.acfe-fc-placeholder>a span{width:29px;height:30px;vertical-align:top;line-height:28px;font-size:18px}body:not(.acf-admin-5-3) .layout>.acfe-fc-placeholder>a span{width:30px;height:30px}.layout>.acfe-fc-placeholder.acfe-fc-preview{background:0 0}.layout>.acfe-fc-placeholder.acfe-fc-preview>.acfe-flexible-placeholder{min-height:55px;height:auto}.layout>.acfe-fc-placeholder.acfe-fc-preview>a{display:none}.layout>.acfe-fc-placeholder.acfe-fc-preview:hover>a{display:block}.layout>.acfe-fc-placeholder.acfe-fc-preview.-loading{background:#f9f9f9;min-height:110px}.layout>.acfe-fc-placeholder.acfe-fc-preview.-loading>.acfe-flexible-placeholder>.spinner{visibility:visible;float:none;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);margin:0;z-index:10000}.layout>.acfe-fc-placeholder .acfe-fc-overlay{position:absolute;width:100%;height:100%;padding:0;background-color:rgba(255,255,255,0);-webkit-transition:background-color .2s linear;-o-transition:background-color .2s linear;transition:background-color .2s linear}.layout>.acfe-fc-placeholder .acfe-fc-overlay.-hover,.layout>.acfe-fc-placeholder:hover .acfe-fc-overlay{background-color:rgba(255,255,255,.7);z-index:1}.layout>.acfe-fc-placeholder.acfe-fc-preview.-loading>a span{visibility:hidden}.layout>.acf-fields>.acfe-flexible-opened-actions,.layout>.acf-table>.acfe-flexible-opened-actions{background:#f9f9f9;border-top:1px solid #e1e1e1;padding:12px;text-align:right;clear:both}.acfe-flexible-layout-thumbnail{display:block;width:100%;height:9.8vw;background-color:#eee;background-size:cover;background-repeat:no-repeat;background-position:center;position:relative;margin-bottom:15px}.acfe-flexible-layout-thumbnail.acfe-flexible-layout-thumbnail-not-found:after{content:"\f180";font-family:dashicons;display:inline-block;line-height:1;font-weight:400;font-style:normal;speak:none;text-decoration:inherit;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top;text-align:center;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);color:#ccc;font-size:110px}.acfe-col-2 .acfe-flexible-layout-thumbnail{height:20.5vw}.acfe-col-3 .acfe-flexible-layout-thumbnail{height:13.3vw}.acfe-col-5 .acfe-flexible-layout-thumbnail{height:7.65vw}.acfe-col-6 .acfe-flexible-layout-thumbnail{height:6.2vw}@media only screen and (max-width:960px){.acfe-flex-container .acfe-flexible-layout-thumbnail,.acfe-flexible-layout-thumbnail{height:18.4vw}}@media only screen and (max-width:720px){.acfe-flex-container .acfe-flexible-layout-thumbnail,.acfe-flexible-layout-thumbnail{height:37.2vw}}.acfe-flexible-layout-thumbnail.acfe-flexible-layout-thumbnail-no-modal{display:block;width:230px;height:103px;background-color:#1f2329}.acfe-flexible-layout-thumbnail.acfe-flexible-layout-thumbnail-no-modal.acfe-flexible-layout-thumbnail-not-found:after{color:#2f353e}.acf-field.acf-field-flexible-content[data-acfe-flexible-stylised-button="1"]>.acf-input>.acf-flexible-content:not(.empty)>.values{margin-bottom:15px}.acf-field.acf-field-flexible-content>.acf-input>.acf-flexible-content>.acfe-flexible-stylised-button{padding:40px 20px;border:2px dashed #ccc;text-align:center}.acf-field.acf-field-flexible-content>.acf-input>.acf-flexible-content>.acfe-flexible-stylised-button>.acf-actions{text-align:center}.acf-field.acf-field-flexible-content>.acf-input>.acf-flexible-content .acf-actions .acf-button .dashicons{width:auto;height:auto;vertical-align:text-top}.acf-field.acf-field-flexible-content[data-acfe-flexible-hide-empty-message="1"]>.acf-input>.acf-flexible-content>.no-value-message{display:none}.acf-field.acf-field-flexible-content[data-acfe-flexible-hide-empty-message="1"]>.acf-input>.acf-flexible-content.-empty>.values{margin-bottom:0}.acf-range-wrap input[type=number]{min-width:3.5em}.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style:not([data-acfe-group-modal="1"])>.acf-input,.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style:not([data-acfe-group-modal="1"])>.acf-input{margin-left:-12px;margin-right:-12px;margin-bottom:-15px}.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style.acfe-no-label:not([data-acfe-group-modal="1"])>.acf-input,.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style.acfe-no-label:not([data-acfe-group-modal="1"])>.acf-input{margin-top:-15px}.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style.acfe-no-label:not([data-acfe-group-modal="1"])>.acf-label>p.description,.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style.acfe-no-label:not([data-acfe-group-modal="1"])>.acf-label>p.description{margin-bottom:15px}.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style.acfe-no-label>.acf-input>.acf-fields{border-width:0}.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input>.acf-fields{border-left-width:0;border-right-width:0;border-bottom-width:0}.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input>.acf-fields{border-width:0}.acf-fields.-left>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input{margin:0}.acf-fields.-left>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input>.acf-fields{border-width:1px}.acf-fields.-left>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style:not([data-acfe-group-modal="1"])>.acf-input,.acf-fields.-left>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style:not([data-acfe-group-modal="1"])>.acf-input{padding:0 0 0 1px;margin:-15px 0}.acf-fields.-left>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input>.acf-fields,.acf-fields.-left>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-input>.acf-table,.acf-fields>.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields,.acf-fields>.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-table{border-width:0}.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-table{margin:0}.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input>.acf-fields,.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input>.acf-fields,.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-input>.acf-table{border-width:1px}.acf-postbox.seamless>.acf-fields.-left>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields.-left>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields.-left>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-input{padding:0 12px}.acf-fields>.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acf-fields,.acf-fields>.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acf-table{display:none}tr.acf-field.acf-field-group.acfe-seamless-style>td.acf-input>.acf-fields{border:0;margin:-15px -10px}tr.acf-field.acf-field-group.acfe-seamless-style.acfe-field-group-layout-table>td.acf-input{padding:0;margin:-15px 0}tr.acf-field.acf-field-group.acfe-seamless-style.acfe-field-group-layout-table>td.acf-input>.acf-table,tr.acf-field.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields,tr.acf-field.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-table{border-width:0}.acf-field-acfe-hidden{display:none}.acf-field-radio .acf-input .acf-radio-list.acf-bl li>strong,.acf-field-radio[data-acfe-labels] .acf-input .acf-radio-list.acf-hl li>strong{display:block}.acf-field-radio .acf-input .acf-radio-list.acf-bl li+li>strong{margin-top:15px}.acf-field-repeater[data-acfe-repeater-lock="1"]>.acf-input>.acf-repeater>.acf-table>tbody>.acf-row>.acf-row-handle{cursor:initial}.acf-repeater.-block>table,.acf-repeater.-row>table{border-collapse:separate;border-spacing:0 15px;background:0 0;border:0;margin-top:-15px;margin-bottom:-7px}.acf-repeater.-block>table>*,.acf-repeater.-row>table>*{border-collapse:collapse;border-spacing:0}.acf-repeater.-block>table>tbody>tr>td,.acf-repeater.-row>table>tbody>tr>td{border-top:1px solid #ccd0d4!important;border-bottom:1px solid #ccd0d4!important}.acf-repeater.-block>table>tbody>tr>td:first-of-type,.acf-repeater.-row>table>tbody>tr>td:first-of-type{border-left:1px solid #ccd0d4!important}.acf-repeater.-block>table>tbody>tr>td:last-of-type,.acf-repeater.-row>table>tbody>tr>td:last-of-type{border-right:1px solid #ccd0d4!important}body:not(.acf-admin-5-3) .acf-repeater.-block>table>tbody>tr>td,body:not(.acf-admin-5-3) .acf-repeater.-row>table>tbody>tr>td{border-top:1px solid #e1e1e1;border-bottom:1px solid #e1e1e1}body:not(.acf-admin-5-3) .acf-repeater.-block>table>tbody>tr>td:first-of-type,body:not(.acf-admin-5-3) .acf-repeater.-row>table>tbody>tr>td:first-of-type{border-left:1px solid #e1e1e1}body:not(.acf-admin-5-3) .acf-repeater.-block>table>tbody>tr>td:last-of-type,body:not(.acf-admin-5-3) .acf-repeater.-row>table>tbody>tr>td:last-of-type{border-right:1px solid #e1e1e1}.acf-repeater.-table.-empty>.acf-table{display:none}.acf-field-repeater>.acf-input>.acf-repeater>.acfe-repeater-stylised-button{padding:40px 20px;border:2px dashed #ccc;text-align:center}.acf-field-repeater>.acf-input>.acf-repeater>.acfe-repeater-stylised-button>.acf-actions{text-align:center}.acf-field-flexible-content>.acf-input>.acf-repeater .acf-actions .acf-button .dashicons{width:auto;height:auto;vertical-align:text-top}.acf-field-textarea[data-acfe-textarea-code="1"]>.acf-input>textarea{font-family:Menlo,Monaco,Consolas,"Courier New",monospace;font-size:1em}.acf-editor-wrap iframe{min-height:60px}.acf-editor-wrap .mce-top-part::before{-webkit-box-shadow:none;box-shadow:none}.acf-editor-wrap div.mce-statusbar{border:0}.acf-editor-wrap .mce-divider,.acf-editor-wrap .mce-path-item{color:#aaa}form.acfe-form.is-invalid[data-hide-error="1"]>.acf-error-message.-dismiss,form.acfe-form.is-valid[data-hide-revalidation="1"]>.acf-notice.-success{display:none}form.acfe-form.is-invalid[data-errors-position=below] .acf-field .acf-notice{margin:15px 0 0}.acf-media-modal .screen-reader-text,.acf-media-modal .screen-reader-text span,.acf-media-modal .ui-helper-hidden-accessible{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.acfe-field-tooltip{float:right;font-size:16px;color:#999}.acf-field[data-instruction-tooltip]:not([data-instruction-placement])>.acf-input>p.description,.acf-field[data-instruction-tooltip]:not([data-instruction-placement])>.acf-label>p.description{display:none}.acf-field .acf-input>p.description:first-child{margin-top:0;margin-bottom:5px}.acf-field p.description>.more,.acf-field[data-instruction-above-field]:not([data-instruction-placement])>.acf-label>p.description{display:none}.mce-toolbar .mce-btn-group:not(:first-child){margin-left:6px;padding-left:6px}
|
1 |
+
.acf-field .acf-label label{font-weight:600}.acf-field p.description{word-break:break-word}.acf-fields.-left>.acf-field>.acf-label,.acfe-postbox-left>.inside>.acf-field>.acf-label{min-height:1px}#side-sortables .acf-fields>.acf-field.acfe-no-label>.acf-label,.acf-field.acfe-no-label>.acf-label{margin:0}#side-sortables .acf-fields>.acf-field.acfe-no-label>.acf-label>label,.acf-field.acfe-no-label>.acf-label>label{display:none}#side-sortables .acf-fields>.acf-field.acfe-no-label>.acf-label>p.description,.acf-field.acfe-no-label>.acf-label>p.description{margin-bottom:10px}body .medium-editor-toolbar{z-index:999999!important}.acf-accordion{z-index:initial}.acf-link.-value .acfe-modal .button{display:inline-block}.acf-field-checkbox .acf-input .acf-checkbox-list.acf-bl li+li>strong{margin-top:15px;display:inline-block}.acf-fields>.acf-field-clone.acfe-field-clone-layout-block.acfe-seamless-style:not([data-acfe-clone-modal="1"])>.acf-input,.acf-fields>.acf-field-clone.acfe-field-clone-layout-row.acfe-seamless-style:not([data-acfe-clone-modal="1"])>.acf-input{margin-left:-12px;margin-right:-12px;margin-bottom:-15px}.acf-fields>.acf-field-clone.acfe-field-clone-layout-block.acfe-no-label.acfe-seamless-style:not([data-acfe-clone-modal="1"])>.acf-input,.acf-fields>.acf-field-clone.acfe-field-clone-layout-row.acfe-no-label.acfe-seamless-style:not([data-acfe-clone-modal="1"])>.acf-input{margin-top:-15px}.acf-fields>.acf-field-clone.acfe-field-clone-layout-block.acfe-seamless-style.acfe-no-label:not([data-acfe-clone-modal="1"])>.acf-label>p.description,.acf-fields>.acf-field-clone.acfe-field-clone-layout-row.acfe-seamless-style.acfe-no-label:not([data-acfe-clone-modal="1"])>.acf-label>p.description{margin-bottom:15px}.acf-fields>.acf-field-clone.acfe-field-clone-layout-row.acfe-no-label.acfe-seamless-style>.acf-input>.acf-fields{border-width:0}.acf-fields>.acf-field-clone.acfe-field-clone-layout-row.acfe-seamless-style>.acf-input>.acf-fields{border-left-width:0;border-right-width:0;border-bottom-width:0}.acf-fields>.acf-field-clone.acfe-field-clone-layout-block.acfe-seamless-style>.acf-input>.acf-fields{border-width:0}.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-row.acfe-seamless-style>.acf-input{margin:0}.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-row.acfe-seamless-style>.acf-input>.acf-fields{border-width:1px}.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-block.acfe-seamless-style:not([data-acfe-clone-modal="1"])>.acf-input,.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-table.acfe-seamless-style:not([data-acfe-clone-modal="1"])>.acf-input{padding:0 0 0 1px;margin:-15px 0}.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-block.acfe-seamless-style>.acf-input>.acf-fields,.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-table.acfe-seamless-style>.acf-input>.acf-table,.acf-fields>.acf-field-clone[data-acfe-clone-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields,.acf-fields>.acf-field-clone[data-acfe-clone-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-table{border-width:0}.acf-postbox.seamless>.acf-fields>.acf-field-clone.acfe-field-clone-layout-block.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields>.acf-field-clone.acfe-field-clone-layout-row.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields>.acf-field-clone.acfe-field-clone-layout-table.acfe-seamless-style>.acf-table{margin:0}.acf-postbox.seamless>.acf-fields>.acf-field-clone.acfe-field-clone-layout-block.acfe-seamless-style>.acf-input>.acf-fields,.acf-postbox.seamless>.acf-fields>.acf-field-clone.acfe-field-clone-layout-row.acfe-seamless-style>.acf-input>.acf-fields,.acf-postbox.seamless>.acf-fields>.acf-field-clone.acfe-field-clone-layout-table.acfe-seamless-style>.acf-input>.acf-table{border-width:1px}.acf-postbox.seamless>.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-block.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-row.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields.-left>.acf-field-clone.acfe-field-clone-layout-table.acfe-seamless-style>.acf-input{padding:0 12px}tr.acf-field.acf-field-clone.acfe-seamless-style>td.acf-input>.acf-fields{border:0;margin:-15px -10px}tr.acf-field.acf-field-clone.acfe-seamless-style.acfe-field-clone-layout-table>td.acf-input{padding:0;margin:-15px 0}tr.acf-field.acf-field-clone.acfe-seamless-style.acfe-field-clone-layout-table>td.acf-input>.acf-table,tr.acf-field.acf-field-clone[data-acfe-clone-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields,tr.acf-field.acf-field-clone[data-acfe-clone-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-table{border-width:0}.acf-field-acfe-code-editor>.acf-input>.acf-input-wrap>.CodeMirror-wrap{height:auto}.acf-field-acfe-code-editor>.acf-input>.acf-input-wrap>.CodeMirror-wrap.cm-s-default{border:1px solid #7e8993;border-radius:4px}.acf-field-acfe-code-editor>.acf-input>.acf-input-wrap>.CodeMirror-wrap.cm-s-default .CodeMirror-gutters{border-right:1px solid #7e8993;background:#f9f9f9}.acf-field-acfe-code-editor>.acf-input>.acf-input-wrap>.CodeMirror-wrap.cm-s-default .CodeMirror-activeline-background{background:#f9f9f9}.acf-field-acfe-code-editor>.acf-input>.acf-input-wrap>.CodeMirror-wrap.cm-s-default .CodeMirror-selected{background:#f0f0f0!important}.acf-field-acfe-code-editor>td.acf-input{max-width:1px}body .CodeMirror-wrap pre{word-break:break-all}body:not(.acf-admin-5-3) .acf-field-acfe-code-editor>.acf-input>.acf-input-wrap>.CodeMirror-wrap.cm-s-default{border-color:#dfdfdf}.acfe-modal-content .acf-color-picker .wp-picker-holder{position:relative}.acf-fields.acfe-column-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-line-pack:start;align-content:flex-start}.acf-fields.acfe-column-wrapper>.acf-field,.acf-fields.acfe-column-wrapper>.acf-tab-wrap{width:100%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0;border-top-width:0}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-endpoint="1"]{width:100%;border-top:1px solid #eee}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-endpoint="1"]+.acf-field:not(.acf-field-acfe-column),.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-endpoint="1"]:last-child{border-top:none}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="1/12"]{width:8.333333%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="2/12"]{width:16.66666%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="3/12"]{width:25%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="4/12"]{width:33.33333%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="5/12"]{width:41.66667%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="6/12"]{width:50%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="7/12"]{width:58.33333%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="8/12"]{width:66.66666%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="9/12"]{width:75%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="10/12"]{width:83.33333%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="11/12"]{width:91.66667%}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="12/12"]{width:100%;border-right:0}@media only screen and (max-width:1024px){.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="1/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="10/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="11/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="2/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="3/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="4/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="5/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="7/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="8/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="9/12"]{width:50%}}@media only screen and (max-width:640px){.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="1/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="10/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="11/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="12/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="2/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="3/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="4/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="5/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="6/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="7/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="8/12"],.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column[data-columns="9/12"]{width:100%}}.acf-fields.acfe-column-wrapper>.acf-field.acf-field-acfe-column>.acf-input>.acf-fields>.acf-field{border-top-width:0}.acf-fields.acfe-column-wrapper.-left>.acf-field.acf-field-acfe-column>.acf-input{float:none;width:auto;margin:0;padding:0}.acf-fields.acfe-column-wrapper>.acfe-flexible-opened-actions{width:100%}.acf-postbox.seamless>.inside.acfe-column-wrapper{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.acf-ui-datepicker .ui-datepicker{padding:0;border-color:#7e8993!important;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff}.acf-ui-datepicker select{font-size:14px;cursor:pointer;vertical-align:middle;line-height:2;color:#32373c;border-color:#7e8993;-webkit-box-shadow:none;box-shadow:none;border-radius:3px;padding:0 24px 0 8px;min-height:30px;max-width:25rem;-webkit-appearance:none;background:url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') right 5px top 55%/16px 16px no-repeat #fff}.acf-ui-datepicker .ui-datepicker table{font-size:13px;margin:0 0 7px}.acf-ui-datepicker .ui-datepicker .ui-datepicker-header{border:none;background:#f9f9f9;color:#222;font-weight:400;border-radius:4px 4px 0}.acf-ui-datepicker .ui-datepicker .ui-datepicker-header .ui-state-hover{background:#f9f9f9;cursor:pointer;border-radius:0;border:0}.acf-ui-datepicker .ui-datepicker thead{background:#f9f9f9;color:#222}.acf-ui-datepicker .ui-datepicker .ui-datepicker-title{margin-top:.4em;margin-bottom:.3em;color:#222;font-size:14px}.acf-ui-datepicker .ui-datepicker .ui-datepicker-next,.acf-ui-datepicker .ui-datepicker .ui-datepicker-next-hover,.acf-ui-datepicker .ui-datepicker .ui-datepicker-prev,.acf-ui-datepicker .ui-datepicker .ui-datepicker-prev-hover{height:20px;width:20px;border:none;overflow:hidden;margin-top:15px;top:0}.acf-ui-datepicker .ui-datepicker .ui-datepicker-next-hover,.acf-ui-datepicker .ui-datepicker .ui-datepicker-prev-hover{background:0 0!important;color:#007cba!important}.acf-ui-datepicker .ui-datepicker .ui-datepicker-next{right:7px}.acf-ui-datepicker .ui-datepicker .ui-datepicker-prev{left:7px}.acf-ui-datepicker .ui-datepicker .ui-datepicker-next span,.acf-ui-datepicker .ui-datepicker .ui-datepicker-prev span{height:20px;width:20px;background:0 0;position:relative;margin:0;left:unset;top:unset;font-size:1px}.acf-ui-datepicker .ui-datepicker .ui-datepicker-next span:before,.acf-ui-datepicker .ui-datepicker .ui-datepicker-prev span:before{display:block;font-family:dashicons;line-height:1;font-weight:400;text-indent:0;font-style:normal;speak:none;text-decoration:inherit;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:20px;height:20px;font-size:16px;vertical-align:top;text-align:center}.acf-ui-datepicker .ui-datepicker .ui-datepicker-next span:before{content:"\f345"}.acf-ui-datepicker .ui-datepicker .ui-datepicker-prev span:before{content:"\f341"}.acf-ui-datepicker .ui-datepicker .ui-datepicker-title select{margin:0 3px}.acf-ui-datepicker .ui-datepicker th{padding:.75em 0;color:#222;font-weight:400;border:none;border-bottom:1px solid #e1e1e1;background:#f9f9f9}.acf-ui-datepicker .ui-datepicker td{background:#fff;border:none;padding:0}.acf-ui-datepicker .ui-datepicker td .ui-state-default{background:0 0;border:none;text-align:center;padding:.5em;margin:0;font-weight:400;color:#333}.acf-ui-datepicker .ui-datepicker td .ui-state-active,.acf-ui-datepicker .ui-datepicker td .ui-state-hover{background:#007cba;color:#fff;-webkit-box-shadow:none;box-shadow:none}.acf-ui-datepicker .ui-datepicker td.ui-state-disabled,.acf-ui-datepicker .ui-datepicker td.ui-state-disabled .ui-state-default{opacity:1;color:#999}.acf-ui-datepicker .ui-datepicker-today .ui-state-highlight{border:none!important;background:#eee!important;font-weight:400!important;color:#222!important}.acf-ui-datepicker .ui-state-highlight.ui-state-active,.acf-ui-datepicker .ui-state-highlight.ui-state-hover{border:none!important;background:#007cba!important;font-weight:400!important;color:#fff!important}.acf-ui-datepicker .ui-state-highlight.ui-state-hover.ui-state-active{background:#007cba!important}.acf-ui-datepicker .ui-timepicker-div{padding:10px 7px!important}.acf-ui-datepicker .ui-timepicker-div .ui-widget-header{background:0 0!important;border:0!important;display:none!important}.acf-ui-datepicker .ui-timepicker-div .ui-widget-header .ui-datepicker-title{font-size:13px!important;font-weight:600!important}.acf-ui-datepicker .ui-timepicker-div dl{margin:0;text-align:center!important}.acf-ui-datepicker .ui-timepicker-div .ui_tpicker_time_label{display:none!important}.acf-ui-datepicker .ui-timepicker-div select{background:url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') right 5px top 55%/16px 16px no-repeat #fff!important;color:#32373c!important;border-color:#7e8993!important}.acf-ui-datepicker .ui-datepicker-buttonpane{border:0!important;padding:7px!important;margin:0!important;background:#f9f9f9!important;border-top:1px solid #e1e1e1!important;border-radius:0 0 4px 4px!important}.acf-ui-datepicker .ui-datepicker-buttonpane:after{content:'';display:block;clear:both}.acf-ui-datepicker .ui-datepicker-buttonpane button{display:inline-block;text-decoration:none;font-size:13px!important;line-height:2.15384615;min-height:30px;margin:0!important;padding:0 10px!important;cursor:pointer!important;-webkit-appearance:none;border-radius:3px;font-weight:400!important;white-space:nowrap;-webkit-box-sizing:border-box;box-sizing:border-box;color:#0071a1!important;background:#f3f5f6!important;vertical-align:top;-webkit-box-shadow:none!important;box-shadow:none!important;outline:0!important;opacity:unset!important;-webkit-filter:unset!important;filter:unset!important;border:1px solid #0071a1!important}.acf-ui-datepicker .ui-datepicker-buttonpane button:hover{background:#f1f1f1!important;border-color:#016087!important;color:#016087!important}.acf-flexible-content .layout .acf-icon.acfe-flexible-icon.dashicons:before{font-family:dashicons}.acf-flexible-content .layout .acf-icon.acfe-flexible-icon.dashicons{visibility:hidden}.acf-flexible-content .layout .acf-icon.acfe-flexible-icon.dashicons.dashicons-admin-generic,.acf-flexible-content .layout:hover>.acf-fc-layout-controls .acf-icon.acfe-flexible-icon.dashicons{visibility:visible}.acf-flexible-content .layout .acf-icon.acfe-flexible-icon.dashicons.dashicons-admin-generic:before{margin-left:1px;line-height:.9}.acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-duplicate,.acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-minus,.acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-plus,.acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-duplicate,.acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-minus,.acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-plus{visibility:hidden}.acf-flexible-content .layout.-hover>.acf-fc-layout-controls .acf-icon.-duplicate,.acf-flexible-content .layout.-hover>.acf-fc-layout-controls .acf-icon.-minus,.acf-flexible-content .layout.-hover>.acf-fc-layout-controls .acf-icon.-plus,.acf-flexible-content .layout:hover>.acf-fc-layout-controls .acf-icon.-duplicate,.acf-flexible-content .layout:hover>.acf-fc-layout-controls .acf-icon.-minus,.acf-flexible-content .layout:hover>.acf-fc-layout-controls .acf-icon.-plus{visibility:visible}.acf-flexible-content .layout>.acf-fc-layout-controls .acf-icon.disabled{color:#ccc;cursor:initial}.acf-flexible-content .layout>.acf-fc-layout-controls .acf-icon.disabled:hover{color:#ccc;background:#f5f5f5}.acf-field-acfe-flexible-layout-title{display:none}input.acfe-flexible-control-title{border:none;-webkit-box-shadow:none!important;box-shadow:none!important;outline:0!important;border-radius:0;border-bottom:1px solid transparent!important;font-weight:600;width:auto!important;padding:0!important;display:none;min-height:20px;vertical-align:unset;background:0 0}.layout>.acf-fc-layout-handle .acfe-layout-title{cursor:text;position:relative}.layout:not(.acfe-flexible-title-edition)>.acf-fc-layout-handle .acfe-layout-title:hover{background:#f4f4f4}.layout.acfe-flexible-title-edition>.acf-fc-layout-handle .acfe-layout-title input.acfe-flexible-control-title{display:inline-block;border-bottom:1px solid #ddd!important}.layout.acfe-flexible-title-edition>.acf-fc-layout-handle .acfe-layout-title .acfe-layout-title-text{display:none}.layout.acfe-flexible-layout-hidden>.acf-fc-layout-controls,.layout.acfe-flexible-layout-hidden>.acf-fc-layout-handle,.layout.acfe-flexible-layout-hidden>.acf-fields,.layout.acfe-flexible-layout-hidden>.acfe-fc-placeholder{opacity:.5}.acf-field-flexible-content[data-acfe-flexible-modal-edition="1"]>.acf-input>.acf-flexible-content>.values>.layout>.acf-fc-layout-controls>a.-collapse{display:none}body.-loading *{cursor:wait!important}.acf-flexible-content>.values>.ui-sortable-placeholder{border-width:2px;border-color:#ccc}.acf-flexible-content .layout .acf-fc-layout-handle{color:#444;font-weight:600}.layout.acfe-flexible-modal-edit-error>.acf-fc-layout-handle{color:#f33b28}.layout.acfe-flexible-modal-edit-error>.acf-fc-layout-handle>.acf-fc-layout-order{background:#f33b28;color:#fff}.acf-field-flexible-content[data-acfe-flexible-modal-edition="1"]:not([data-acfe-flexible-placeholder="1"]):not([data-acfe-flexible-preview="1"])>.acf-input>.acf-flexible-content>.values>.layout>.acf-fc-layout-handle{border-bottom-width:0}.acf-field-flexible-content[data-acfe-flexible-placeholder="1"]>.acf-input>.acf-flexible-content>.values>.layout.-collapsed>.acf-fc-layout-handle,.acf-field-flexible-content[data-acfe-flexible-preview="1"]>.acf-input>.acf-flexible-content>.values>.layout.-collapsed>.acf-fc-layout-handle{border-bottom-width:1px}.acf-field-flexible-content[data-acfe-flexible-lock="1"]>.acf-input>.acf-flexible-content>.values>.layout>.acf-fc-layout-handle{cursor:pointer}.acf-fc-popup.top.acfe-fc-popup-grey:before{border-top-color:#e1e1e1}.acf-tooltip.bottom.acfe-fc-popup-grey:before{border-bottom-color:#e1e1e1}.acf-fc-popup.acfe-fc-popup-grey{background:#fcfcfc;border-radius:3px;color:#444;border:1px solid #e1e1e1;font-size:13px}.acf-tooltip.top.acfe-fc-popup-grey{margin-top:-16px}.acf-tooltip.bottom.acfe-fc-popup-grey{margin-bottom:-16px}.acf-fc-popup.acfe-fc-popup-grey a{color:#444}.acf-fc-popup.acfe-fc-popup-grey a:hover{color:#fff}.layout>.acfe-fc-placeholder{text-align:center;background:#f9f9f9;display:block;text-decoration:none;position:relative;cursor:pointer}.layout>.acfe-fc-placeholder:focus{border-color:#ccc;-webkit-box-shadow:none;box-shadow:none}.layout>.acfe-fc-placeholder>.acfe-flexible-placeholder{height:110px;overflow:hidden;text-align:initial}.layout>.acfe-fc-placeholder>a{z-index:2;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);border-color:#ccd0d4;color:#23282d;border-radius:100px;-webkit-box-shadow:none;box-shadow:none;background:#fff;width:30px;min-height:30px;height:30px;padding:0;display:block}body:not(.acf-admin-5-3) .layout>.acfe-fc-placeholder>a{border-color:#999}.acfe-modal.-open.acfe-modal-sub>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-flexible-content>.acf-input>.acf-flexible-content>.values>.layout>.acfe-fc-placeholder>a{z-index:0}.layout>.acfe-fc-placeholder>a:active{-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.layout>.acfe-fc-placeholder>a:focus{border-color:#ccc;-webkit-box-shadow:none;box-shadow:none}.layout>.acfe-fc-placeholder>a span{width:29px;height:30px;vertical-align:top;line-height:28px;font-size:18px}body:not(.acf-admin-5-3) .layout>.acfe-fc-placeholder>a span{width:30px;height:30px}.layout>.acfe-fc-placeholder.acfe-fc-preview{background:0 0}.layout>.acfe-fc-placeholder.acfe-fc-preview>.acfe-flexible-placeholder{min-height:55px;height:auto}.layout>.acfe-fc-placeholder.acfe-fc-preview>a{display:none}.layout>.acfe-fc-placeholder.acfe-fc-preview:hover>a{display:block}.layout>.acfe-fc-placeholder.acfe-fc-preview.-loading{background:#f9f9f9;min-height:110px}.layout>.acfe-fc-placeholder.acfe-fc-preview.-loading>.acfe-flexible-placeholder>.spinner{visibility:visible;float:none;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);margin:0;z-index:10000}.layout>.acfe-fc-placeholder .acfe-fc-overlay{position:absolute;width:100%;height:100%;padding:0;background-color:rgba(255,255,255,0);-webkit-transition:background-color .2s linear;-o-transition:background-color .2s linear;transition:background-color .2s linear}.layout>.acfe-fc-placeholder .acfe-fc-overlay.-hover,.layout>.acfe-fc-placeholder:hover .acfe-fc-overlay{background-color:rgba(255,255,255,.7);z-index:1}.layout>.acfe-fc-placeholder.acfe-fc-preview.-loading>a span{visibility:hidden}.layout>.acf-fields>.acfe-flexible-opened-actions,.layout>.acf-table>.acfe-flexible-opened-actions{background:#f9f9f9;border-top:1px solid #e1e1e1;padding:12px;text-align:right;clear:both}.acfe-flexible-layout-thumbnail{display:block;width:100%;height:9.8vw;background-color:#eee;background-size:cover;background-repeat:no-repeat;background-position:center;position:relative;margin-bottom:15px}.acfe-flexible-layout-thumbnail.acfe-flexible-layout-thumbnail-not-found:after{content:"\f180";font-family:dashicons;display:inline-block;line-height:1;font-weight:400;font-style:normal;speak:none;text-decoration:inherit;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top;text-align:center;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);color:#ccc;font-size:110px}.acfe-col-2 .acfe-flexible-layout-thumbnail{height:20.5vw}.acfe-col-3 .acfe-flexible-layout-thumbnail{height:13.3vw}.acfe-col-5 .acfe-flexible-layout-thumbnail{height:7.65vw}.acfe-col-6 .acfe-flexible-layout-thumbnail{height:6.2vw}@media only screen and (max-width:960px){.acfe-flex-container .acfe-flexible-layout-thumbnail,.acfe-flexible-layout-thumbnail{height:18.4vw}}@media only screen and (max-width:720px){.acfe-flex-container .acfe-flexible-layout-thumbnail,.acfe-flexible-layout-thumbnail{height:37.2vw}}.acfe-flexible-layout-thumbnail.acfe-flexible-layout-thumbnail-no-modal{display:block;width:230px;height:103px;background-color:#1f2329}.acfe-flexible-layout-thumbnail.acfe-flexible-layout-thumbnail-no-modal.acfe-flexible-layout-thumbnail-not-found:after{color:#2f353e}.acf-field.acf-field-flexible-content[data-acfe-flexible-stylised-button="1"]>.acf-input>.acf-flexible-content:not(.empty)>.values{margin-bottom:15px}.acf-field.acf-field-flexible-content>.acf-input>.acf-flexible-content>.acfe-flexible-stylised-button{padding:40px 20px;border:2px dashed #ccc;text-align:center}.acf-field.acf-field-flexible-content>.acf-input>.acf-flexible-content>.acfe-flexible-stylised-button>.acf-actions{text-align:center}.acf-field.acf-field-flexible-content>.acf-input>.acf-flexible-content .acf-actions .acf-button .dashicons{width:auto;height:auto;vertical-align:text-top}.acf-field.acf-field-flexible-content[data-acfe-flexible-hide-empty-message="1"]>.acf-input>.acf-flexible-content>.no-value-message{display:none}.acf-field.acf-field-flexible-content[data-acfe-flexible-hide-empty-message="1"]>.acf-input>.acf-flexible-content.-empty>.values{margin-bottom:0}.acf-range-wrap input[type=number]{min-width:3.5em}.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style:not([data-acfe-group-modal="1"])>.acf-input,.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style:not([data-acfe-group-modal="1"])>.acf-input{margin-left:-12px;margin-right:-12px;margin-bottom:-15px}.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style.acfe-no-label:not([data-acfe-group-modal="1"])>.acf-input,.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style.acfe-no-label:not([data-acfe-group-modal="1"])>.acf-input{margin-top:-15px}.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style.acfe-no-label:not([data-acfe-group-modal="1"])>.acf-label>p.description,.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style.acfe-no-label:not([data-acfe-group-modal="1"])>.acf-label>p.description{margin-bottom:15px}.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style.acfe-no-label>.acf-input>.acf-fields{border-width:0}.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input>.acf-fields{border-left-width:0;border-right-width:0;border-bottom-width:0}.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input>.acf-fields,.acf-fields>.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields,.acf-fields>.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-table{border-width:0}.acf-fields>.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acf-fields,.acf-fields>.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acf-table{display:none}.acf-fields.-left>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input{margin:0}.acf-fields.-left>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input>.acf-fields{border-width:1px}.acf-fields.-left>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style:not([data-acfe-group-modal="1"])>.acf-input,.acf-fields.-left>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style:not([data-acfe-group-modal="1"])>.acf-input{padding:0 0 0 1px;margin:-15px 0}.acf-fields.-left>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input>.acf-fields,.acf-fields.-left>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input>.acf-table,.acf-fields.-left>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-input>.acf-fields,.acf-fields.-left>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-input>.acf-table{border-width:0}.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-table,.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-table,.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-table{margin:0}.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input>.acf-fields,.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input>.acf-table,.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input>.acf-fields,.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input>.acf-table,.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-input>.acf-fields,.acf-postbox.seamless>.acf-fields>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-input>.acf-table{border-width:1px}.acf-postbox.seamless>.acf-fields.-left>.acf-field-group.acfe-field-group-layout-block.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields.-left>.acf-field-group.acfe-field-group-layout-row.acfe-seamless-style>.acf-input,.acf-postbox.seamless>.acf-fields.-left>.acf-field-group.acfe-field-group-layout-table.acfe-seamless-style>.acf-input{padding:0 12px}tr.acf-field.acf-field-group.acfe-seamless-style>td.acf-input>.acf-fields{border:0;margin:-15px -10px}tr.acf-field.acf-field-group.acfe-seamless-style.acfe-field-group-layout-table>td.acf-input{padding:0;margin:-15px 0}tr.acf-field.acf-field-group.acfe-seamless-style.acfe-field-group-layout-table>td.acf-input>.acf-table,tr.acf-field.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields,tr.acf-field.acf-field-group[data-acfe-group-modal="1"]>.acf-input>.acfe-modal>.acfe-modal-wrapper>.acfe-modal-content>.acf-table{border-width:0}.acf-field-acfe-hidden{display:none}.acf-field-radio .acf-input .acf-radio-list.acf-bl li>strong,.acf-field-radio[data-acfe-labels] .acf-input .acf-radio-list.acf-hl li>strong{display:block}.acf-field-radio .acf-input .acf-radio-list.acf-bl li+li>strong{margin-top:15px}.acf-field-repeater[data-acfe-repeater-lock="1"]>.acf-input>.acf-repeater>.acf-table>tbody>.acf-row>.acf-row-handle{cursor:initial}.acf-repeater.-block>table,.acf-repeater.-row>table{border-collapse:separate;border-spacing:0 15px;background:0 0;border:0;margin-top:-15px;margin-bottom:-7px}.acf-repeater.-block>table>*,.acf-repeater.-row>table>*{border-collapse:collapse;border-spacing:0}.acf-repeater.-block>table>tbody>tr>td,.acf-repeater.-row>table>tbody>tr>td{border-top:1px solid #ccd0d4!important;border-bottom:1px solid #ccd0d4!important}.acf-repeater.-block>table>tbody>tr>td:first-of-type,.acf-repeater.-row>table>tbody>tr>td:first-of-type{border-left:1px solid #ccd0d4!important}.acf-repeater.-block>table>tbody>tr>td:last-of-type,.acf-repeater.-row>table>tbody>tr>td:last-of-type{border-right:1px solid #ccd0d4!important}body:not(.acf-admin-5-3) .acf-repeater.-block>table>tbody>tr>td,body:not(.acf-admin-5-3) .acf-repeater.-row>table>tbody>tr>td{border-top:1px solid #e1e1e1;border-bottom:1px solid #e1e1e1}body:not(.acf-admin-5-3) .acf-repeater.-block>table>tbody>tr>td:first-of-type,body:not(.acf-admin-5-3) .acf-repeater.-row>table>tbody>tr>td:first-of-type{border-left:1px solid #e1e1e1}body:not(.acf-admin-5-3) .acf-repeater.-block>table>tbody>tr>td:last-of-type,body:not(.acf-admin-5-3) .acf-repeater.-row>table>tbody>tr>td:last-of-type{border-right:1px solid #e1e1e1}.acf-repeater.-table.-empty>.acf-table{display:none}.acf-field-repeater>.acf-input>.acf-repeater>.acfe-repeater-stylised-button{padding:40px 20px;border:2px dashed #ccc;text-align:center}.acf-field-repeater>.acf-input>.acf-repeater>.acfe-repeater-stylised-button>.acf-actions{text-align:center}.acf-field-flexible-content>.acf-input>.acf-repeater .acf-actions .acf-button .dashicons{width:auto;height:auto;vertical-align:text-top}.acf-field-textarea[data-acfe-textarea-code="1"]>.acf-input>textarea{font-family:Menlo,Monaco,Consolas,"Courier New",monospace;font-size:1em}.acf-editor-wrap iframe{min-height:60px}.acf-editor-wrap .mce-top-part::before{-webkit-box-shadow:none;box-shadow:none}.acf-editor-wrap div.mce-statusbar{border:0}.acf-editor-wrap .mce-divider,.acf-editor-wrap .mce-path-item{color:#aaa}form.acfe-form.is-invalid[data-hide-error="1"]>.acf-error-message.-dismiss,form.acfe-form.is-valid[data-hide-revalidation="1"]>.acf-notice.-success{display:none}form.acfe-form.is-invalid[data-errors-position=below] .acf-field .acf-notice{margin:15px 0 0}.acf-media-modal .screen-reader-text,.acf-media-modal .screen-reader-text span,.acf-media-modal .ui-helper-hidden-accessible{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.acfe-field-tooltip{float:right;font-size:16px;color:#999}.acf-field[data-instruction-tooltip]:not([data-instruction-placement])>.acf-input>p.description,.acf-field[data-instruction-tooltip]:not([data-instruction-placement])>.acf-label>p.description{display:none}.acf-field .acf-input>p.description:first-child{margin-top:0;margin-bottom:5px}.acf-field p.description>.more,.acf-field[data-instruction-above-field]:not([data-instruction-placement])>.acf-label>p.description{display:none}.mce-toolbar .mce-btn-group:not(:first-child){margin-left:6px;padding-left:6px}
|
assets/css/acfe.css
CHANGED
@@ -629,4 +629,37 @@ body.wp-admin.upload-php.acfe-modal-opened>div:not([style*="display: none;"])>.m
|
|
629 |
|
630 |
.pac-container {
|
631 |
z-index: 100001
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
632 |
}
|
629 |
|
630 |
.pac-container {
|
631 |
z-index: 100001
|
632 |
+
}
|
633 |
+
|
634 |
+
#side-sortables .acf-fields.-left .acfe-modal .acf-fields.-left>.acf-field::before {
|
635 |
+
display: block
|
636 |
+
}
|
637 |
+
|
638 |
+
#side-sortables .acf-fields.-left .acfe-modal .acf-fields.-left>.acf-field>.acf-label {
|
639 |
+
width: 20%;
|
640 |
+
margin: 0
|
641 |
+
}
|
642 |
+
|
643 |
+
#side-sortables .acf-fields.-left .acfe-modal .acf-fields.-left>.acf-field>.acf-input {
|
644 |
+
width: 80%
|
645 |
+
}
|
646 |
+
|
647 |
+
.block-editor .edit-post-sidebar .acfe-modal .acf-fields>.acf-field .acf-label label {
|
648 |
+
font-weight: 600
|
649 |
+
}
|
650 |
+
|
651 |
+
.block-editor .edit-post-sidebar .acfe-modal .acf-fields.-left>.acf-field {
|
652 |
+
margin: 0;
|
653 |
+
padding: 15px 0;
|
654 |
+
border-width: 1px;
|
655 |
+
border-color: #eee
|
656 |
+
}
|
657 |
+
|
658 |
+
.block-editor .edit-post-sidebar .acfe-modal .acf-fields.-left>.acf-field::before {
|
659 |
+
border-width: 0;
|
660 |
+
background: 0 0
|
661 |
+
}
|
662 |
+
|
663 |
+
body.acfe-modal-opened .edit-post-sidebar__panel-tabs {
|
664 |
+
visibility: hidden
|
665 |
}
|
assets/css/acfe.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
body.acfe-modal-opened{overflow:hidden}.acfe-modal-overlay{background:rgba(0,0,0,.7);position:fixed;top:0;left:0;right:0;bottom:0;height:100%;width:100%;z-index:100000}.acfe-modal{display:none;-webkit-transition:.3s ease-in-out;-o-transition:.3s ease-in-out;transition:.3s ease-in-out}.acfe-modal.-open{position:fixed;z-index:100001;height:100%;width:100%;top:0;left:0;bottom:0;right:0;-webkit-font-smoothing:subpixel-antialiased;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;pointer-events:none}.acfe-modal .acfe-modal-spacer{padding:15px}.acfe-modal.-open>.acfe-modal-wrapper{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.7);box-shadow:0 5px 15px rgba(0,0,0,.7);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:calc(100vw - 60px);max-width:1100px;max-height:calc(100vh - 60px);position:relative}.acfe-modal.-open.acfe-modal-sub>.acfe-modal-wrapper>.acfe-modal-wrapper-overlay{position:absolute;z-index:10;background:rgba(0,0,0,.7);height:100%;width:100%;pointer-events:none}.acfe-modal.-open.-small>.acfe-modal-wrapper{max-width:450px}.acfe-modal.-open.-medium>.acfe-modal-wrapper{max-width:700px}.acfe-modal.-open.-large>.acfe-modal-wrapper{max-width:1100px}.acfe-modal.-open.-xlarge>.acfe-modal-wrapper{max-width:1400px}.acfe-modal.-open.-full>.acfe-modal-wrapper{max-width:100%;-webkit-box-flex:1;-ms-flex:1;flex:1}.acfe-modal.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields.-left{height:100%}.acfe-modal.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields.-left:before{content:"";display:block;position:absolute;z-index:0;background:#f9f9f9;border-color:#e1e1e1;border-style:solid;border-width:0 1px 0 0;top:0;bottom:0;left:0;width:20%}.acfe-modal.-settings.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields,.acfe-modal.-settings.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone,.acfe-modal.-settings.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone>.acf-input,.acfe-modal.-settings.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone>.acf-input>.acf-clone-fields.acf-fields.-left{height:100%}.acfe-modal.-settings.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone{padding:0}.acfe-modal.-settings.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone>.acf-input{margin:0}.acfe-modal.-settings.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone>.acf-input>.acf-clone-fields.acf-fields.-left:before{content:"";display:block;position:absolute;z-index:0;background:#f9f9f9;border-color:#e1e1e1;border-style:solid;border-width:0 1px 0 0;top:0;bottom:0;left:0;width:20%}.acfe-modal.-open .acfe-modal-title *,.acfe-modal.-open>.acfe-modal-title{-webkit-box-sizing:border-box;box-sizing:border-box}.acfe-modal.-open .acfe-modal-title{display:block;height:50px;line-height:50px;font-size:22px;color:#23282d;border-bottom:1px solid #ddd;-o-text-overflow:ellipsis;text-overflow:ellipsis;background:#fcfcfc;padding:0 0 0 16px;position:relative;text-align:left;pointer-events:auto}.acfe-modal.-open.acfe-modal-sub>.acfe-modal-wrapper>.acfe-modal-title{pointer-events:none}.acfe-modal.-open .acfe-modal-title>span.title{line-height:50px;color:#23282d;font-weight:600}.acfe-modal.-open .acfe-modal-title>span.title .acf-fc-layout-order{width:30px;height:30px;border-radius:30px;display:inline-block;text-align:center;line-height:30px;margin:0 2px 0 0;background:#f1f1f1;font-size:14px;color:#666;vertical-align:2px}.acfe-modal.-open .acfe-modal-title>button.close{height:50px;width:50px;color:#666;border:0;border-left:0;margin:0;padding:0;border-radius:0;position:absolute;top:0;right:0;-webkit-transition:color .1s ease-in-out,background .1s ease-in-out;-o-transition:color .1s ease-in-out,background .1s ease-in-out;transition:color .1s ease-in-out,background .1s ease-in-out;background:0 0;cursor:pointer}.acfe-modal.-open .acfe-modal-title>button.close:hover{color:#00a0d2}.acfe-modal.-open .acfe-modal-title>button.close:before{height:50px;width:50px;line-height:50px!important;font:20px/1 dashicons;content:"\f158";margin:0;padding:0}.acfe-modal.-open .acfe-modal-content{height:100%;background:#fff;display:block;position:relative;pointer-events:auto;overflow:auto}.acfe-modal.-open.-iframe .acfe-modal-content{overflow:hidden}.acfe-modal.-open.acfe-modal-sub>.acfe-modal-wrapper>.acfe-modal-content{pointer-events:none}.acfe-modal.-open .acfe-modal-content .nav-tab-wrapper{padding:0;margin:0;border-bottom:1px solid #ddd}.acfe-modal.-open .acfe-modal-content .nav-tab-wrapper a{margin:0;border-left:0;border-top:0;border-bottom:0;background:#fff;-webkit-transition:color .1s ease-in-out,background .1s ease-in-out;-o-transition:color .1s ease-in-out,background .1s ease-in-out;transition:color .1s ease-in-out,background .1s ease-in-out;padding:7px 15px;border-color:#ddd}.acfe-modal.-open .acfe-modal-content .nav-tab-wrapper a span.dashicons-menu{line-height:27px}.acfe-modal.-open>.acfe-modal-content .nav-tab-wrapper a:hover{background:#f9f9f9;color:#23282d}.acfe-modal.-open .acfe-modal-content .nav-tab-wrapper a.nav-tab-active,.acfe-modal.-open .acfe-modal-content .nav-tab-wrapper a.nav-tab-active:hover{background:#fcfcfc;color:#23282d}.acfe-modal.-open .acfe-modal-content .nav-tab:focus,.acfe-modal.-open .acfe-modal-content .nav-tab:focus:active{border-bottom:0;-webkit-box-shadow:none;box-shadow:none;outline:0}.acfe-modal.-open .acfe-modal-content .acfe-flex-container,.acfe-modal.-open .acfe-modal-content .acfe-flex-container *{-webkit-box-sizing:border-box;box-sizing:border-box}.acfe-modal.-open .acfe-modal-content .acfe-flex-container{width:100%;padding:14px;margin-right:auto;margin-left:auto}.acfe-modal.-open .acfe-modal-content .acfe-flexible-categories~.acfe-flex-container{overflow:auto;height:calc(100% - 39px)}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul{margin:0 -7px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.acfe-modal.-open>.acfe-modal-content .acfe-flex-container ul:after{content:"";clear:both;display:table}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li{position:relative;width:100%;padding-right:7px;padding-left:7px;padding-bottom:14px;margin:0;-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a{border:1px solid #ddd;background:#f9f9f9;padding:15px;color:#333;display:block;text-decoration:none;height:100%}.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-flex-thumbnails ul li a{text-align:center}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a:hover{background:#007cba;color:#fff}body:not(.acf-admin-5-3) .acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a:hover{background:#0073aa}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a span{display:inline-block;font-size:16px;font-weight:600}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a span.badge.acf-js-tooltip{color:#999;font-weight:400;margin-left:2px;line-height:1.2;font-size:0}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a span.badge.acf-js-tooltip::before{font-size:16px}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a:hover span.badge.acf-js-tooltip{color:#fff}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a.disabled{pointer-events:none;opacity:.67}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a.disabled:hover{cursor:default}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a.disabled:focus{-webkit-box-shadow:none;box-shadow:none;outline:0}.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-col-1 ul li{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-col-2 ul li{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-col-3 ul li{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-col-4 ul li{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-col-5 ul li{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-col-6 ul li{-webkit-box-flex:0;-ms-flex:0 0 16.66%;flex:0 0 16.66%;max-width:16.66%}@media only screen and (max-width:960px){.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li{-webkit-box-flex:0!important;-ms-flex:0 0 50%!important;flex:0 0 50%!important;max-width:50%!important}.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-col-1 ul li{-webkit-box-flex:0!important;-ms-flex:0 0 100%!important;flex:0 0 100%!important;max-width:100%!important}.acfe-modal.-open .acfe-modal-content ul li a{padding:7px}}@media only screen and (max-width:720px){.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li,.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-col-1 ul li{-webkit-box-flex:0!important;-ms-flex:0 0 100%!important;flex:0 0 100%!important;max-width:100%!important}}.acfe-modal.-open .acfe-modal-footer,.acfe-modal.-open .acfe-modal-footer *{-webkit-box-sizing:border-box;box-sizing:border-box}.acfe-modal.-open .acfe-modal-footer{display:block;height:50px;line-height:50px;color:#23282d;background:#fcfcfc;padding:0 16px;position:relative;text-align:right;border-top:1px solid #ddd;pointer-events:auto}.acfe-modal.-open.acfe-modal-sub>.acfe-modal-wrapper>.acfe-modal-footer{pointer-events:none}.acfe-modal.-open .acfe-modal-footer>button{vertical-align:baseline}body.block-editor-page .edit-post-layout .acfe-modal.-open{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start;-webkit-box-align:start;-ms-flex-align:start;align-items:start;background:rgba(0,0,0,.7)}body.block-editor-page .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper{height:100%;width:100%;max-height:calc(100vh - 70px);max-width:calc(100vw - 340px);margin-top:103px;margin-left:170px;max-height:calc(100vh - 139px);max-width:calc(100vw - 181px)}body.block-editor-page .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields.-left{height:100%}body.block-editor-page .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields.-left:before{content:"";display:block;position:absolute;z-index:0;background:#f9f9f9;border-color:#e1e1e1;border-style:solid;border-width:0 1px 0 0;top:0;bottom:0;left:0;width:20%}body.block-editor-page .acfe-modal-overlay{display:none}body.block-editor-page .acfe-modal.-open.acfe-modal-sub,body.block-editor-page .acfe-modal.-open.acfe-modal-sub>.acfe-modal-wrapper>.acfe-modal-wrapper-overlay{background:0 0}body.block-editor-page.folded .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper{margin-top:103px;margin-left:46px;max-height:calc(100vh - 139px);max-width:calc(100vw - 57px)}body.block-editor-page.is-fullscreen-mode .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper{margin-top:69px;margin-left:9px;max-height:calc(100vh - 104px);max-width:calc(100vw - 18px)}body.block-editor-page .edit-post-layout.is-sidebar-opened .acfe-modal.-open>.acfe-modal-wrapper{max-width:calc(100vw - 461px)}body.block-editor-page.folded .edit-post-layout.is-sidebar-opened .acfe-modal.-open>.acfe-modal-wrapper{max-width:calc(100vw - 337px)}body.block-editor-page.is-fullscreen-mode .edit-post-layout.is-sidebar-opened .acfe-modal.-open>.acfe-modal-wrapper{max-width:calc(100vw - 298px)}@media only screen and (max-width:960px){body.block-editor-page .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper{margin-top:103px;margin-left:170px;max-height:calc(100vh - 139px);max-width:calc(100vw - 181px)}body.block-editor-page .edit-post-layout.is-sidebar-opened .acfe-modal.-open>.acfe-modal-wrapper{max-width:calc(100vw - 461px)}body.block-editor-page.auto-fold .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper{margin-top:103px;margin-left:46px;max-height:calc(100vh - 139px);max-width:calc(100vw - 57px)}body.block-editor-page.auto-fold .edit-post-layout.is-sidebar-opened .acfe-modal.-open>.acfe-modal-wrapper{max-width:calc(100vw - 337px)}}@media only screen and (max-width:782px){body.block-editor-page .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper{max-width:calc(100vw - 20px)!important;margin-left:10px!important;max-height:calc(100vh - 127px)!important;margin-top:117px!important}}body.wp-admin.upload-php.acfe-modal-opened>div:not([style*="display: none;"])>.media-modal.wp-core-ui:not(.acf-media-modal):before{content:"";display:block;position:absolute;background:rgba(0,0,0,.7);top:0;left:0;width:100%;height:100%;z-index:10000}.pac-container{z-index:100001}
|
1 |
+
body.acfe-modal-opened{overflow:hidden}.acfe-modal-overlay{background:rgba(0,0,0,.7);position:fixed;top:0;left:0;right:0;bottom:0;height:100%;width:100%;z-index:100000}.acfe-modal{display:none;-webkit-transition:.3s ease-in-out;-o-transition:.3s ease-in-out;transition:.3s ease-in-out}.acfe-modal.-open{position:fixed;z-index:100001;height:100%;width:100%;top:0;left:0;bottom:0;right:0;-webkit-font-smoothing:subpixel-antialiased;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;pointer-events:none}.acfe-modal .acfe-modal-spacer{padding:15px}.acfe-modal.-open>.acfe-modal-wrapper{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.7);box-shadow:0 5px 15px rgba(0,0,0,.7);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:calc(100vw - 60px);max-width:1100px;max-height:calc(100vh - 60px);position:relative}.acfe-modal.-open.acfe-modal-sub>.acfe-modal-wrapper>.acfe-modal-wrapper-overlay{position:absolute;z-index:10;background:rgba(0,0,0,.7);height:100%;width:100%;pointer-events:none}.acfe-modal.-open.-small>.acfe-modal-wrapper{max-width:450px}.acfe-modal.-open.-medium>.acfe-modal-wrapper{max-width:700px}.acfe-modal.-open.-large>.acfe-modal-wrapper{max-width:1100px}.acfe-modal.-open.-xlarge>.acfe-modal-wrapper{max-width:1400px}.acfe-modal.-open.-full>.acfe-modal-wrapper{max-width:100%;-webkit-box-flex:1;-ms-flex:1;flex:1}.acfe-modal.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields.-left{height:100%}.acfe-modal.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields.-left:before{content:"";display:block;position:absolute;z-index:0;background:#f9f9f9;border-color:#e1e1e1;border-style:solid;border-width:0 1px 0 0;top:0;bottom:0;left:0;width:20%}.acfe-modal.-settings.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields,.acfe-modal.-settings.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone,.acfe-modal.-settings.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone>.acf-input,.acfe-modal.-settings.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone>.acf-input>.acf-clone-fields.acf-fields.-left{height:100%}.acfe-modal.-settings.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone{padding:0}.acfe-modal.-settings.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone>.acf-input{margin:0}.acfe-modal.-settings.-open.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone>.acf-input>.acf-clone-fields.acf-fields.-left:before{content:"";display:block;position:absolute;z-index:0;background:#f9f9f9;border-color:#e1e1e1;border-style:solid;border-width:0 1px 0 0;top:0;bottom:0;left:0;width:20%}.acfe-modal.-open .acfe-modal-title *,.acfe-modal.-open>.acfe-modal-title{-webkit-box-sizing:border-box;box-sizing:border-box}.acfe-modal.-open .acfe-modal-title{display:block;height:50px;line-height:50px;font-size:22px;color:#23282d;border-bottom:1px solid #ddd;-o-text-overflow:ellipsis;text-overflow:ellipsis;background:#fcfcfc;padding:0 0 0 16px;position:relative;text-align:left;pointer-events:auto}.acfe-modal.-open.acfe-modal-sub>.acfe-modal-wrapper>.acfe-modal-title{pointer-events:none}.acfe-modal.-open .acfe-modal-title>span.title{line-height:50px;color:#23282d;font-weight:600}.acfe-modal.-open .acfe-modal-title>span.title .acf-fc-layout-order{width:30px;height:30px;border-radius:30px;display:inline-block;text-align:center;line-height:30px;margin:0 2px 0 0;background:#f1f1f1;font-size:14px;color:#666;vertical-align:2px}.acfe-modal.-open .acfe-modal-title>button.close{height:50px;width:50px;color:#666;border:0;border-left:0;margin:0;padding:0;border-radius:0;position:absolute;top:0;right:0;-webkit-transition:color .1s ease-in-out,background .1s ease-in-out;-o-transition:color .1s ease-in-out,background .1s ease-in-out;transition:color .1s ease-in-out,background .1s ease-in-out;background:0 0;cursor:pointer}.acfe-modal.-open .acfe-modal-title>button.close:hover{color:#00a0d2}.acfe-modal.-open .acfe-modal-title>button.close:before{height:50px;width:50px;line-height:50px!important;font:20px/1 dashicons;content:"\f158";margin:0;padding:0}.acfe-modal.-open .acfe-modal-content{height:100%;background:#fff;display:block;position:relative;pointer-events:auto;overflow:auto}.acfe-modal.-open.-iframe .acfe-modal-content{overflow:hidden}.acfe-modal.-open.acfe-modal-sub>.acfe-modal-wrapper>.acfe-modal-content{pointer-events:none}.acfe-modal.-open .acfe-modal-content .nav-tab-wrapper{padding:0;margin:0;border-bottom:1px solid #ddd}.acfe-modal.-open .acfe-modal-content .nav-tab-wrapper a{margin:0;border-left:0;border-top:0;border-bottom:0;background:#fff;-webkit-transition:color .1s ease-in-out,background .1s ease-in-out;-o-transition:color .1s ease-in-out,background .1s ease-in-out;transition:color .1s ease-in-out,background .1s ease-in-out;padding:7px 15px;border-color:#ddd}.acfe-modal.-open .acfe-modal-content .nav-tab-wrapper a span.dashicons-menu{line-height:27px}.acfe-modal.-open>.acfe-modal-content .nav-tab-wrapper a:hover{background:#f9f9f9;color:#23282d}.acfe-modal.-open .acfe-modal-content .nav-tab-wrapper a.nav-tab-active,.acfe-modal.-open .acfe-modal-content .nav-tab-wrapper a.nav-tab-active:hover{background:#fcfcfc;color:#23282d}.acfe-modal.-open .acfe-modal-content .nav-tab:focus,.acfe-modal.-open .acfe-modal-content .nav-tab:focus:active{border-bottom:0;-webkit-box-shadow:none;box-shadow:none;outline:0}.acfe-modal.-open .acfe-modal-content .acfe-flex-container,.acfe-modal.-open .acfe-modal-content .acfe-flex-container *{-webkit-box-sizing:border-box;box-sizing:border-box}.acfe-modal.-open .acfe-modal-content .acfe-flex-container{width:100%;padding:14px;margin-right:auto;margin-left:auto}.acfe-modal.-open .acfe-modal-content .acfe-flexible-categories~.acfe-flex-container{overflow:auto;height:calc(100% - 39px)}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul{margin:0 -7px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.acfe-modal.-open>.acfe-modal-content .acfe-flex-container ul:after{content:"";clear:both;display:table}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li{position:relative;width:100%;padding-right:7px;padding-left:7px;padding-bottom:14px;margin:0;-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a{border:1px solid #ddd;background:#f9f9f9;padding:15px;color:#333;display:block;text-decoration:none;height:100%}.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-flex-thumbnails ul li a{text-align:center}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a:hover{background:#007cba;color:#fff}body:not(.acf-admin-5-3) .acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a:hover{background:#0073aa}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a span{display:inline-block;font-size:16px;font-weight:600}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a span.badge.acf-js-tooltip{color:#999;font-weight:400;margin-left:2px;line-height:1.2;font-size:0}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a span.badge.acf-js-tooltip::before{font-size:16px}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a:hover span.badge.acf-js-tooltip{color:#fff}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a.disabled{pointer-events:none;opacity:.67}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a.disabled:hover{cursor:default}.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li a.disabled:focus{-webkit-box-shadow:none;box-shadow:none;outline:0}.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-col-1 ul li{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-col-2 ul li{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-col-3 ul li{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-col-4 ul li{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-col-5 ul li{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-col-6 ul li{-webkit-box-flex:0;-ms-flex:0 0 16.66%;flex:0 0 16.66%;max-width:16.66%}@media only screen and (max-width:960px){.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li{-webkit-box-flex:0!important;-ms-flex:0 0 50%!important;flex:0 0 50%!important;max-width:50%!important}.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-col-1 ul li{-webkit-box-flex:0!important;-ms-flex:0 0 100%!important;flex:0 0 100%!important;max-width:100%!important}.acfe-modal.-open .acfe-modal-content ul li a{padding:7px}}@media only screen and (max-width:720px){.acfe-modal.-open .acfe-modal-content .acfe-flex-container ul li,.acfe-modal.-open .acfe-modal-content .acfe-flex-container.acfe-col-1 ul li{-webkit-box-flex:0!important;-ms-flex:0 0 100%!important;flex:0 0 100%!important;max-width:100%!important}}.acfe-modal.-open .acfe-modal-footer,.acfe-modal.-open .acfe-modal-footer *{-webkit-box-sizing:border-box;box-sizing:border-box}.acfe-modal.-open .acfe-modal-footer{display:block;height:50px;line-height:50px;color:#23282d;background:#fcfcfc;padding:0 16px;position:relative;text-align:right;border-top:1px solid #ddd;pointer-events:auto}.acfe-modal.-open.acfe-modal-sub>.acfe-modal-wrapper>.acfe-modal-footer{pointer-events:none}.acfe-modal.-open .acfe-modal-footer>button{vertical-align:baseline}body.block-editor-page .edit-post-layout .acfe-modal.-open{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start;-webkit-box-align:start;-ms-flex-align:start;align-items:start;background:rgba(0,0,0,.7)}body.block-editor-page .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper{height:100%;width:100%;max-height:calc(100vh - 70px);max-width:calc(100vw - 340px);margin-top:103px;margin-left:170px;max-height:calc(100vh - 139px);max-width:calc(100vw - 181px)}body.block-editor-page .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields.-left{height:100%}body.block-editor-page .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields.-left:before{content:"";display:block;position:absolute;z-index:0;background:#f9f9f9;border-color:#e1e1e1;border-style:solid;border-width:0 1px 0 0;top:0;bottom:0;left:0;width:20%}body.block-editor-page .acfe-modal-overlay{display:none}body.block-editor-page .acfe-modal.-open.acfe-modal-sub,body.block-editor-page .acfe-modal.-open.acfe-modal-sub>.acfe-modal-wrapper>.acfe-modal-wrapper-overlay{background:0 0}body.block-editor-page.folded .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper{margin-top:103px;margin-left:46px;max-height:calc(100vh - 139px);max-width:calc(100vw - 57px)}body.block-editor-page.is-fullscreen-mode .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper{margin-top:69px;margin-left:9px;max-height:calc(100vh - 104px);max-width:calc(100vw - 18px)}body.block-editor-page .edit-post-layout.is-sidebar-opened .acfe-modal.-open>.acfe-modal-wrapper{max-width:calc(100vw - 461px)}body.block-editor-page.folded .edit-post-layout.is-sidebar-opened .acfe-modal.-open>.acfe-modal-wrapper{max-width:calc(100vw - 337px)}body.block-editor-page.is-fullscreen-mode .edit-post-layout.is-sidebar-opened .acfe-modal.-open>.acfe-modal-wrapper{max-width:calc(100vw - 298px)}@media only screen and (max-width:960px){body.block-editor-page .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper{margin-top:103px;margin-left:170px;max-height:calc(100vh - 139px);max-width:calc(100vw - 181px)}body.block-editor-page .edit-post-layout.is-sidebar-opened .acfe-modal.-open>.acfe-modal-wrapper{max-width:calc(100vw - 461px)}body.block-editor-page.auto-fold .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper{margin-top:103px;margin-left:46px;max-height:calc(100vh - 139px);max-width:calc(100vw - 57px)}body.block-editor-page.auto-fold .edit-post-layout.is-sidebar-opened .acfe-modal.-open>.acfe-modal-wrapper{max-width:calc(100vw - 337px)}}@media only screen and (max-width:782px){body.block-editor-page .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper{max-width:calc(100vw - 20px)!important;margin-left:10px!important;max-height:calc(100vh - 127px)!important;margin-top:117px!important}}body.wp-admin.upload-php.acfe-modal-opened>div:not([style*="display: none;"])>.media-modal.wp-core-ui:not(.acf-media-modal):before{content:"";display:block;position:absolute;background:rgba(0,0,0,.7);top:0;left:0;width:100%;height:100%;z-index:10000}.pac-container{z-index:100001}#side-sortables .acf-fields.-left .acfe-modal .acf-fields.-left>.acf-field::before{display:block}#side-sortables .acf-fields.-left .acfe-modal .acf-fields.-left>.acf-field>.acf-label{width:20%;margin:0}#side-sortables .acf-fields.-left .acfe-modal .acf-fields.-left>.acf-field>.acf-input{width:80%}.block-editor .edit-post-sidebar .acfe-modal .acf-fields>.acf-field .acf-label label{font-weight:600}.block-editor .edit-post-sidebar .acfe-modal .acf-fields.-left>.acf-field{margin:0;padding:15px 0;border-width:1px;border-color:#eee}.block-editor .edit-post-sidebar .acfe-modal .acf-fields.-left>.acf-field::before{border-width:0;background:0 0}body.acfe-modal-opened .edit-post-sidebar__panel-tabs{visibility:hidden}
|
assets/js/acfe-input.js
CHANGED
@@ -1662,7 +1662,7 @@
|
|
1662 |
// Open Modal
|
1663 |
new acfe.Popup($modal, {
|
1664 |
title: modalTitle,
|
1665 |
-
size: '
|
1666 |
destroy: true
|
1667 |
});
|
1668 |
|
@@ -1787,470 +1787,435 @@
|
|
1787 |
return;
|
1788 |
|
1789 |
/*
|
1790 |
-
*
|
1791 |
*/
|
1792 |
-
var
|
1793 |
-
var model = flexible.prototype;
|
1794 |
|
1795 |
-
|
1796 |
-
* Drag & Drop
|
1797 |
-
*/
|
1798 |
-
model.addSortable = function(self) {
|
1799 |
|
1800 |
-
|
1801 |
-
if (this.get('max') == 1) {
|
1802 |
-
return;
|
1803 |
-
}
|
1804 |
|
1805 |
-
|
1806 |
-
|
1807 |
-
|
1808 |
-
handle: '> .acf-fc-layout-handle',
|
1809 |
-
forceHelperSize: false, // Changed to false
|
1810 |
-
forcePlaceholderSize: true,
|
1811 |
-
revert: 50,
|
1812 |
-
tolerance: "pointer", // Changed to pointer
|
1813 |
-
scroll: true,
|
1814 |
-
stop: function(event, ui) {
|
1815 |
-
self.render();
|
1816 |
-
},
|
1817 |
-
update: function(event, ui) {
|
1818 |
-
self.$input().trigger('change');
|
1819 |
}
|
1820 |
-
});
|
1821 |
|
1822 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1823 |
|
1824 |
-
|
1825 |
-
* Actions
|
1826 |
-
*/
|
1827 |
-
model.acfeOneClick = function(e, $el) {
|
1828 |
|
1829 |
-
|
1830 |
-
var flexible = this;
|
1831 |
|
1832 |
-
|
1833 |
-
|
1834 |
-
|
1835 |
|
1836 |
-
|
1837 |
-
|
1838 |
-
if ($el.hasClass('acf-icon'))
|
1839 |
-
$layout_source = $el.closest('.layout');
|
1840 |
|
1841 |
-
|
1842 |
-
|
1843 |
-
|
1844 |
-
before: $layout_source
|
1845 |
-
});
|
1846 |
|
1847 |
-
|
1848 |
-
|
|
|
|
|
|
|
1849 |
|
1850 |
-
|
1851 |
-
acfPopup.
|
1852 |
-
}
|
1853 |
|
|
|
|
|
|
|
1854 |
|
1855 |
-
};
|
1856 |
|
1857 |
-
|
1858 |
|
1859 |
-
|
1860 |
-
var flexible = this;
|
1861 |
|
1862 |
-
|
1863 |
-
|
1864 |
-
|
|
|
1865 |
|
1866 |
-
|
1867 |
-
|
|
|
1868 |
|
1869 |
-
|
1870 |
-
|
1871 |
|
1872 |
-
|
1873 |
-
|
1874 |
|
1875 |
-
|
|
|
1876 |
|
1877 |
-
|
1878 |
|
1879 |
-
|
1880 |
-
if (flexible.isLayoutClosed($layout) && flexible.has('acfeFlexiblePreview') && !$placeholder.hasClass('-loading')) {
|
1881 |
|
1882 |
-
|
1883 |
-
|
1884 |
|
1885 |
-
|
1886 |
-
|
1887 |
-
var prefix = $input.attr('name').replace('[acf_fc_layout]', '');
|
1888 |
-
|
1889 |
-
// ajax data
|
1890 |
-
var ajaxData = {
|
1891 |
-
action: 'acfe/flexible/layout_preview',
|
1892 |
-
field_key: flexible.get('key'),
|
1893 |
-
i: $layout.index(),
|
1894 |
-
layout: $layout.data('layout'),
|
1895 |
-
value: acf.serialize($layout, prefix)
|
1896 |
-
};
|
1897 |
|
1898 |
-
|
1899 |
-
|
1900 |
-
|
1901 |
-
|
1902 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1903 |
|
1904 |
-
|
1905 |
-
|
1906 |
-
|
1907 |
-
|
1908 |
-
|
1909 |
-
type: 'post',
|
1910 |
-
success: function(response) {
|
1911 |
|
1912 |
-
|
|
|
1913 |
|
|
|
1914 |
$placeholder.find('> .acfe-flexible-placeholder').html(response);
|
1915 |
-
|
1916 |
} else {
|
1917 |
-
|
1918 |
$placeholder.removeClass('acfe-fc-preview');
|
1919 |
-
|
1920 |
}
|
1921 |
|
1922 |
-
acf.doAction('acfe/fields/flexible_content/preview', response,
|
1923 |
-
acf.doAction('acfe/fields/flexible_content/preview/name=' +
|
1924 |
-
acf.doAction('acfe/fields/flexible_content/preview/key=' +
|
1925 |
-
acf.doAction('acfe/fields/flexible_content/preview/name=' +
|
1926 |
-
acf.doAction('acfe/fields/flexible_content/preview/key=' +
|
1927 |
|
1928 |
-
}
|
1929 |
-
|
|
|
|
|
1930 |
|
1931 |
$placeholder.find('> .acfe-fc-overlay').removeClass('-hover');
|
1932 |
$placeholder.removeClass('-loading').find('> .acfe-flexible-placeholder > .spinner').remove();
|
1933 |
|
1934 |
-
}
|
1935 |
-
});
|
1936 |
-
|
1937 |
-
}
|
1938 |
-
|
1939 |
-
};
|
1940 |
-
|
1941 |
-
/*
|
1942 |
-
* WYSIWYG
|
1943 |
-
*/
|
1944 |
-
var wysiwyg = acf.getFieldType('wysiwyg').prototype;
|
1945 |
-
wysiwyg.initialize = function() {
|
1946 |
-
|
1947 |
-
// initializeEditor if no delay
|
1948 |
-
if (!this.has('id') && !this.$control().hasClass('delay')) {
|
1949 |
-
this.initializeEditor();
|
1950 |
-
}
|
1951 |
-
|
1952 |
-
};
|
1953 |
-
|
1954 |
-
var acfeFlexibleDelayInit = function(editor) {
|
1955 |
-
|
1956 |
-
if (editor.has('id') || !editor.$el.is(':visible') || acfe.isFilterEnabled('acfeForceOpen'))
|
1957 |
-
return;
|
1958 |
-
|
1959 |
-
var $wrap = editor.$control();
|
1960 |
-
|
1961 |
-
if ($wrap.hasClass('delay')) {
|
1962 |
|
1963 |
-
|
1964 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1965 |
|
1966 |
-
|
1967 |
-
editor.initializeEditor();
|
1968 |
|
1969 |
}
|
1970 |
|
1971 |
-
};
|
1972 |
-
|
1973 |
-
acf.addAction('show_field/type=wysiwyg', acfeFlexibleDelayInit);
|
1974 |
-
acf.addAction('ready_field/type=wysiwyg', acfeFlexibleDelayInit);
|
1975 |
|
1976 |
/*
|
1977 |
-
*
|
1978 |
*/
|
1979 |
-
acf.
|
1980 |
-
|
1981 |
-
// Vars
|
1982 |
-
var $clones = flexible.$clones();
|
1983 |
-
var $layouts = flexible.$layouts();
|
1984 |
-
|
1985 |
-
// Merge
|
1986 |
-
var $all_layouts = $.merge($layouts, $clones);
|
1987 |
|
1988 |
-
|
1989 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1990 |
|
1991 |
-
|
1992 |
-
var $name = $layout.data('layout');
|
1993 |
|
1994 |
-
|
1995 |
-
|
|
|
1996 |
|
1997 |
-
|
|
|
1998 |
|
1999 |
-
|
2000 |
-
|
2001 |
|
2002 |
-
|
2003 |
-
|
2004 |
-
'click [data-name="add-layout"]': 'onClickAdd'
|
2005 |
-
});
|
2006 |
|
2007 |
-
// Add ACF Extended Modal action
|
2008 |
-
flexible.addEvents({
|
2009 |
-
'click [data-name="add-layout"]': 'acfeOneClick'
|
2010 |
});
|
2011 |
|
2012 |
-
|
2013 |
-
|
2014 |
-
flexible.addEvents({
|
2015 |
-
'click .acfe-fc-placeholder': 'onClickCollapse'
|
2016 |
-
});
|
2017 |
-
|
2018 |
-
flexible.addEvents({
|
2019 |
-
'click .acfe-flexible-opened-actions > a': 'onClickCollapse'
|
2020 |
-
});
|
2021 |
-
|
2022 |
-
// Flexible: Ajax
|
2023 |
-
if (flexible.has('acfeFlexibleAjax')) {
|
2024 |
-
|
2025 |
-
flexible.add = function(args) {
|
2026 |
-
|
2027 |
-
// Get Flexible
|
2028 |
-
var flexible = this;
|
2029 |
|
2030 |
-
//
|
2031 |
-
|
2032 |
-
layout: ''
|
2033 |
-
before: false
|
2034 |
});
|
2035 |
|
2036 |
-
//
|
2037 |
-
|
2038 |
-
|
2039 |
-
}
|
2040 |
-
|
2041 |
-
// ajax
|
2042 |
-
$.ajax({
|
2043 |
-
url: acf.get('ajaxurl'),
|
2044 |
-
data: acf.prepareForAjax({
|
2045 |
-
action: 'acfe/flexible/models',
|
2046 |
-
field_key: this.get('key'),
|
2047 |
-
layout: args.layout,
|
2048 |
-
}),
|
2049 |
-
dataType: 'html',
|
2050 |
-
type: 'post',
|
2051 |
-
beforeSend: function() {
|
2052 |
-
$('body').addClass('-loading');
|
2053 |
-
},
|
2054 |
-
success: function(html) {
|
2055 |
-
if (html) {
|
2056 |
-
|
2057 |
-
var $layout = $(html);
|
2058 |
-
var uniqid = acf.uniqid();
|
2059 |
-
|
2060 |
-
var search = 'acf[' + flexible.get('key') + '][acfcloneindex]';
|
2061 |
-
var replace = flexible.$control().find('> input[type=hidden]').attr('name') + '[' + uniqid + ']';
|
2062 |
-
|
2063 |
-
// add row
|
2064 |
-
var $el = acf.duplicate({
|
2065 |
-
target: $layout,
|
2066 |
-
search: search,
|
2067 |
-
replace: replace,
|
2068 |
-
append: flexible.proxy(function($el, $el2) {
|
2069 |
-
|
2070 |
-
// append
|
2071 |
-
if (args.before) {
|
2072 |
-
args.before.before($el2);
|
2073 |
-
} else {
|
2074 |
-
flexible.$layoutsWrap().append($el2);
|
2075 |
-
}
|
2076 |
-
|
2077 |
-
// enable
|
2078 |
-
acf.enable($el2, flexible.cid);
|
2079 |
-
|
2080 |
-
// render
|
2081 |
-
flexible.render();
|
2082 |
-
})
|
2083 |
-
});
|
2084 |
-
|
2085 |
-
// Fix data-id
|
2086 |
-
$el.attr('data-id', uniqid);
|
2087 |
-
|
2088 |
-
// trigger change for validation errors
|
2089 |
-
flexible.$input().trigger('change');
|
2090 |
-
|
2091 |
-
// return
|
2092 |
-
return $el;
|
2093 |
-
|
2094 |
-
}
|
2095 |
-
},
|
2096 |
-
'complete': function() {
|
2097 |
-
$('body').removeClass('-loading');
|
2098 |
-
}
|
2099 |
});
|
2100 |
|
2101 |
-
}
|
2102 |
|
2103 |
-
|
|
|
|
|
2104 |
|
2105 |
-
|
|
|
|
|
2106 |
|
2107 |
-
|
|
|
2108 |
|
2109 |
-
|
2110 |
-
if (flexible.isLayoutClosed($layout)) {
|
2111 |
|
2112 |
-
|
2113 |
-
|
2114 |
|
2115 |
-
|
|
|
|
|
|
|
|
|
2116 |
|
2117 |
-
|
|
|
|
|
|
|
2118 |
|
2119 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2120 |
|
2121 |
-
|
2122 |
|
2123 |
}
|
2124 |
|
2125 |
-
}
|
2126 |
|
2127 |
-
|
2128 |
|
2129 |
-
|
|
|
2130 |
|
2131 |
-
|
2132 |
-
|
2133 |
|
2134 |
-
|
2135 |
|
2136 |
-
|
2137 |
-
if (!flexible.has('acfeFlexibleModalEdition')) {
|
2138 |
|
2139 |
-
|
2140 |
-
$layout.find('> .acfe-fc-placeholder').addClass('acf-hidden');
|
2141 |
|
2142 |
-
|
2143 |
|
2144 |
-
|
2145 |
|
2146 |
-
|
2147 |
|
2148 |
-
|
2149 |
-
return;
|
2150 |
|
2151 |
-
|
2152 |
-
var flexible = acf.getInstance($layout.closest('.acf-field-flexible-content'));
|
2153 |
|
2154 |
-
|
2155 |
-
|
|
|
2156 |
|
2157 |
-
flexible
|
2158 |
|
2159 |
-
|
|
|
|
|
|
|
2160 |
|
2161 |
-
|
2162 |
-
flexible.acfeLayoutInit($layout);
|
2163 |
|
2164 |
-
|
2165 |
|
2166 |
-
|
|
|
|
|
2167 |
|
2168 |
-
|
2169 |
-
|
2170 |
-
return;
|
2171 |
|
2172 |
-
|
2173 |
-
|
|
|
|
|
2174 |
|
2175 |
-
|
2176 |
-
|
2177 |
|
2178 |
-
|
2179 |
-
if (flexible.has('acfeFlexibleModalEdition')) {
|
2180 |
|
2181 |
-
|
2182 |
|
|
|
|
|
|
|
2183 |
}
|
2184 |
|
2185 |
-
//
|
2186 |
-
|
2187 |
-
|
2188 |
-
flexible.openLayout($el);
|
2189 |
|
2190 |
-
|
|
|
2191 |
|
2192 |
-
|
2193 |
-
|
2194 |
-
|
|
|
2195 |
|
2196 |
-
|
|
|
|
|
|
|
2197 |
|
2198 |
-
|
2199 |
|
2200 |
-
|
2201 |
-
$modal.find('> .acfe-modal-wrapper > .acfe-modal-content').animate({
|
2202 |
-
scrollTop: parseInt($el.offset().top) - 200
|
2203 |
-
}, 200);
|
2204 |
|
2205 |
-
|
2206 |
|
2207 |
-
if (
|
2208 |
|
2209 |
// Scroll to new layout
|
2210 |
-
$('
|
2211 |
scrollTop: parseInt($el.offset().top) - 200
|
2212 |
}, 200);
|
2213 |
|
2214 |
} else {
|
2215 |
|
2216 |
-
|
2217 |
-
if (!$el.hasClass('-focused')) {
|
2218 |
|
2219 |
// Scroll to new layout
|
2220 |
$('html, body').animate({
|
2221 |
scrollTop: parseInt($el.offset().top) - 200
|
2222 |
}, 200);
|
2223 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2224 |
}
|
2225 |
|
2226 |
}
|
2227 |
|
2228 |
-
}
|
2229 |
|
2230 |
-
|
2231 |
|
2232 |
-
|
2233 |
-
* Field Error
|
2234 |
-
*/
|
2235 |
-
acf.addAction('invalid_field', function(field) {
|
2236 |
|
2237 |
-
|
2238 |
|
2239 |
-
|
2240 |
|
2241 |
-
|
2242 |
-
* Field Valid
|
2243 |
-
*/
|
2244 |
-
acf.addAction('valid_field', function(field) {
|
2245 |
|
2246 |
-
|
2247 |
|
2248 |
-
|
|
|
|
|
2249 |
|
2250 |
-
|
2251 |
-
$layout.removeClass('acfe-flexible-modal-edit-error');
|
2252 |
|
2253 |
-
}
|
2254 |
|
2255 |
});
|
2256 |
|
@@ -2622,13 +2587,18 @@
|
|
2622 |
field.inherit(field.$input());
|
2623 |
|
2624 |
// remove "- -" characters from placeholder
|
|
|
2625 |
if (!field.get('ui') && field.get('allow_null')) {
|
2626 |
|
2627 |
field.$input().find('option').each(function(i, option) {
|
2628 |
|
2629 |
-
if (option.value)
|
|
|
|
|
2630 |
|
2631 |
-
if (!option.text.startsWith('- ') || !option.text.endsWith(' -'))
|
|
|
|
|
2632 |
|
2633 |
option.text = option.text.substring(2);
|
2634 |
option.text = option.text.substring(0, option.text.length - 2);
|
@@ -2891,6 +2861,68 @@
|
|
2891 |
|
2892 |
acf.registerFieldType(Textarea);
|
2893 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2894 |
})(jQuery);
|
2895 |
(function($) {
|
2896 |
|
@@ -3445,6 +3477,56 @@
|
|
3445 |
|
3446 |
});
|
3447 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3448 |
// Rewrite ACF New Condition
|
3449 |
// Allow conditions to work within wrapped div
|
3450 |
acf.newCondition = function(rule, conditions) {
|
1662 |
// Open Modal
|
1663 |
new acfe.Popup($modal, {
|
1664 |
title: modalTitle,
|
1665 |
+
size: flexible.get('acfeFlexibleModalSize'),
|
1666 |
destroy: true
|
1667 |
});
|
1668 |
|
1787 |
return;
|
1788 |
|
1789 |
/*
|
1790 |
+
* Field: Flexible Content Overwrite
|
1791 |
*/
|
1792 |
+
var FlexibleContent = acf.models.FlexibleContentField;
|
|
|
1793 |
|
1794 |
+
acf.models.FlexibleContentField = FlexibleContent.extend({
|
|
|
|
|
|
|
1795 |
|
1796 |
+
addSortable: function(self) {
|
|
|
|
|
|
|
1797 |
|
1798 |
+
// bail early if max 1 row
|
1799 |
+
if (this.get('max') == 1) {
|
1800 |
+
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1801 |
}
|
|
|
1802 |
|
1803 |
+
// add sortable
|
1804 |
+
this.$layoutsWrap().sortable({
|
1805 |
+
items: ' > .layout',
|
1806 |
+
handle: '> .acf-fc-layout-handle',
|
1807 |
+
forceHelperSize: false, // Changed to false
|
1808 |
+
forcePlaceholderSize: true,
|
1809 |
+
revert: 50,
|
1810 |
+
tolerance: "pointer", // Changed to pointer
|
1811 |
+
scroll: true,
|
1812 |
+
stop: function(event, ui) {
|
1813 |
+
self.render();
|
1814 |
+
},
|
1815 |
+
update: function(event, ui) {
|
1816 |
+
self.$input().trigger('change');
|
1817 |
+
}
|
1818 |
+
});
|
1819 |
|
1820 |
+
},
|
|
|
|
|
|
|
1821 |
|
1822 |
+
acfeOneClick: function(e, $el) {
|
|
|
1823 |
|
1824 |
+
// Vars
|
1825 |
+
var $clones = this.$clones();
|
1826 |
+
var $layout_name = $($clones[0]).data('layout');
|
1827 |
|
1828 |
+
// Source
|
1829 |
+
var $layout_source = null;
|
|
|
|
|
1830 |
|
1831 |
+
if ($el.hasClass('acf-icon')) {
|
1832 |
+
$layout_source = $el.closest('.layout');
|
1833 |
+
}
|
|
|
|
|
1834 |
|
1835 |
+
// Add
|
1836 |
+
this.add({
|
1837 |
+
layout: $layout_name,
|
1838 |
+
before: $layout_source
|
1839 |
+
});
|
1840 |
|
1841 |
+
// Hide native tooltip
|
1842 |
+
var acfPopup = $('.acf-fc-popup');
|
|
|
1843 |
|
1844 |
+
if (acfPopup.length) {
|
1845 |
+
acfPopup.hide();
|
1846 |
+
}
|
1847 |
|
|
|
1848 |
|
1849 |
+
},
|
1850 |
|
1851 |
+
acfeLayoutInit: function($layout) {
|
|
|
1852 |
|
1853 |
+
// flexible content
|
1854 |
+
var key = this.get('key');
|
1855 |
+
var name = this.get('name');
|
1856 |
+
var $el = this.$el;
|
1857 |
|
1858 |
+
// layout
|
1859 |
+
var layout = $layout.data('layout');
|
1860 |
+
var index = $layout.index();
|
1861 |
|
1862 |
+
// Placeholder
|
1863 |
+
var $placeholder = $layout.find('> .acfe-fc-placeholder');
|
1864 |
|
1865 |
+
// Placeholder: Show
|
1866 |
+
$placeholder.removeClass('acf-hidden');
|
1867 |
|
1868 |
+
// If no modal edition & opened: Hide Placeholder
|
1869 |
+
if (!this.has('acfeFlexibleModalEdition') && !this.isLayoutClosed($layout)) {
|
1870 |
|
1871 |
+
$placeholder.addClass('acf-hidden');
|
1872 |
|
1873 |
+
}
|
|
|
1874 |
|
1875 |
+
// Flexible has Preview
|
1876 |
+
if (this.isLayoutClosed($layout) && this.has('acfeFlexiblePreview') && !$placeholder.hasClass('-loading')) {
|
1877 |
|
1878 |
+
$placeholder.addClass('acfe-fc-preview -loading').find('> .acfe-flexible-placeholder').prepend('<span class="spinner"></span>');
|
1879 |
+
$placeholder.find('> .acfe-fc-overlay').addClass('-hover');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1880 |
|
1881 |
+
// vars
|
1882 |
+
var $input = $layout.children('input');
|
1883 |
+
var prefix = $input.attr('name').replace('[acf_fc_layout]', '');
|
1884 |
+
|
1885 |
+
// ajax data
|
1886 |
+
var ajaxData = {
|
1887 |
+
action: 'acfe/flexible/layout_preview',
|
1888 |
+
field_key: key,
|
1889 |
+
i: index,
|
1890 |
+
layout: layout,
|
1891 |
+
value: acf.serialize($layout, prefix)
|
1892 |
+
};
|
1893 |
|
1894 |
+
acf.doAction('acfe/fields/flexible_content/before_preview', $el, $layout, ajaxData);
|
1895 |
+
acf.doAction('acfe/fields/flexible_content/before_preview/name=' + name, $el, $layout, ajaxData);
|
1896 |
+
acf.doAction('acfe/fields/flexible_content/before_preview/key=' + key, $el, $layout, ajaxData);
|
1897 |
+
acf.doAction('acfe/fields/flexible_content/before_preview/name=' + name + '&layout=' + layout, $el, $layout, ajaxData);
|
1898 |
+
acf.doAction('acfe/fields/flexible_content/before_preview/key=' + key + '&layout=' + layout, $el, $layout, ajaxData);
|
|
|
|
|
1899 |
|
1900 |
+
// on success
|
1901 |
+
var onSuccess = function(response) {
|
1902 |
|
1903 |
+
if (response) {
|
1904 |
$placeholder.find('> .acfe-flexible-placeholder').html(response);
|
|
|
1905 |
} else {
|
|
|
1906 |
$placeholder.removeClass('acfe-fc-preview');
|
|
|
1907 |
}
|
1908 |
|
1909 |
+
acf.doAction('acfe/fields/flexible_content/preview', response, $el, $layout, ajaxData);
|
1910 |
+
acf.doAction('acfe/fields/flexible_content/preview/name=' + name, response, $el, $layout, ajaxData);
|
1911 |
+
acf.doAction('acfe/fields/flexible_content/preview/key=' + key, response, $el, $layout, ajaxData);
|
1912 |
+
acf.doAction('acfe/fields/flexible_content/preview/name=' + name + '&layout=' + layout, response, $el, $layout, ajaxData);
|
1913 |
+
acf.doAction('acfe/fields/flexible_content/preview/key=' + key + '&layout=' + layout, response, $el, $layout, ajaxData);
|
1914 |
|
1915 |
+
};
|
1916 |
+
|
1917 |
+
// on complete
|
1918 |
+
var onComplete = function() {
|
1919 |
|
1920 |
$placeholder.find('> .acfe-fc-overlay').removeClass('-hover');
|
1921 |
$placeholder.removeClass('-loading').find('> .acfe-flexible-placeholder > .spinner').remove();
|
1922 |
|
1923 |
+
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1924 |
|
1925 |
+
// ajax
|
1926 |
+
$.ajax({
|
1927 |
+
url: acf.get('ajaxurl'),
|
1928 |
+
data: acf.prepareForAjax(ajaxData),
|
1929 |
+
dataType: 'html',
|
1930 |
+
type: 'post',
|
1931 |
+
success: onSuccess,
|
1932 |
+
complete: onComplete
|
1933 |
+
});
|
1934 |
|
1935 |
+
}
|
|
|
1936 |
|
1937 |
}
|
1938 |
|
1939 |
+
});
|
|
|
|
|
|
|
1940 |
|
1941 |
/*
|
1942 |
+
* Field: Flexible Content
|
1943 |
*/
|
1944 |
+
new acf.Model({
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1945 |
|
1946 |
+
actions: {
|
1947 |
+
'new_field/type=flexible_content': 'newField',
|
1948 |
+
'acfe/flexible/layouts': 'newLayouts',
|
1949 |
+
'show': 'onShow',
|
1950 |
+
'hide': 'onHide',
|
1951 |
+
'append': 'onAppend',
|
1952 |
+
'invalid_field': 'onInvalidField',
|
1953 |
+
'valid_field': 'onValidField',
|
1954 |
+
},
|
1955 |
|
1956 |
+
newField: function(flexible) {
|
|
|
1957 |
|
1958 |
+
// Vars
|
1959 |
+
var $clones = flexible.$clones();
|
1960 |
+
var $layouts = flexible.$layouts();
|
1961 |
|
1962 |
+
// Do Actions
|
1963 |
+
$layouts.each(function() {
|
1964 |
|
1965 |
+
var $layout = $(this);
|
1966 |
+
var $name = $layout.data('layout');
|
1967 |
|
1968 |
+
acf.doAction('acfe/flexible/layouts', $layout, flexible);
|
1969 |
+
acf.doAction('acfe/flexible/layout/name=' + $name, $layout, flexible);
|
|
|
|
|
1970 |
|
|
|
|
|
|
|
1971 |
});
|
1972 |
|
1973 |
+
// ACFE: 1 layout available - OneClick
|
1974 |
+
if ($clones.length === 1) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1975 |
|
1976 |
+
// Remove native ACF Tooltip action
|
1977 |
+
flexible.removeEvents({
|
1978 |
+
'click [data-name="add-layout"]': 'onClickAdd'
|
|
|
1979 |
});
|
1980 |
|
1981 |
+
// Add ACF Extended Modal action
|
1982 |
+
flexible.addEvents({
|
1983 |
+
'click [data-name="add-layout"]': 'acfeOneClick'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1984 |
});
|
1985 |
|
1986 |
+
}
|
1987 |
|
1988 |
+
flexible.addEvents({
|
1989 |
+
'click .acfe-fc-placeholder': 'onClickCollapse'
|
1990 |
+
});
|
1991 |
|
1992 |
+
flexible.addEvents({
|
1993 |
+
'click .acfe-flexible-opened-actions > a': 'onClickCollapse'
|
1994 |
+
});
|
1995 |
|
1996 |
+
// Flexible: Ajax
|
1997 |
+
if (flexible.has('acfeFlexibleAjax')) {
|
1998 |
|
1999 |
+
flexible.add = function(args) {
|
|
|
2000 |
|
2001 |
+
// Get Flexible
|
2002 |
+
var flexible = this;
|
2003 |
|
2004 |
+
// defaults
|
2005 |
+
args = acf.parseArgs(args, {
|
2006 |
+
layout: '',
|
2007 |
+
before: false
|
2008 |
+
});
|
2009 |
|
2010 |
+
// validate
|
2011 |
+
if (!this.allowAdd()) {
|
2012 |
+
return false;
|
2013 |
+
}
|
2014 |
|
2015 |
+
// ajax
|
2016 |
+
$.ajax({
|
2017 |
+
url: acf.get('ajaxurl'),
|
2018 |
+
data: acf.prepareForAjax({
|
2019 |
+
action: 'acfe/flexible/models',
|
2020 |
+
field_key: this.get('key'),
|
2021 |
+
layout: args.layout,
|
2022 |
+
}),
|
2023 |
+
dataType: 'html',
|
2024 |
+
type: 'post',
|
2025 |
+
beforeSend: function() {
|
2026 |
+
$('body').addClass('-loading');
|
2027 |
+
},
|
2028 |
+
success: function(html) {
|
2029 |
+
if (html) {
|
2030 |
+
|
2031 |
+
var $layout = $(html);
|
2032 |
+
var uniqid = acf.uniqid();
|
2033 |
+
|
2034 |
+
var search = 'acf[' + flexible.get('key') + '][acfcloneindex]';
|
2035 |
+
var replace = flexible.$control().find('> input[type=hidden]').attr('name') + '[' + uniqid + ']';
|
2036 |
+
|
2037 |
+
// add row
|
2038 |
+
var $el = acf.duplicate({
|
2039 |
+
target: $layout,
|
2040 |
+
search: search,
|
2041 |
+
replace: replace,
|
2042 |
+
append: flexible.proxy(function($el, $el2) {
|
2043 |
+
|
2044 |
+
// append
|
2045 |
+
if (args.before) {
|
2046 |
+
args.before.before($el2);
|
2047 |
+
} else {
|
2048 |
+
flexible.$layoutsWrap().append($el2);
|
2049 |
+
}
|
2050 |
+
|
2051 |
+
// enable
|
2052 |
+
acf.enable($el2, flexible.cid);
|
2053 |
+
|
2054 |
+
// render
|
2055 |
+
flexible.render();
|
2056 |
+
})
|
2057 |
+
});
|
2058 |
+
|
2059 |
+
// Fix data-id
|
2060 |
+
$el.attr('data-id', uniqid);
|
2061 |
+
|
2062 |
+
// trigger change for validation errors
|
2063 |
+
flexible.$input().trigger('change');
|
2064 |
+
|
2065 |
+
// return
|
2066 |
+
return $el;
|
2067 |
+
|
2068 |
+
}
|
2069 |
+
},
|
2070 |
+
'complete': function() {
|
2071 |
+
$('body').removeClass('-loading');
|
2072 |
+
}
|
2073 |
+
});
|
2074 |
|
2075 |
+
};
|
2076 |
|
2077 |
}
|
2078 |
|
2079 |
+
},
|
2080 |
|
2081 |
+
newLayouts: function($layout, flexible) {
|
2082 |
|
2083 |
+
// Layout Closed
|
2084 |
+
if (flexible.isLayoutClosed($layout)) {
|
2085 |
|
2086 |
+
// Placeholder
|
2087 |
+
$layout.find('> .acfe-fc-placeholder').removeClass('acf-hidden');
|
2088 |
|
2089 |
+
if (flexible.has('acfeFlexibleOpen')) {
|
2090 |
|
2091 |
+
acfe.enableFilter('acfeFlexibleOpen');
|
|
|
2092 |
|
2093 |
+
flexible.openLayout($layout);
|
|
|
2094 |
|
2095 |
+
acfe.disableFilter('acfeFlexibleOpen');
|
2096 |
|
2097 |
+
}
|
2098 |
|
2099 |
+
}
|
2100 |
|
2101 |
+
},
|
|
|
2102 |
|
2103 |
+
onShow: function($layout, type) {
|
|
|
2104 |
|
2105 |
+
if (type !== 'collapse' || !$layout.is('.layout')) {
|
2106 |
+
return;
|
2107 |
+
}
|
2108 |
|
2109 |
+
var flexible = acf.getInstance($layout.closest('.acf-field-flexible-content'));
|
2110 |
|
2111 |
+
// Hide Placeholder
|
2112 |
+
if (!flexible.has('acfeFlexibleModalEdition')) {
|
2113 |
+
$layout.find('> .acfe-fc-placeholder').addClass('acf-hidden');
|
2114 |
+
}
|
2115 |
|
2116 |
+
},
|
|
|
2117 |
|
2118 |
+
onHide: function($layout, type) {
|
2119 |
|
2120 |
+
if (type !== 'collapse' || !$layout.is('.layout') || $layout.is('.acf-clone')) {
|
2121 |
+
return;
|
2122 |
+
}
|
2123 |
|
2124 |
+
// Get Flexible
|
2125 |
+
var flexible = acf.getInstance($layout.closest('.acf-field-flexible-content'));
|
|
|
2126 |
|
2127 |
+
// Remove Ajax Title
|
2128 |
+
if (flexible.has('acfeFlexibleRemoveAjaxTitle')) {
|
2129 |
+
flexible.renderLayout = function($layout) {};
|
2130 |
+
}
|
2131 |
|
2132 |
+
// Preview Ajax
|
2133 |
+
flexible.acfeLayoutInit($layout);
|
2134 |
|
2135 |
+
},
|
|
|
2136 |
|
2137 |
+
onAppend: function($el) {
|
2138 |
|
2139 |
+
// Bail early if layout is not layout
|
2140 |
+
if (!$el.is('.layout')) {
|
2141 |
+
return;
|
2142 |
}
|
2143 |
|
2144 |
+
// Get Flexible
|
2145 |
+
var flexible = acf.getInstance($el.closest('.acf-field-flexible-content'));
|
|
|
|
|
2146 |
|
2147 |
+
// Open Layout
|
2148 |
+
if (!$el.is('.acfe-layout-duplicated')) {
|
2149 |
|
2150 |
+
// Modal Edition: Open
|
2151 |
+
if (flexible.has('acfeFlexibleModalEdition')) {
|
2152 |
+
$el.find('> [data-action="acfe-flexible-modal-edit"]:first').trigger('click');
|
2153 |
+
}
|
2154 |
|
2155 |
+
// Normal Edition: Open
|
2156 |
+
else {
|
2157 |
+
flexible.openLayout($el);
|
2158 |
+
}
|
2159 |
|
2160 |
+
}
|
2161 |
|
2162 |
+
flexible.acfeLayoutInit($el);
|
|
|
|
|
|
|
2163 |
|
2164 |
+
var $modal = flexible.$el.closest('.acfe-modal.-open');
|
2165 |
|
2166 |
+
if ($modal.length) {
|
2167 |
|
2168 |
// Scroll to new layout
|
2169 |
+
$modal.find('> .acfe-modal-wrapper > .acfe-modal-content').animate({
|
2170 |
scrollTop: parseInt($el.offset().top) - 200
|
2171 |
}, 200);
|
2172 |
|
2173 |
} else {
|
2174 |
|
2175 |
+
if (acfe.versionCompare(acf.get('acf_version'), '<', '5.9')) {
|
|
|
2176 |
|
2177 |
// Scroll to new layout
|
2178 |
$('html, body').animate({
|
2179 |
scrollTop: parseInt($el.offset().top) - 200
|
2180 |
}, 200);
|
2181 |
|
2182 |
+
} else {
|
2183 |
+
|
2184 |
+
// Avoid native ACF duplicate
|
2185 |
+
if (!$el.hasClass('-focused')) {
|
2186 |
+
|
2187 |
+
// Scroll to new layout
|
2188 |
+
$('html, body').animate({
|
2189 |
+
scrollTop: parseInt($el.offset().top) - 200
|
2190 |
+
}, 200);
|
2191 |
+
|
2192 |
+
}
|
2193 |
+
|
2194 |
}
|
2195 |
|
2196 |
}
|
2197 |
|
2198 |
+
},
|
2199 |
|
2200 |
+
onInvalidField: function(field) {
|
2201 |
|
2202 |
+
field.$el.parents('.layout').addClass('acfe-flexible-modal-edit-error');
|
|
|
|
|
|
|
2203 |
|
2204 |
+
},
|
2205 |
|
2206 |
+
onValidField: function(field) {
|
2207 |
|
2208 |
+
field.$el.parents('.layout').each(function() {
|
|
|
|
|
|
|
2209 |
|
2210 |
+
var $layout = $(this);
|
2211 |
|
2212 |
+
if (!$layout.find('.acf-error').length) {
|
2213 |
+
$layout.removeClass('acfe-flexible-modal-edit-error');
|
2214 |
+
}
|
2215 |
|
2216 |
+
});
|
|
|
2217 |
|
2218 |
+
}
|
2219 |
|
2220 |
});
|
2221 |
|
2587 |
field.inherit(field.$input());
|
2588 |
|
2589 |
// remove "- -" characters from placeholder
|
2590 |
+
// ACF already apply it to all Select2
|
2591 |
if (!field.get('ui') && field.get('allow_null')) {
|
2592 |
|
2593 |
field.$input().find('option').each(function(i, option) {
|
2594 |
|
2595 |
+
if (option.value) {
|
2596 |
+
return;
|
2597 |
+
}
|
2598 |
|
2599 |
+
if (!option.text.startsWith('- ') || !option.text.endsWith(' -')) {
|
2600 |
+
return;
|
2601 |
+
}
|
2602 |
|
2603 |
option.text = option.text.substring(2);
|
2604 |
option.text = option.text.substring(0, option.text.length - 2);
|
2861 |
|
2862 |
acf.registerFieldType(Textarea);
|
2863 |
|
2864 |
+
})(jQuery);
|
2865 |
+
(function($) {
|
2866 |
+
|
2867 |
+
if (typeof acf === 'undefined')
|
2868 |
+
return;
|
2869 |
+
|
2870 |
+
/*
|
2871 |
+
* Field: WYSIWYG Overwrite
|
2872 |
+
*/
|
2873 |
+
var Wysiwyg = acf.models.WysiwygField;
|
2874 |
+
|
2875 |
+
acf.models.WysiwygField = Wysiwyg.extend({
|
2876 |
+
|
2877 |
+
initialize: function() {
|
2878 |
+
|
2879 |
+
// initialize Editor if no delay and not already initialized
|
2880 |
+
if (!this.has('id') && !this.$control().hasClass('delay')) {
|
2881 |
+
this.initializeEditor();
|
2882 |
+
}
|
2883 |
+
|
2884 |
+
}
|
2885 |
+
|
2886 |
+
});
|
2887 |
+
|
2888 |
+
/*
|
2889 |
+
* Field: WYSIWYG
|
2890 |
+
*/
|
2891 |
+
new acf.Model({
|
2892 |
+
|
2893 |
+
actions: {
|
2894 |
+
'show_field/type=wysiwyg': 'showField',
|
2895 |
+
'ready_field/type=wysiwyg': 'showField',
|
2896 |
+
},
|
2897 |
+
|
2898 |
+
showField: function(field) {
|
2899 |
+
|
2900 |
+
if (!field.has('acfeWysiwygAutoInit') || !field.$el.is(':visible') || field.has('id') || acfe.isFilterEnabled('acfeFlexibleOpen')) {
|
2901 |
+
return;
|
2902 |
+
}
|
2903 |
+
|
2904 |
+
this.initializeEditor(field);
|
2905 |
+
|
2906 |
+
},
|
2907 |
+
|
2908 |
+
initializeEditor: function(field) {
|
2909 |
+
|
2910 |
+
var $wrap = field.$control();
|
2911 |
+
|
2912 |
+
if ($wrap.hasClass('delay')) {
|
2913 |
+
|
2914 |
+
$wrap.removeClass('delay');
|
2915 |
+
$wrap.find('.acf-editor-toolbar').remove();
|
2916 |
+
|
2917 |
+
// initialize
|
2918 |
+
field.initializeEditor();
|
2919 |
+
|
2920 |
+
}
|
2921 |
+
|
2922 |
+
},
|
2923 |
+
|
2924 |
+
});
|
2925 |
+
|
2926 |
})(jQuery);
|
2927 |
(function($) {
|
2928 |
|
3477 |
|
3478 |
});
|
3479 |
|
3480 |
+
// ACF 5.11.4
|
3481 |
+
var ensureFieldPostBoxIsVisible = function($el) {
|
3482 |
+
// Find the postbox element containing this field.
|
3483 |
+
var $postbox = $el.parents('.acf-postbox');
|
3484 |
+
|
3485 |
+
if ($postbox.length) {
|
3486 |
+
var acf_postbox = acf.getPostbox($postbox);
|
3487 |
+
|
3488 |
+
// ACFE: use class check instead of isHiddenByScreenOptions() for older ACF versions
|
3489 |
+
if (acf_postbox && (acf_postbox.$el.hasClass('hide-if-js') || acf_postbox.$el.css('display') == 'none')) {
|
3490 |
+
// Rather than using .show() here, we don't want the field to appear next reload.
|
3491 |
+
// So just temporarily show the field group so validation can complete.
|
3492 |
+
acf_postbox.$el.removeClass('hide-if-js');
|
3493 |
+
acf_postbox.$el.css('display', '');
|
3494 |
+
}
|
3495 |
+
}
|
3496 |
+
};
|
3497 |
+
|
3498 |
+
// ACF 5.11.4
|
3499 |
+
// added current element as argument
|
3500 |
+
var ensureInvalidFieldVisibility = function($el) {
|
3501 |
+
|
3502 |
+
var $inputs = $('.acf-field input');
|
3503 |
+
|
3504 |
+
// retrieve the current element parents form
|
3505 |
+
var $form = $el.closest('form');
|
3506 |
+
|
3507 |
+
// find fields inside the current form only
|
3508 |
+
if ($form.length) {
|
3509 |
+
$inputs = $form.find('.acf-field input');
|
3510 |
+
}
|
3511 |
+
|
3512 |
+
$inputs.each(function() {
|
3513 |
+
if (!this.checkValidity()) {
|
3514 |
+
ensureFieldPostBoxIsVisible($(this));
|
3515 |
+
}
|
3516 |
+
});
|
3517 |
+
|
3518 |
+
};
|
3519 |
+
|
3520 |
+
// ACF 5.11
|
3521 |
+
// Fix double front-end form that trigger validation for the other form
|
3522 |
+
acf.validation.onClickSubmit = function(e, $el) {
|
3523 |
+
|
3524 |
+
ensureInvalidFieldVisibility($el);
|
3525 |
+
|
3526 |
+
this.set('originalEvent', e);
|
3527 |
+
|
3528 |
+
}
|
3529 |
+
|
3530 |
// Rewrite ACF New Condition
|
3531 |
// Allow conditions to work within wrapped div
|
3532 |
acf.newCondition = function(rule, conditions) {
|
assets/js/acfe-input.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({type:"acfe_advanced_link",events:{'click a[data-name="add"]':"onClickEdit",'click a[data-name="edit"]':"onClickEdit",'click a[data-name="remove"]':"onClickRemove"},$control:function(){return this.$(".acf-link")},initialize:function(){},getValue:function(){var e={type:this.$(".input-type :checked").val(),title:this.$(".input-title").val(),url:this.$(".input-url").val(),post:this.$(".input-post :selected").text(),term:this.$(".input-term :selected").text(),target:this.$(".input-target").is(":checked")};return"post"===e.type?e.url=e.post:"term"===e.type&&(e.url=e.term),e},setValue:function(e){e=acf.parseArgs(e,{remove:!1,title:"",url:"",target:!1});var t=this.$control();t.removeClass("-value -external"),e.url&&t.addClass("-value"),e.target&&t.addClass("-external"),this.$(".link-title").html(e.title),this.$(".link-url").attr("href",e.url).html(e.url),e.remove&&(this.$(".input-type :checked").prop("checked",!1),this.$('.input-type [value="url"]').prop("checked",!0).trigger("change"),this.$(".input-title").val(""),this.$(".input-target").prop("checked",!1),this.$(".input-url").val("").trigger("change"),this.$(".input-post").val("").trigger("change"),this.$(".input-term").val("").trigger("change"))},onClickEdit:function(e,t){var a=t.closest(".acf-input").find(".acfe-modal"),t=a.attr("data-modal-title"),i=this;new acfe.Popup(a,{title:t,size:"medium",footer:acf.__("Close"),onClose:function(){i.onChange()}})},onClickRemove:function(e,t){this.setValue({remove:!0})},onChange:function(e,t){var a=this.getValue();this.setValue(a)}}),acf.registerFieldType(e),new acf.Model({actions:{invalid_field:"invalidField"},filters:{"select2_ajax_data/type=post_object":"ajaxField"},invalidField:function(e){var t=e.$el.closest(".acf-field-acfe-advanced-link").not(".acf-error");t.length&&acf.getInstance(t).showError(e.notice.get("text"))},ajaxField:function(e,t,a,i,n){if("post"!==i.get("key"))return e;a=acf.getInstance(a.closest(".acf-field-acfe-advanced-link"));return a&&(e.field_key=a.get("key")),e}}))}(jQuery),function(i){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({type:"acfe_button",events:{"click input":"onClick","click button":"onClick"},$input:function(){return this.$("input").length?this.$("input"):this.$("button").length?this.$("button"):void 0},initialize:function(){var e=this.$input();this.inherit(e)},onClick:function(e,t){var a;this.get("ajax")&&(e.preventDefault(),a={action:"acfe/fields/button",field_key:this.get("key"),acf:acf.serialize(this.$el.closest("form"),"acf")},a=acf.applyFilters("acfe/fields/button/data",a,this.$el),a=acf.applyFilters("acfe/fields/button/data/name="+this.get("name"),a,this.$el),a=acf.applyFilters("acfe/fields/button/data/key="+this.get("key"),a,this.$el),acf.doAction("acfe/fields/button/before_ajax",this.$el,a),acf.doAction("acfe/fields/button/before",this.$el,a),acf.doAction("acfe/fields/button/before/name="+this.get("name"),this.$el,a),acf.doAction("acfe/fields/button/before/key="+this.get("key"),this.$el,a),i.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(a),type:"post",dataType:"json",context:this,success:function(e){acf.doAction("acfe/fields/button/ajax_success",e,this.$el,a),acf.doAction("acfe/fields/button/success",e,this.$el,a),acf.doAction("acfe/fields/button/success/name="+this.get("name"),e,this.$el,a),acf.doAction("acfe/fields/button/success/key="+this.get("key"),e,this.$el,a)},complete:function(e){e=e.responseText;acf.doAction("acfe/fields/button/complete",e,this.$el,a),acf.doAction("acfe/fields/button/complete/name="+this.get("name"),e,this.$el,a),acf.doAction("acfe/fields/button/complete/key="+this.get("key"),e,this.$el,a)}}))}}),acf.registerFieldType(e))}(jQuery),function(e){"undefined"!=typeof acf&&new acf.Model({actions:{"new_field/type=checkbox":"newField"},newField:function(a){a.has("acfeLabels")&&e.each(a.get("acfeLabels"),function(e,t){a.$control().find('input[type=checkbox][value="'+t+'"]').closest("ul").before("<strong>"+e+"</strong>")})}})}(jQuery),function(){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({wait:!1,type:"clone",events:{'click [data-name="edit"]':"onClick",duplicateField:"onDuplicate"},initialize:function(){var e;this.has("acfeCloneModal")&&(e=this.get("acfeCloneModalButton"),this.$el.find("> .acf-input > .acf-fields, > .acf-input > .acf-table").wrapAll('<div class="acfe-modal"><div class="acfe-modal-wrapper"><div class="acfe-modal-content"></div></div></div>'),this.$el.find("> .acf-input").append('<a data-name="edit" class="acf-button button" href="#">'+e+"</a>"))},onClick:function(e,t){var a=this.$labelWrap().find("label").text().trim(),i=this.$el.find("> .acf-input > .acfe-modal").addClass("acfe-modal-edit-"+this.get("name")+" acfe-modal-edit-"+this.get("key"));a.length||(a=this.get("acfeCloneModalButton"));var n=!1;this.has("acfeCloneModalClose")&&(n=acf.__("Close"));var o="large";this.has("acfeCloneModalSize")&&(o=this.get("acfeCloneModalSize")),new acfe.Popup(i,{title:a,size:o,footer:n})},onDuplicate:function(e,t,a){a.find('a[data-name="edit"]').remove()}}),acf.registerFieldType(e))}(jQuery),function(){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({wait:"ready",type:"acfe_code_editor",events:{showField:"onShow",duplicateField:"onDuplicate"},$control:function(){return this.$el.find("> .acf-input > .acf-input-wrap")},$input:function(){return this.$el.find("> .acf-input > .acf-input-wrap > textarea")},input:function(){return this.$input()[0]},rows:function(){return this.$input().attr("rows")},initialize:function(){this.rows=this.$control().data("rows"),this.max_rows=this.$control().data("max-rows"),this.mode=this.$control().data("mode"),this.lines=this.$control().data("lines"),this.indentUnit=this.$control().data("indent-unit");var e=[],t=wp.codeEditor.defaultSettings.codemirror,a={lineNumbers:this.lines,lineWrapping:!0,styleActiveLine:!1,continueComments:!0,indentUnit:this.indentUnit,tabSize:1,indentWithTabs:!1,mode:this.mode,extraKeys:{Tab:function(e){e.execCommand("indentMore")},"Shift-Tab":function(e){e.execCommand("indentLess")}}},a=jQuery.extend(t,a);e.codemirror=a,this.editor=wp.codeEditor.initialize(this.input(),e),(this.rows||this.max_rows)&&(this.rows&&(this.editor.codemirror.getScrollerElement().style.minHeight=18.5*this.rows+"px"),this.max_rows&&(this.editor.codemirror.getScrollerElement().style.maxHeight=18.5*this.max_rows+"px"),this.editor.codemirror.refresh()),(field=this).editor.codemirror.on("change",function(){field.editor.codemirror.save(),field.$input().change()})},onShow:function(){this.editor.codemirror&&this.editor.codemirror.refresh()},onDuplicate:function(e,t,a){a.find(".CodeMirror:last").remove()}}),acf.registerFieldType(e))}(jQuery),function(){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({wait:"new_field",type:"acfe_column",$control:function(){return this.$(".acf-fields:first")},initialize:function(){if(this.$el.is("td")&&(this.$el.closest(".acf-table").find('th[data-type="acfe_column"]').remove(),this.remove()),this.get("endpoint"))return this.$el.find("> .acf-label").remove(),void this.$el.find("> .acf-input").remove();var e=this.$el,t=this.$el.find("> .acf-label"),a=(this.$inputWrap(),this.$control());t.remove();t=e.parent();t.addClass("acfe-column-wrapper"),a.addClass(t.hasClass("-left")?"-left":""),a.addClass(t.hasClass("-clear")?"-clear":""),a.append(e.nextUntil(".acf-field-acfe-column",".acf-field"))}}),acf.registerFieldType(e))}(jQuery),function(r){var n;"undefined"!=typeof acf&&((n=acf.getFieldType("flexible_content").prototype).events["click .acf-fc-layout-handle"]="acfeEditLayoutTitleToggleHandle",n.acfeEditLayoutTitleToggleHandle=function(e,t){!this.has("acfeFlexibleTitleEdition")||(t=t.closest(".layout")).hasClass("acfe-flexible-title-edition")&&t.find("> .acf-fc-layout-handle > .acfe-layout-title > input.acfe-flexible-control-title").trigger("blur")},n.events["click .acfe-layout-title-text"]="acfeEditLayoutTitle",n.acfeEditLayoutTitle=function(e,t){this.has("acfeFlexibleTitleEdition")&&(e.stopPropagation(),this.acfeEditLayoutTitleToggle(e,t))},n.events["blur input.acfe-flexible-control-title"]="acfeEditLayoutTitleToggle",n.acfeEditLayoutTitleToggle=function(e,t){var a,i=t.closest(".layout"),n=i.find("> .acf-fc-layout-handle"),t=n.find(".acfe-layout-title");i.hasClass("acfe-flexible-title-edition")?(""===(a=t.find("> input[data-acfe-flexible-control-title-input]")).val()&&a.val(a.attr("placeholder")).trigger("input"),i.removeClass("acfe-flexible-title-edition"),a.insertAfter(n)):(a=(a=i.find("> input[data-acfe-flexible-control-title-input]")).appendTo(t),i.addClass("acfe-flexible-title-edition"),a.focus().attr("size",a.val().length))},n.events["click input.acfe-flexible-control-title"]="acfeEditLayoutTitlePropagation",n.acfeEditLayoutTitlePropagation=function(e,t){e.stopPropagation()},n.events["input [data-acfe-flexible-control-title-input]"]="acfeEditLayoutTitleInput",n.acfeEditLayoutTitleInput=function(e,t){var a=t.closest(".layout").find("> .acf-fc-layout-handle .acfe-layout-title .acfe-layout-title-text"),i=t.val();t.attr("size",i.length),a.html(i)},n.events["keypress [data-acfe-flexible-control-title-input]"]="acfeEditLayoutTitleInputEnter",n.acfeEditLayoutTitleInputEnter=function(e,t){13===e.keyCode&&(e.preventDefault(),t.blur())},n.events["click [data-acfe-flexible-settings]"]="acfeLayoutSettings",n.acfeLayoutSettings=function(e,t){var a=this,i=t.closest(".layout"),n=i.find("> .acfe-modal.-settings"),o=i.find("> .acf-fc-layout-handle"),t=o.find("> .acf-fc-layout-order").outerHTML(),o=o.find(".acfe-layout-title-text").text();new acfe.Popup(n,{title:t+" "+o,footer:acf.__("Close"),onClose:function(){a.has("acfeFlexiblePreview")&&a.closeLayout(i)}})},n.events["click [data-acfe-flexible-control-toggle]"]="acfeLayoutToggle",n.acfeLayoutToggle=function(e,t){var a=t.closest(".layout"),t=a.find("> .acfe-flexible-layout-toggle");t.length&&("1"===t.val()?(a.removeClass("acfe-flexible-layout-hidden"),t.val("")):(a.addClass("acfe-flexible-layout-hidden"),t.val("1")))},acf.addAction("acfe/flexible/layouts",function(e,t){!t.has("acfeFlexibleToggle")||(t=e.find("> .acfe-flexible-layout-toggle")).length&&("1"===t.val()?e.addClass("acfe-flexible-layout-hidden"):e.removeClass("acfe-flexible-layout-hidden"))}),n.events["click [data-acfe-flexible-control-clone]"]="acfeCloneLayout",n.acfeCloneLayout=function(e,t){var a,i=this,n=t.closest(".layout"),o=n.data("layout"),c=r(i.$popup().html()),l=i.$layouts(),c=c.find('[data-layout="'+o+'"]'),c=(c.data("min"),c.data("max")||0),o=(a=o,l.filter(function(){return r(this).data("layout")===a}).length);if(c&&c<=o)return t.addClass("disabled"),!1;t.removeClass("disabled"),i.acfeFixInputs(n);o=n.clone();i.acfeCleanLayouts(o);t=t.closest(".acf-flexible-content").find("> input[type=hidden]").attr("name"),i.acfeDuplicate({layout:o,before:n,parent:t})},n.events["click [data-acfe-flexible-control-copy]"]="acfeCopyLayout",n.acfeCopyLayout=function(e,t){var a=t.closest(".layout").clone(),t=this.$control().find("> input[type=hidden]").attr("name");this.acfeFixInputs(a),this.acfeCleanLayouts(a);t=JSON.stringify({source:t,layouts:a[0].outerHTML}),a=r('<input type="text" style="clip:rect(0,0,0,0);clip-path:none;position:absolute;" value="" />').appendTo(r("body"));a.attr("value",t).select(),document.execCommand("copy")?alert("Layout has been transferred to your clipboard"):prompt("Copy the following layout data to your clipboard",t),a.remove()},n.acfeCopyLayouts=function(){var e=this,t=e.$layoutsWrap().clone(),a=e.$control().find("> input[type=hidden]").attr("name");e.acfeFixInputs(t),e.acfeCleanLayouts(t);t=JSON.stringify({source:a,layouts:t.html()}),e=r('<input type="text" style="clip:rect(0,0,0,0);clip-path:none;position:absolute;" value="" />').appendTo(e.$el);e.attr("value",t).select(),document.execCommand("copy")?alert("Layouts have been transferred to your clipboard"):prompt("Copy the following layouts data to your clipboard",t),e.remove()},n.acfePasteLayouts=function(){var n=this,e=prompt("Paste layouts data in the following field");if(null!=e&&""!==e)try{var t=JSON.parse(e),i=t.source,a=r(t.layouts).closest("[data-layout]");if(!a.length)return alert("No layouts data available");var o=r(n.$popup().html()),c=n.$layouts(),l=[];if(a.each(function(){var e,t=r(this),a=t.data("layout"),i=o.find('[data-layout="'+a+'"]'),i=(i.data("min"),i.data("max")||0),a=(e=a,c.filter(function(){return r(this).data("layout")===e}).length);i&&i<=a||n.$clone(t.attr("data-layout")).length&&l.push(t)}),!l.length)return alert("No layouts could be pasted");r.each(l,function(){var e=r(this),t=i+"["+e.attr("data-id")+"]",a=n.$control().find("> input[type=hidden]").attr("name");n.acfeDuplicate({layout:e,before:!1,search:t,parent:a})})}catch(e){console.log(e),alert("Invalid data")}},n.events['click [data-name="acfe-flexible-control-button"]']="acfeControl",n.acfeControl=function(e,t){var a=this,i=t.next(".tmpl-acfe-flexible-control-popup").html();new(acf.models.TooltipConfirm.extend({render:function(){this.html(this.get("text")),this.$el.addClass("acf-fc-popup")}}))({target:t,targetConfirm:!1,text:i,context:a,confirm:function(e,t){"paste"===t.attr("data-acfe-flexible-control-action")?a.acfePasteLayouts():"copy"===t.attr("data-acfe-flexible-control-action")&&a.acfeCopyLayouts()}}).on("click","a","onConfirm")},n.acfeDuplicate=function(a){if(a=acf.parseArgs(a,{layout:"",before:!1,parent:!1,search:"",replace:""}),!this.allowAdd())return!1;var i=acf.uniqid();a.parent&&(a.search||(a.search=a.parent+"["+a.layout.attr("data-id")+"]"),a.replace=a.parent+"["+i+"]");var e,t={target:a.layout,search:a.search,replace:a.replace,append:this.proxy(function(e,t){t.addClass("acfe-layout-duplicated"),t.attr("data-id",i),a.before?a.before.after(t):this.$layoutsWrap().append(t),acf.enable(t,this.cid),this.render()})};e=acfe.versionCompare(acf.get("acf_version"),"<","5.9")?acf.duplicate(t):n.acfeNewAcfDuplicate(t),this.$input().trigger("change");t=acf.getFields({type:"tab",parent:e});return t.length&&r.each(t,function(){this.$el.hasClass("acf-hidden")&&this.tab.$el.addClass("acf-hidden")}),e},n.acfeNewAcfDuplicate=function(e){e instanceof jQuery&&(e={target:e}),(e=acf.parseArgs(e,{target:!1,search:"",replace:"",rename:!0,before:function(e){},after:function(e,t){},append:function(e,t){e.after(t)}})).target=e.target||e.$el;var t=e.target;e.search=e.search||t.attr("data-id"),e.replace=e.replace||acf.uniqid(),e.before(t),acf.doAction("before_duplicate",t);var a=t.clone();return e.rename&&acf.rename({target:a,search:e.search,replace:e.replace,replacer:"function"==typeof e.rename?e.rename:null}),a.removeClass("acf-clone"),a.find(".ui-sortable").removeClass("ui-sortable"),e.after(t,a),acf.doAction("after_duplicate",t,a),e.append(t,a),acf.doAction("append",a),a},n.acfeFixInputs=function(e){e.find("input").each(function(){r(this).attr("value",this.value)}),e.find("textarea").each(function(){r(this).html(this.value)}),e.find("input:radio,input:checkbox").each(function(){this.checked?r(this).attr("checked","checked"):r(this).attr("checked",!1)}),e.find("option").each(function(){this.selected?r(this).attr("selected","selected"):r(this).attr("selected",!1)})},n.acfeCleanLayouts=function(e){e.find(".acf-editor-wrap").each(function(){var e=r(this);e.find(".wp-editor-container div").remove(),e.find(".wp-editor-container textarea").css("display","")}),e.find(".acf-date-picker").each(function(){r(this).find("input.input").removeClass("hasDatepicker").removeAttr("id")}),e.find(".acf-time-picker").each(function(){r(this).find("input.input").removeClass("hasDatepicker").removeAttr("id")}),e.find(".acf-date-time-picker").each(function(){r(this).find("input.input").removeClass("hasDatepicker").removeAttr("id")}),e.find(".acfe-field-code-editor").each(function(){r(this).find(".CodeMirror").remove()}),e.find(".acf-color-picker").each(function(){var e=r(this),t=e.find("> input"),a=e.find(".wp-picker-container input.wp-color-picker").clone();t.after(a),e.find(".wp-picker-container").remove()}),e.find(".acf-field-post-object").each(function(){var e=r(this);e.find("> .acf-input span").remove(),e.find("> .acf-input select").removeAttr("tabindex aria-hidden").removeClass()}),e.find(".acf-field-page-link").each(function(){var e=r(this);e.find("> .acf-input span").remove(),e.find("> .acf-input select").removeAttr("tabindex aria-hidden").removeClass()}),e.find(".acf-field-select").each(function(){var e=r(this);e.find("> .acf-input span").remove(),e.find("> .acf-input select").removeAttr("tabindex aria-hidden").removeClass()}),e.find(".acf-field-font-awesome").each(function(){var e=r(this);e.find("> .acf-input span").remove(),e.find("> .acf-input select").removeAttr("tabindex aria-hidden")}),e.find(".acf-tab-wrap").each(function(){var e=r(this),t=e.closest(".acf-fields"),a=[];r.each(e.find("li a"),function(){a.push(r(this))}),t.find("> .acf-field-tab").each(function(){$current_tab=r(this),r.each(a,function(){var e=r(this);e.attr("data-key")===$current_tab.attr("data-key")&&$current_tab.find("> .acf-input").append(e)})}),e.remove()}),e.find(".acf-field-accordion").each(function(){var e=r(this);e.find("> .acf-accordion-title > .acf-accordion-icon").remove(),e.after('<div class="acf-field acf-field-accordion" data-type="accordion"><div class="acf-input"><div class="acf-fields" data-endpoint="1"></div></div></div>')})},acf.addAction("new_field/type=flexible_content",function(e){e.has("acfeFlexibleLock")&&e.removeEvents({mouseover:"onHover"})}))}(jQuery),function(){var e;"undefined"!=typeof acf&&((e=acf.getFieldType("flexible_content").prototype).events['click [data-action="acfe-flexible-modal-edit"]']="acfeModalEdit",e.acfeModalEdit=function(e,t){var a=this,i=t.closest(".layout"),n=i.find("> .acfe-modal.-fields").addClass("acfe-modal-edit-"+a.get("name")+" acfe-modal-edit-"+a.get("key")).addClass("acfe-modal-edit-"+i.data("layout")),o=i.find("> .acf-fc-layout-handle"),c=o.find("> .acf-fc-layout-order").outerHTML(),t=acfe.getTextNode(o.find(".acfe-layout-title-text")),o=!1;a.has("acfeFlexibleCloseButton")&&(o=acf.__("Close")),new acfe.Popup(n,{title:c+" "+t,footer:o,onOpen:function(){a.openLayout(i)},onClose:function(){a.closeLayout(i)}})},acf.addAction("new_field/type=flexible_content",function(e){e.has("acfeFlexibleModalEdition")&&(e.has("acfeFlexiblePlaceholder")||e.has("acfeFlexiblePreview"))&&(e.removeEvents({'click [data-name="collapse-layout"]':"onClickCollapse"}),e.removeEvents({"click .acfe-fc-placeholder":"onClickCollapse"}))}))}(jQuery),function(l){"undefined"!=typeof acf&&(acf.getFieldType("flexible_content").prototype.acfeModalSelect=function(e,t){var a=this;if(!a.validateAdd())return!1;var i=null;t.hasClass("acf-icon")&&(i=t.closest(".layout"));var n=a.getPopupHTML(),o={array:[],html:""};l(n).find("li a span[data-acfe-flexible-category]").each(function(){var e=l(this).data("acfe-flexible-category");l.each(e,function(){-1===function(e,t){for(var a=t.length,i=e.toString().toLowerCase(),n=0;n<a;n++)if(t[n].toLowerCase()===i)return n;return-1}(this,o.array)&&o.array.push(this)})}),o.array.length&&(o.array.sort(),o.html+='<h2 class="acfe-flexible-categories nav-tab-wrapper">',o.html+='<a href="#" data-acfe-flexible-category="acfe-all" class="nav-tab nav-tab-active"><span class="dashicons dashicons-menu"></span></a>',l(o.array).each(function(e,t){o.html+='<a href="#" data-acfe-flexible-category="'+t+'" class="nav-tab">'+t+"</a>"}),o.html+="</h2>");t=acf.__("Add Row");a.has("acfeFlexibleModalTitle")&&(t=a.get("acfeFlexibleModalTitle"));var c=l('<div class="acfe-modal acfe-modal-select-'+a.get("name")+" acfe-modal-select-"+a.get("key")+'">'+o.html+'<div class="acfe-flex-container">'+n+"</div></div>").appendTo("body");new acfe.Popup(c,{title:t,size:"full",destroy:!0}),a.has("acfeFlexibleModalCol")&&c.find(".acfe-modal-content .acfe-flex-container").addClass("acfe-col-"+a.get("acfeFlexibleModalCol")),a.has("acfeFlexibleThumbnails")&&c.find(".acfe-modal-content .acfe-flex-container").addClass("acfe-flex-thumbnails"),c.find("li:first-of-type a").blur(),c.find("li a span.badge").each(function(){l(this).addClass("acf-js-tooltip dashicons dashicons-info")}),c.find(".acfe-flexible-categories a").click(function(e){e.preventDefault();e=l(this);e.closest(".acfe-flexible-categories").find("a").removeClass("nav-tab-active"),e.addClass("nav-tab-active");var i=e.data("acfe-flexible-category");c.find("a[data-layout] span[data-acfe-flexible-category]").each(function(){var a=l(this);a.closest("li").show();var e=a.data("acfe-flexible-category");"acfe-all"!==i&&(a.closest("li").hide(),l.each(e,function(e,t){if(i.toLowerCase()===t.toLowerCase())return a.closest("li").show(),!1}))})}),c.on("click","a[data-layout]",function(e){e.preventDefault(),acfe.closePopup(),a.add({layout:l(this).data("layout"),before:i})})},acf.addAction("new_field/type=flexible_content",function(e){e.has("acfeFlexibleModal")&&(e.$clones().length<=1||(e.removeEvents({'click [data-name="add-layout"]':"onClickAdd"}),e.addEvents({'click [data-name="add-layout"]':"acfeModalSelect"})))}))}(jQuery),function(c){var e;"undefined"!=typeof acf&&((e=acf.getFieldType("flexible_content").prototype).addSortable=function(a){1!=this.get("max")&&this.$layoutsWrap().sortable({items:" > .layout",handle:"> .acf-fc-layout-handle",forceHelperSize:!1,forcePlaceholderSize:!0,revert:50,tolerance:"pointer",scroll:!0,stop:function(e,t){a.render()},update:function(e,t){a.$input().trigger("change")}})},e.acfeOneClick=function(e,t){var a=this.$clones(),i=c(a[0]).data("layout"),a=null;t.hasClass("acf-icon")&&(a=t.closest(".layout"));this.add({layout:i,before:a});a=c(".acf-fc-popup");a.length&&a.hide()},e.acfeLayoutInit=function(t){var e,a,i=this,n=(t.find("> .acf-fc-layout-controls"),t.find("> .acf-fc-layout-handle"),t.find("> .acfe-fc-placeholder"));n.removeClass("acf-hidden"),i.has("acfeFlexibleModalEdition")||i.isLayoutClosed(t)||n.addClass("acf-hidden"),i.isLayoutClosed(t)&&i.has("acfeFlexiblePreview")&&!n.hasClass("-loading")&&(n.addClass("acfe-fc-preview -loading").find("> .acfe-flexible-placeholder").prepend('<span class="spinner"></span>'),n.find("> .acfe-fc-overlay").addClass("-hover"),e=t.children("input").attr("name").replace("[acf_fc_layout]",""),a={action:"acfe/flexible/layout_preview",field_key:i.get("key"),i:t.index(),layout:t.data("layout"),value:acf.serialize(t,e)},acf.doAction("acfe/fields/flexible_content/before_preview",i.$el,t,a),acf.doAction("acfe/fields/flexible_content/before_preview/name="+i.get("name"),i.$el,t,a),acf.doAction("acfe/fields/flexible_content/before_preview/key="+i.get("key"),i.$el,t,a),acf.doAction("acfe/fields/flexible_content/before_preview/name="+i.get("name")+"&layout="+t.data("layout"),i.$el,t,a),acf.doAction("acfe/fields/flexible_content/before_preview/key="+i.get("key")+"&layout="+t.data("layout"),i.$el,t,a),c.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(a),dataType:"html",type:"post",success:function(e){e?n.find("> .acfe-flexible-placeholder").html(e):n.removeClass("acfe-fc-preview"),acf.doAction("acfe/fields/flexible_content/preview",e,i.$el,t,a),acf.doAction("acfe/fields/flexible_content/preview/name="+i.get("name"),e,i.$el,t,a),acf.doAction("acfe/fields/flexible_content/preview/key="+i.get("key"),e,i.$el,t,a),acf.doAction("acfe/fields/flexible_content/preview/name="+i.get("name")+"&layout="+t.data("layout"),e,i.$el,t,a),acf.doAction("acfe/fields/flexible_content/preview/key="+i.get("key")+"&layout="+t.data("layout"),e,i.$el,t,a)},complete:function(){n.find("> .acfe-fc-overlay").removeClass("-hover"),n.removeClass("-loading").find("> .acfe-flexible-placeholder > .spinner").remove()}}))},acf.getFieldType("wysiwyg").prototype.initialize=function(){this.has("id")||this.$control().hasClass("delay")||this.initializeEditor()},acf.addAction("show_field/type=wysiwyg",e=function(e){var t;e.has("id")||!e.$el.is(":visible")||acfe.isFilterEnabled("acfeForceOpen")||(t=e.$control()).hasClass("delay")&&(t.removeClass("delay"),t.find(".acf-editor-toolbar").remove(),e.initializeEditor())}),acf.addAction("ready_field/type=wysiwyg",e),acf.addAction("new_field/type=flexible_content",function(a){var e=a.$clones(),t=a.$layouts();c.merge(t,e);t.each(function(){var e=c(this),t=e.data("layout");acf.doAction("acfe/flexible/layouts",e,a),acf.doAction("acfe/flexible/layout/name="+t,e,a)}),1===e.length&&(a.removeEvents({'click [data-name="add-layout"]':"onClickAdd"}),a.addEvents({'click [data-name="add-layout"]':"acfeOneClick"})),a.addEvents({"click .acfe-fc-placeholder":"onClickCollapse"}),a.addEvents({"click .acfe-flexible-opened-actions > a":"onClickCollapse"}),a.has("acfeFlexibleAjax")&&(a.add=function(n){var o=this;if(n=acf.parseArgs(n,{layout:"",before:!1}),!this.allowAdd())return!1;c.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax({action:"acfe/flexible/models",field_key:this.get("key"),layout:n.layout}),dataType:"html",type:"post",beforeSend:function(){c("body").addClass("-loading")},success:function(e){if(e){var t=c(e),a=acf.uniqid(),i="acf["+o.get("key")+"][acfcloneindex]",e=o.$control().find("> input[type=hidden]").attr("name")+"["+a+"]",e=acf.duplicate({target:t,search:i,replace:e,append:o.proxy(function(e,t){n.before?n.before.before(t):o.$layoutsWrap().append(t),acf.enable(t,o.cid),o.render()})});return e.attr("data-id",a),o.$input().trigger("change"),e}},complete:function(){c("body").removeClass("-loading")}})})}),acf.addAction("acfe/flexible/layouts",function(e,t){t.isLayoutClosed(e)&&(e.find("> .acfe-fc-placeholder").removeClass("acf-hidden"),t.has("acfeFlexibleOpen")&&(acfe.enableFilter("acfeForceOpen"),t.openLayout(e),acfe.disableFilter("acfeForceOpen")))}),acf.addAction("show",function(e,t){"collapse"===t&&e.is(".layout")&&(acf.getInstance(e.closest(".acf-field-flexible-content")).has("acfeFlexibleModalEdition")||e.find("> .acfe-fc-placeholder").addClass("acf-hidden"))}),acf.addAction("hide",function(e,t){"collapse"===t&&e.is(".layout")&&!e.is(".acf-clone")&&((t=acf.getInstance(e.closest(".acf-field-flexible-content"))).has("acfeFlexibleRemoveAjaxTitle")&&(t.renderLayout=function(e){}),t.acfeLayoutInit(e))}),acf.addAction("append",function(e){var t;e.is(".layout")&&(t=acf.getInstance(e.closest(".acf-field-flexible-content")),e.is(".acfe-layout-duplicated")||(t.has("acfeFlexibleModalEdition")?e.find('> [data-action="acfe-flexible-modal-edit"]:first').trigger("click"):t.openLayout(e)),t.acfeLayoutInit(e),(t=t.$el.closest(".acfe-modal.-open")).length?t.find("> .acfe-modal-wrapper > .acfe-modal-content").animate({scrollTop:parseInt(e.offset().top)-200},200):!acfe.versionCompare(acf.get("acf_version"),"<","5.9")&&e.hasClass("-focused")||c("html, body").animate({scrollTop:parseInt(e.offset().top)-200},200))}),acf.addAction("invalid_field",function(e){e.$el.parents(".layout").addClass("acfe-flexible-modal-edit-error")}),acf.addAction("valid_field",function(e){e.$el.parents(".layout").each(function(){var e=c(this);e.find(".acf-error").length||e.removeClass("acfe-flexible-modal-edit-error")})}))}(jQuery),function(){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({wait:!1,type:"group",events:{'click [data-name="edit"]':"onClick",duplicateField:"onDuplicate"},initialize:function(){var e;this.has("acfeGroupModal")&&(e=this.get("acfeGroupModalButton"),this.$el.find("> .acf-input > .acf-fields, > .acf-input > .acf-table").wrapAll('<div class="acfe-modal"><div class="acfe-modal-wrapper"><div class="acfe-modal-content"></div></div></div>'),this.$el.find("> .acf-input").append('<a data-name="edit" class="acf-button button" href="#">'+e+"</a>"))},onClick:function(e,t){var a=this.$labelWrap().find("label").text().trim(),i=this.$el.find("> .acf-input > .acfe-modal").addClass("acfe-modal-edit-"+this.get("name")+" acfe-modal-edit-"+this.get("key"));a.length||(a=this.get("acfeGroupModalButton"));var n=!1;this.has("acfeGroupModalClose")&&(n=acf.__("Close"));var o="large";this.has("acfeGroupModalSize")&&(o=this.get("acfeGroupModalSize")),new acfe.Popup(i,{title:a,size:o,footer:n})},onDuplicate:function(e,t,a){a.find('a[data-name="edit"]').remove()}}),acf.registerFieldType(e))}(jQuery),function(e){"undefined"!=typeof acf&&new acf.Model({actions:{"new_field/type=radio":"newField"},newField:function(a){a.has("acfeLabels")&&(e.each(a.get("acfeLabels"),function(e,t){a.$control().find('input[type=radio][value="'+t+'"]').closest("li").addClass("parent").prepend("<strong>"+e+"</strong>")}),a.$control().hasClass("acf-hl")&&a.$control().find("li.parent").each(function(){e(this).nextUntil("li.parent").addBack().wrapAll("<li><ul></ul></li>")}))}})}(jQuery),function(){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({type:"acfe_recaptcha",wait:"load",actions:{validation_failure:"validationFailure"},$control:function(){return this.$(".acfe-field-recaptcha")},$input:function(){return this.$('input[type="hidden"]')},$selector:function(){return this.$control().find("> div")},selector:function(){return this.$selector()[0]},initialize:function(){"v2"===this.get("version")?this.renderV2(this):"v3"===this.get("version")&&this.renderV3()},renderV2:function(t){var e=this.selector(),a=this.$input(),i=this.get("siteKey"),n=this.get("theme"),o=this.get("size");this.recaptcha=grecaptcha.render(e,{sitekey:i,theme:n,size:o,callback:function(e){acf.val(a,e,!0),t.removeError()},"error-callback":function(){acf.val(a,"",!0),t.showError("An error has occured")},"expired-callback":function(){acf.val(a,"",!0),t.showError("reCaptcha has expired")}})},renderV3:function(){var t=this.$input(),e=this.get("siteKey");grecaptcha.ready(function(){grecaptcha.execute(e,{action:"homepage"}).then(function(e){acf.val(t,e,!0)})})},validationFailure:function(e){"v2"===this.get("version")&&grecaptcha.reset(this.recaptcha)}}),acf.registerFieldType(e))}(jQuery),jQuery,"undefined"!=typeof acf&&(acf.getFieldType("repeater").prototype.acfeOnHover=function(){this.off("mouseover")},acf.addAction("new_field/type=repeater",function(e){e.has("acfeRepeaterLock")&&(e.removeEvents({mouseover:"onHover"}),e.addEvents({mouseover:"acfeOnHover"})),e.has("acfeRepeaterRemoveActions")&&(e.$actions().remove(),e.$el.find("thead:first > tr > th.acf-row-handle:last").remove(),e.$rows().find("> .acf-row-handle:last").remove(),e.$control().find("> .acfe-repeater-stylised-button").remove()),e.has("acfeRepeaterStylisedButton")&&(e.$button().removeClass("button-primary"),e.$actions().wrap('<div class="acfe-repeater-stylised-button" />'))})),function(o){"undefined"!=typeof acf&&(new acf.Model({actions:{select2_init:"selectInit"},filters:{select2_args:"selectArgs",select2_ajax_data:"selectAjax"},selectInit:function(e,t,a,i,n){acf.doAction("select2_init/type="+i.get("type"),e,t,a,i,n),acf.doAction("select2_init/name="+i.get("name"),e,t,a,i,n),acf.doAction("select2_init/key="+i.get("key"),e,t,a,i,n)},selectArgs:function(e,t,a,i,n){return e=acf.applyFilters("select2_args/type="+i.get("type"),e,t,a,i,n),e=acf.applyFilters("select2_args/name="+i.get("name"),e,t,a,i,n),e=acf.applyFilters("select2_args/key="+i.get("key"),e,t,a,i,n)},selectAjax:function(e,t,a,i,n){return e=acf.applyFilters("select2_ajax_data/type="+i.get("type"),e,t,a,i,n),e=acf.applyFilters("select2_ajax_data/name="+i.get("name"),e,t,a,i,n),e=(e=acf.applyFilters("select2_ajax_data/key="+i.get("key"),e,t,a,i,n)).action?acf.applyFilters("select2_ajax_data/action="+e.action,e,t,a,i,n):e}}),new acf.Model({actions:{"new_field/type=select":"selectNew",select2_init:"selectInit"},filters:{select2_args:"selectArgs"},selectNew:function(e){e.inherit(e.$input()),!e.get("ui")&&e.get("allow_null")&&e.$input().find("option").each(function(e,t){t.value||t.text.startsWith("- ")&&t.text.endsWith(" -")&&(t.text=t.text.substring(2),t.text=t.text.substring(0,t.text.length-2))}),(e.has("acfePrepend")||e.has("acfeAppend"))&&(e.$input().parent(".acf-input-wrap").length||(e.$input().wrapAll('<div class="acf-input-wrap"></div>'),e.get("ui")&&e.$(".acf-input-wrap:first").append(e.$(".select2")),e.has("acfePrepend")&&(e.$(".acf-input-wrap:first").before('<div class="acf-input-prepend">'+e.get("acfePrepend")+"</div>"),e.$input().addClass("acf-is-prepended")),e.has("acfeAppend")&&(e.$(".acf-input-wrap:first").before('<div class="acf-input-append">'+e.get("acfeAppend")+"</div>"),e.$input().addClass("acf-is-appended"))))},selectInit:function(e,t,a,i,n){e.data("select2")&&e.data("select2").$dropdown.addClass("select2-dropdown-acf").addClass("select2-dropdown-acf-field-"+i.get("name")).addClass("select2-dropdown-acf-field-"+i.get("key")),i.get("multiple")||i.get("acfeSearchPlaceholder")&&e.on("select2:open",function(e){o(".select2-search.select2-search--dropdown > .select2-search__field").attr("placeholder",i.get("acfeSearchPlaceholder"))})},selectArgs:function(e,t,a,i,n){return i.get("acfeAllowCustom")&&(e.tags=!0,e.createTag=function(e){var t=o.trim(e.term);if(""===t)return null;var a=!1;return this.$element.find("option").each(function(){if(this.value.toLowerCase()===t.toLowerCase())return!(a=!0)}),a?null:{id:t,text:t}},e.insertTag=function(e,t){var a=!1;o.each(e,function(){if(o.trim(t.text).toUpperCase()===o.trim(this.text).toUpperCase())return!(a=!0)}),a||e.unshift(t)}),e}}))}(jQuery),function(){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({type:"acfe_slug",events:{"input input":"onInput","focusout input":"onFocusOut"},onInput:function(e,t){t.val(t.val().toLowerCase().replace(/\s+/g,"-").replace(/[^\w\-]+/g,"").replace(/\-\-+/g,"-").replace(/\_\_+/g,"_").replace(/^-+/,""))},onFocusOut:function(e,t){t.val(t.val().toLowerCase().replace(/-+$/,"").replace(/_+$/,""))}}),acf.registerFieldType(e))}(jQuery),function(a){"undefined"!=typeof acf&&new acf.Model({actions:{"prepare_field/type=tab":"prepareField"},prepareField:function(e){var t,i,n;e.has("noPreference")&&(t=e.findTabs(),t=acf.getInstances(t),i=e.get("key"),!t.length||(n=acf.getPreference("this.tabs"))&&(a.each(t,function(e,t){var a=t.get("index");t.data.key===i&&(n[a]=0)}),acf.setPreference("this.tabs",n)))}})}(jQuery),function(){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({type:"textarea",events:{"keydown textarea":"onInput"},onInput:function(e,t){var a,i;this.has("acfeTextareaCode")&&9===e.keyCode&&(e.preventDefault(),a=this.$el.find("textarea")[0],i=a.selectionStart,this.$el.find("textarea").val(function(e,t){return t.substring(0,i)+" "+t.substring(a.selectionEnd)}),a.selectionEnd=i+4)}}),acf.registerFieldType(e))}(jQuery),jQuery,"undefined"!=typeof acf&&(acf.registerConditionForFieldType("contains","checkbox"),acf.registerConditionForFieldType("contains","radio"),acf.registerConditionForFieldType("equalTo","acfe_code_editor"),acf.registerConditionForFieldType("notEqualTo","acfe_code_editor"),acf.registerConditionForFieldType("patternMatch","acfe_code_editor"),acf.registerConditionForFieldType("contains","acfe_code_editor"),acf.registerConditionForFieldType("hasValue","acfe_code_editor"),acf.registerConditionForFieldType("hasNoValue","acfe_code_editor"),acf.registerConditionForFieldType("equalTo","date_picker"),acf.registerConditionForFieldType("notEqualTo","date_picker"),acf.registerConditionForFieldType("patternMatch","date_picker"),acf.registerConditionForFieldType("contains","date_picker"),acf.registerConditionForFieldType("greaterThan","date_picker"),acf.registerConditionForFieldType("lessThan","date_picker"),acf.registerConditionForFieldType("equalTo","date_time_picker"),acf.registerConditionForFieldType("notEqualTo","date_time_picker"),acf.registerConditionForFieldType("patternMatch","date_time_picker"),acf.registerConditionForFieldType("contains","date_time_picker"),acf.registerConditionForFieldType("equalTo","acfe_forms"),acf.registerConditionForFieldType("notEqualTo","acfe_forms"),acf.registerConditionForFieldType("patternMatch","acfe_forms"),acf.registerConditionForFieldType("contains","acfe_forms"),acf.registerConditionForFieldType("hasValue","acfe_forms"),acf.registerConditionForFieldType("hasNoValue","acfe_forms"),acf.registerConditionForFieldType("equalTo","acfe_hidden"),acf.registerConditionForFieldType("notEqualTo","acfe_hidden"),acf.registerConditionForFieldType("patternMatch","acfe_hidden"),acf.registerConditionForFieldType("contains","acfe_hidden"),acf.registerConditionForFieldType("hasValue","acfe_hidden"),acf.registerConditionForFieldType("hasNoValue","acfe_hidden"),acf.registerConditionForFieldType("equalTo","acfe_post_statuses"),acf.registerConditionForFieldType("notEqualTo","acfe_post_statuses"),acf.registerConditionForFieldType("patternMatch","acfe_post_statuses"),acf.registerConditionForFieldType("contains","acfe_post_statuses"),acf.registerConditionForFieldType("hasValue","acfe_post_statuses"),acf.registerConditionForFieldType("hasNoValue","acfe_post_statuses"),acf.registerConditionForFieldType("equalTo","acfe_post_types"),acf.registerConditionForFieldType("notEqualTo","acfe_post_types"),acf.registerConditionForFieldType("patternMatch","acfe_post_types"),acf.registerConditionForFieldType("contains","acfe_post_types"),acf.registerConditionForFieldType("hasValue","acfe_post_types"),acf.registerConditionForFieldType("hasNoValue","acfe_post_types"),acf.registerConditionForFieldType("equalTo","acfe_slug"),acf.registerConditionForFieldType("notEqualTo","acfe_slug"),acf.registerConditionForFieldType("patternMatch","acfe_slug"),acf.registerConditionForFieldType("contains","acfe_slug"),acf.registerConditionForFieldType("hasValue","acfe_slug"),acf.registerConditionForFieldType("hasNoValue","acfe_slug"),acf.registerConditionForFieldType("equalTo","acfe_taxonomies"),acf.registerConditionForFieldType("notEqualTo","acfe_taxonomies"),acf.registerConditionForFieldType("patternMatch","acfe_taxonomies"),acf.registerConditionForFieldType("contains","acfe_taxonomies"),acf.registerConditionForFieldType("hasValue","acfe_taxonomies"),acf.registerConditionForFieldType("hasNoValue","acfe_taxonomies"),acf.registerConditionForFieldType("equalTo","taxonomy"),acf.registerConditionForFieldType("notEqualTo","taxonomy"),acf.registerConditionForFieldType("patternMatch","taxonomy"),acf.registerConditionForFieldType("contains","taxonomy"),acf.registerConditionForFieldType("hasValue","taxonomy"),acf.registerConditionForFieldType("hasNoValue","taxonomy"),acf.registerConditionForFieldType("equalTo","acfe_taxonomy_terms"),acf.registerConditionForFieldType("notEqualTo","acfe_taxonomy_terms"),acf.registerConditionForFieldType("patternMatch","acfe_taxonomy_terms"),acf.registerConditionForFieldType("contains","acfe_taxonomy_terms"),acf.registerConditionForFieldType("hasValue","acfe_taxonomy_terms"),acf.registerConditionForFieldType("hasNoValue","acfe_taxonomy_terms"),acf.registerConditionForFieldType("equalTo","time_picker"),acf.registerConditionForFieldType("notEqualTo","time_picker"),acf.registerConditionForFieldType("patternMatch","time_picker"),acf.registerConditionForFieldType("contains","time_picker"),acf.registerConditionForFieldType("equalTo","acfe_user_roles"),acf.registerConditionForFieldType("notEqualTo","acfe_user_roles"),acf.registerConditionForFieldType("patternMatch","acfe_user_roles"),acf.registerConditionForFieldType("contains","acfe_user_roles"),acf.registerConditionForFieldType("hasValue","acfe_user_roles"),acf.registerConditionForFieldType("hasNoValue","acfe_user_roles")),function(i){"undefined"!=typeof acf&&new acf.Model({field:!1,placement:!1,actions:{new_field:"newField"},newField:function(e){(this.field=e).has("instructionTooltip")&&this.setTooltip(),e.has("instructionAboveField")&&this.setAboveField(),e.has("instructionPlacement")&&this.overridePlacement(e.get("instructionPlacement"))},setTooltip:function(){this.field.$labelWrap().prepend('<span class="acfe-field-tooltip acf-js-tooltip dashicons dashicons-info" title="'+_.escape(this.field.get("instructionTooltip"))+'"></span>'),this.field.$labelWrap().find(".description").remove()},setAboveField:function(){this.field.$inputWrap().prepend('<p class="description">'+this.field.get("instructionAboveField")+"</p>"),this.field.$labelWrap().find(".description").remove()},overridePlacement:function(e){var t=this.getPlacement();t&&t!==e&&this.setPlacement(e)},getPlacement:function(){var e=!1;return this.field.$labelWrap().find(">.description").length?e="label":this.field.$inputWrap().find(">.description:first-child").length?e="above_field":this.field.$inputWrap().find(">.description:last-child").length?e="field":this.field.$labelWrap().find(">.acfe-field-tooltip").length&&(e="tooltip"),this.placement=e,this.placement},$getInstruction:function(){var e=this.getPlacement();return"label"===e?this.field.$labelWrap().find(">.description"):"above_field"===e?this.field.$inputWrap().find(">.description:first-child"):"field"===e?this.field.$inputWrap().find(">.description:last-child"):"tooltip"===e&&this.field.$labelWrap().find(">.acfe-field-tooltip")},setPlacement:function(e){var t,a=this.$getInstruction();"tooltip"===this.placement&&(t=a.attr("title"),a.remove(),a=i('<p class="description">'+t+"</p>")),"label"===e?this.field.$labelWrap().append(a):"above_field"===e?this.field.$inputWrap().prepend(a):"field"===e?this.field.$inputWrap().append(a):"tooltip"===e&&(this.field.$labelWrap().prepend(i('<span class="acfe-field-tooltip acf-js-tooltip dashicons dashicons-info" title="'+_.escape(a.html())+'"></span>')),a.remove())}})}(jQuery),jQuery,function(c){"undefined"!=typeof acf&&(new acf.Model({actions:{prepare:"prepare","new_field/type=date_picker":"datePicker","new_field/type=date_time_picker":"datePicker","new_field/type=time_picker":"datePicker","new_field/type=google_map":"googleMap",invalid_field:"invalidField",validation_begin:"validationBegin"},prepare:function(){var e;acfe.get("is_admin")||(acf.isset(window,"wp","media","view","settings","post")&&(wp.media.view.settings.post=!1),c('.acfe-form[data-hide-unload="1"]').length&&acf.unload.disable(),(e=c(".acfe-form-success")).length&&(window.history.replaceState&&window.history.replaceState(null,null,window.location.href),e.each(function(){var e=c(this).data("form-name"),t=c(this).data("form-id");acf.doAction("acfe/form/submit/success"),acf.doAction("acfe/form/submit/success/id="+t),acf.doAction("acfe/form/submit/success/name="+e)})),c('.acf-form .button, .acf-form [type="submit"], .acfe-form .button, .acfe-form [type="submit"]').click(function(e){c(this).hasClass("disabled")&&e.preventDefault()}))},datePicker:function(e){var t;acfe.get("is_admin")||(!(t=e.$el.closest(".acfe-form")).length||(t=t.data("fields-class"))&&e.$inputText().addClass(t))},googleMap:function(e){var t;acfe.get("is_admin")||(!(t=e.$el.closest(".acfe-form")).length||(t=t.data("fields-class"))&&e.$search().addClass(t))},invalidField:function(e){var t,a,i,n,o;acfe.get("is_admin")||(t=e.$el.closest(".acfe-form")).length&&(a=t.data("errors-position"),(o=t.data("errors-class"))&&o.length&&e.$el.find(".acf-notice.-error").addClass(o),a&&"below"===a?(e.$control().length?e.$el.find(".acf-notice.-error").insertAfter(e.$control()):e.$input().length&&e.$el.find(".acf-notice.-error").insertAfter(e.$input()),n=!1,e.$control().length?n=e.$control():e.$input().length&&(n=e.$input()),n&&e.$el.find(".acf-notice.-error").insertAfter(n)):a&&"group"===a?(i=e.$el.find(".acf-label label").text().trim(),o=e.$el.find('.acf-input-wrap [placeholder!=""]').attr("placeholder"),n=e.$el.find(".acf-notice.-error").text().trim(),e.$el.find(".acf-notice.-error").remove(),n=i&&i.length&&"*"!==i?i+": "+n:o&&o.length&&""!==o?o+": "+n:e.get("name")+": "+n,(o=!(o=t.find("> .acfe-form-error")).length?c('<div class="acf-notice -error acf-error-message acfe-form-error" />').prependTo(t):o).append("<p>"+n+"</p>")):a&&"hide"===a&&e.$el.find(".acf-notice.-error").remove())},validationBegin:function(e){acfe.get("is_admin")||void 0!==e&&e.find(".acf-error-message").remove()}}),acf.newCondition=function(e,t){var a=t.get("field"),i=a.getField(e.field);if(a&&!i&&(i=acf.getField(e.field)),!a||!i)return!1;t={rule:e,target:a,conditions:t,field:i},i=i.get("type"),e=e.operator;return new(acf.getConditionTypes({fieldType:i,operator:e})[0]||acf.Condition)(t)})}(jQuery);
|
1 |
+
!function(){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({type:"acfe_advanced_link",events:{'click a[data-name="add"]':"onClickEdit",'click a[data-name="edit"]':"onClickEdit",'click a[data-name="remove"]':"onClickRemove"},$control:function(){return this.$(".acf-link")},initialize:function(){},getValue:function(){var e={type:this.$(".input-type :checked").val(),title:this.$(".input-title").val(),url:this.$(".input-url").val(),post:this.$(".input-post :selected").text(),term:this.$(".input-term :selected").text(),target:this.$(".input-target").is(":checked")};return"post"===e.type?e.url=e.post:"term"===e.type&&(e.url=e.term),e},setValue:function(e){e=acf.parseArgs(e,{remove:!1,title:"",url:"",target:!1});var t=this.$control();t.removeClass("-value -external"),e.url&&t.addClass("-value"),e.target&&t.addClass("-external"),this.$(".link-title").html(e.title),this.$(".link-url").attr("href",e.url).html(e.url),e.remove&&(this.$(".input-type :checked").prop("checked",!1),this.$('.input-type [value="url"]').prop("checked",!0).trigger("change"),this.$(".input-title").val(""),this.$(".input-target").prop("checked",!1),this.$(".input-url").val("").trigger("change"),this.$(".input-post").val("").trigger("change"),this.$(".input-term").val("").trigger("change"))},onClickEdit:function(e,t){var a=t.closest(".acf-input").find(".acfe-modal"),t=a.attr("data-modal-title"),i=this;new acfe.Popup(a,{title:t,size:"medium",footer:acf.__("Close"),onClose:function(){i.onChange()}})},onClickRemove:function(e,t){this.setValue({remove:!0})},onChange:function(e,t){var a=this.getValue();this.setValue(a)}}),acf.registerFieldType(e),new acf.Model({actions:{invalid_field:"invalidField"},filters:{"select2_ajax_data/type=post_object":"ajaxField"},invalidField:function(e){var t=e.$el.closest(".acf-field-acfe-advanced-link").not(".acf-error");t.length&&acf.getInstance(t).showError(e.notice.get("text"))},ajaxField:function(e,t,a,i,n){if("post"!==i.get("key"))return e;a=acf.getInstance(a.closest(".acf-field-acfe-advanced-link"));return a&&(e.field_key=a.get("key")),e}}))}(jQuery),function(i){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({type:"acfe_button",events:{"click input":"onClick","click button":"onClick"},$input:function(){return this.$("input").length?this.$("input"):this.$("button").length?this.$("button"):void 0},initialize:function(){var e=this.$input();this.inherit(e)},onClick:function(e,t){var a;this.get("ajax")&&(e.preventDefault(),a={action:"acfe/fields/button",field_key:this.get("key"),acf:acf.serialize(this.$el.closest("form"),"acf")},a=acf.applyFilters("acfe/fields/button/data",a,this.$el),a=acf.applyFilters("acfe/fields/button/data/name="+this.get("name"),a,this.$el),a=acf.applyFilters("acfe/fields/button/data/key="+this.get("key"),a,this.$el),acf.doAction("acfe/fields/button/before_ajax",this.$el,a),acf.doAction("acfe/fields/button/before",this.$el,a),acf.doAction("acfe/fields/button/before/name="+this.get("name"),this.$el,a),acf.doAction("acfe/fields/button/before/key="+this.get("key"),this.$el,a),i.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(a),type:"post",dataType:"json",context:this,success:function(e){acf.doAction("acfe/fields/button/ajax_success",e,this.$el,a),acf.doAction("acfe/fields/button/success",e,this.$el,a),acf.doAction("acfe/fields/button/success/name="+this.get("name"),e,this.$el,a),acf.doAction("acfe/fields/button/success/key="+this.get("key"),e,this.$el,a)},complete:function(e){e=e.responseText;acf.doAction("acfe/fields/button/complete",e,this.$el,a),acf.doAction("acfe/fields/button/complete/name="+this.get("name"),e,this.$el,a),acf.doAction("acfe/fields/button/complete/key="+this.get("key"),e,this.$el,a)}}))}}),acf.registerFieldType(e))}(jQuery),function(e){"undefined"!=typeof acf&&new acf.Model({actions:{"new_field/type=checkbox":"newField"},newField:function(a){a.has("acfeLabels")&&e.each(a.get("acfeLabels"),function(e,t){a.$control().find('input[type=checkbox][value="'+t+'"]').closest("ul").before("<strong>"+e+"</strong>")})}})}(jQuery),function(){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({wait:!1,type:"clone",events:{'click [data-name="edit"]':"onClick",duplicateField:"onDuplicate"},initialize:function(){var e;this.has("acfeCloneModal")&&(e=this.get("acfeCloneModalButton"),this.$el.find("> .acf-input > .acf-fields, > .acf-input > .acf-table").wrapAll('<div class="acfe-modal"><div class="acfe-modal-wrapper"><div class="acfe-modal-content"></div></div></div>'),this.$el.find("> .acf-input").append('<a data-name="edit" class="acf-button button" href="#">'+e+"</a>"))},onClick:function(e,t){var a=this.$labelWrap().find("label").text().trim(),i=this.$el.find("> .acf-input > .acfe-modal").addClass("acfe-modal-edit-"+this.get("name")+" acfe-modal-edit-"+this.get("key"));a.length||(a=this.get("acfeCloneModalButton"));var n=!1;this.has("acfeCloneModalClose")&&(n=acf.__("Close"));var o="large";this.has("acfeCloneModalSize")&&(o=this.get("acfeCloneModalSize")),new acfe.Popup(i,{title:a,size:o,footer:n})},onDuplicate:function(e,t,a){a.find('a[data-name="edit"]').remove()}}),acf.registerFieldType(e))}(jQuery),function(){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({wait:"ready",type:"acfe_code_editor",events:{showField:"onShow",duplicateField:"onDuplicate"},$control:function(){return this.$el.find("> .acf-input > .acf-input-wrap")},$input:function(){return this.$el.find("> .acf-input > .acf-input-wrap > textarea")},input:function(){return this.$input()[0]},rows:function(){return this.$input().attr("rows")},initialize:function(){this.rows=this.$control().data("rows"),this.max_rows=this.$control().data("max-rows"),this.mode=this.$control().data("mode"),this.lines=this.$control().data("lines"),this.indentUnit=this.$control().data("indent-unit");var e=[],t=wp.codeEditor.defaultSettings.codemirror,a={lineNumbers:this.lines,lineWrapping:!0,styleActiveLine:!1,continueComments:!0,indentUnit:this.indentUnit,tabSize:1,indentWithTabs:!1,mode:this.mode,extraKeys:{Tab:function(e){e.execCommand("indentMore")},"Shift-Tab":function(e){e.execCommand("indentLess")}}},a=jQuery.extend(t,a);e.codemirror=a,this.editor=wp.codeEditor.initialize(this.input(),e),(this.rows||this.max_rows)&&(this.rows&&(this.editor.codemirror.getScrollerElement().style.minHeight=18.5*this.rows+"px"),this.max_rows&&(this.editor.codemirror.getScrollerElement().style.maxHeight=18.5*this.max_rows+"px"),this.editor.codemirror.refresh()),(field=this).editor.codemirror.on("change",function(){field.editor.codemirror.save(),field.$input().change()})},onShow:function(){this.editor.codemirror&&this.editor.codemirror.refresh()},onDuplicate:function(e,t,a){a.find(".CodeMirror:last").remove()}}),acf.registerFieldType(e))}(jQuery),function(){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({wait:"new_field",type:"acfe_column",$control:function(){return this.$(".acf-fields:first")},initialize:function(){if(this.$el.is("td")&&(this.$el.closest(".acf-table").find('th[data-type="acfe_column"]').remove(),this.remove()),this.get("endpoint"))return this.$el.find("> .acf-label").remove(),void this.$el.find("> .acf-input").remove();var e=this.$el,t=this.$el.find("> .acf-label"),a=(this.$inputWrap(),this.$control());t.remove();t=e.parent();t.addClass("acfe-column-wrapper"),a.addClass(t.hasClass("-left")?"-left":""),a.addClass(t.hasClass("-clear")?"-clear":""),a.append(e.nextUntil(".acf-field-acfe-column",".acf-field"))}}),acf.registerFieldType(e))}(jQuery),function(r){var n;"undefined"!=typeof acf&&((n=acf.getFieldType("flexible_content").prototype).events["click .acf-fc-layout-handle"]="acfeEditLayoutTitleToggleHandle",n.acfeEditLayoutTitleToggleHandle=function(e,t){!this.has("acfeFlexibleTitleEdition")||(t=t.closest(".layout")).hasClass("acfe-flexible-title-edition")&&t.find("> .acf-fc-layout-handle > .acfe-layout-title > input.acfe-flexible-control-title").trigger("blur")},n.events["click .acfe-layout-title-text"]="acfeEditLayoutTitle",n.acfeEditLayoutTitle=function(e,t){this.has("acfeFlexibleTitleEdition")&&(e.stopPropagation(),this.acfeEditLayoutTitleToggle(e,t))},n.events["blur input.acfe-flexible-control-title"]="acfeEditLayoutTitleToggle",n.acfeEditLayoutTitleToggle=function(e,t){var a,i=t.closest(".layout"),n=i.find("> .acf-fc-layout-handle"),t=n.find(".acfe-layout-title");i.hasClass("acfe-flexible-title-edition")?(""===(a=t.find("> input[data-acfe-flexible-control-title-input]")).val()&&a.val(a.attr("placeholder")).trigger("input"),i.removeClass("acfe-flexible-title-edition"),a.insertAfter(n)):(a=(a=i.find("> input[data-acfe-flexible-control-title-input]")).appendTo(t),i.addClass("acfe-flexible-title-edition"),a.focus().attr("size",a.val().length))},n.events["click input.acfe-flexible-control-title"]="acfeEditLayoutTitlePropagation",n.acfeEditLayoutTitlePropagation=function(e,t){e.stopPropagation()},n.events["input [data-acfe-flexible-control-title-input]"]="acfeEditLayoutTitleInput",n.acfeEditLayoutTitleInput=function(e,t){var a=t.closest(".layout").find("> .acf-fc-layout-handle .acfe-layout-title .acfe-layout-title-text"),i=t.val();t.attr("size",i.length),a.html(i)},n.events["keypress [data-acfe-flexible-control-title-input]"]="acfeEditLayoutTitleInputEnter",n.acfeEditLayoutTitleInputEnter=function(e,t){13===e.keyCode&&(e.preventDefault(),t.blur())},n.events["click [data-acfe-flexible-settings]"]="acfeLayoutSettings",n.acfeLayoutSettings=function(e,t){var a=this,i=t.closest(".layout"),n=i.find("> .acfe-modal.-settings"),o=i.find("> .acf-fc-layout-handle"),t=o.find("> .acf-fc-layout-order").outerHTML(),o=o.find(".acfe-layout-title-text").text();new acfe.Popup(n,{title:t+" "+o,footer:acf.__("Close"),onClose:function(){a.has("acfeFlexiblePreview")&&a.closeLayout(i)}})},n.events["click [data-acfe-flexible-control-toggle]"]="acfeLayoutToggle",n.acfeLayoutToggle=function(e,t){var a=t.closest(".layout"),t=a.find("> .acfe-flexible-layout-toggle");t.length&&("1"===t.val()?(a.removeClass("acfe-flexible-layout-hidden"),t.val("")):(a.addClass("acfe-flexible-layout-hidden"),t.val("1")))},acf.addAction("acfe/flexible/layouts",function(e,t){!t.has("acfeFlexibleToggle")||(t=e.find("> .acfe-flexible-layout-toggle")).length&&("1"===t.val()?e.addClass("acfe-flexible-layout-hidden"):e.removeClass("acfe-flexible-layout-hidden"))}),n.events["click [data-acfe-flexible-control-clone]"]="acfeCloneLayout",n.acfeCloneLayout=function(e,t){var a,i=this,n=t.closest(".layout"),o=n.data("layout"),c=r(i.$popup().html()),l=i.$layouts(),c=c.find('[data-layout="'+o+'"]'),c=(c.data("min"),c.data("max")||0),o=(a=o,l.filter(function(){return r(this).data("layout")===a}).length);if(c&&c<=o)return t.addClass("disabled"),!1;t.removeClass("disabled"),i.acfeFixInputs(n);o=n.clone();i.acfeCleanLayouts(o);t=t.closest(".acf-flexible-content").find("> input[type=hidden]").attr("name"),i.acfeDuplicate({layout:o,before:n,parent:t})},n.events["click [data-acfe-flexible-control-copy]"]="acfeCopyLayout",n.acfeCopyLayout=function(e,t){var a=t.closest(".layout").clone(),t=this.$control().find("> input[type=hidden]").attr("name");this.acfeFixInputs(a),this.acfeCleanLayouts(a);t=JSON.stringify({source:t,layouts:a[0].outerHTML}),a=r('<input type="text" style="clip:rect(0,0,0,0);clip-path:none;position:absolute;" value="" />').appendTo(r("body"));a.attr("value",t).select(),document.execCommand("copy")?alert("Layout has been transferred to your clipboard"):prompt("Copy the following layout data to your clipboard",t),a.remove()},n.acfeCopyLayouts=function(){var e=this,t=e.$layoutsWrap().clone(),a=e.$control().find("> input[type=hidden]").attr("name");e.acfeFixInputs(t),e.acfeCleanLayouts(t);t=JSON.stringify({source:a,layouts:t.html()}),e=r('<input type="text" style="clip:rect(0,0,0,0);clip-path:none;position:absolute;" value="" />').appendTo(e.$el);e.attr("value",t).select(),document.execCommand("copy")?alert("Layouts have been transferred to your clipboard"):prompt("Copy the following layouts data to your clipboard",t),e.remove()},n.acfePasteLayouts=function(){var n=this,e=prompt("Paste layouts data in the following field");if(null!=e&&""!==e)try{var t=JSON.parse(e),i=t.source,a=r(t.layouts).closest("[data-layout]");if(!a.length)return alert("No layouts data available");var o=r(n.$popup().html()),c=n.$layouts(),l=[];if(a.each(function(){var e,t=r(this),a=t.data("layout"),i=o.find('[data-layout="'+a+'"]'),i=(i.data("min"),i.data("max")||0),a=(e=a,c.filter(function(){return r(this).data("layout")===e}).length);i&&i<=a||n.$clone(t.attr("data-layout")).length&&l.push(t)}),!l.length)return alert("No layouts could be pasted");r.each(l,function(){var e=r(this),t=i+"["+e.attr("data-id")+"]",a=n.$control().find("> input[type=hidden]").attr("name");n.acfeDuplicate({layout:e,before:!1,search:t,parent:a})})}catch(e){console.log(e),alert("Invalid data")}},n.events['click [data-name="acfe-flexible-control-button"]']="acfeControl",n.acfeControl=function(e,t){var a=this,i=t.next(".tmpl-acfe-flexible-control-popup").html();new(acf.models.TooltipConfirm.extend({render:function(){this.html(this.get("text")),this.$el.addClass("acf-fc-popup")}}))({target:t,targetConfirm:!1,text:i,context:a,confirm:function(e,t){"paste"===t.attr("data-acfe-flexible-control-action")?a.acfePasteLayouts():"copy"===t.attr("data-acfe-flexible-control-action")&&a.acfeCopyLayouts()}}).on("click","a","onConfirm")},n.acfeDuplicate=function(a){if(a=acf.parseArgs(a,{layout:"",before:!1,parent:!1,search:"",replace:""}),!this.allowAdd())return!1;var i=acf.uniqid();a.parent&&(a.search||(a.search=a.parent+"["+a.layout.attr("data-id")+"]"),a.replace=a.parent+"["+i+"]");var e,t={target:a.layout,search:a.search,replace:a.replace,append:this.proxy(function(e,t){t.addClass("acfe-layout-duplicated"),t.attr("data-id",i),a.before?a.before.after(t):this.$layoutsWrap().append(t),acf.enable(t,this.cid),this.render()})};e=acfe.versionCompare(acf.get("acf_version"),"<","5.9")?acf.duplicate(t):n.acfeNewAcfDuplicate(t),this.$input().trigger("change");t=acf.getFields({type:"tab",parent:e});return t.length&&r.each(t,function(){this.$el.hasClass("acf-hidden")&&this.tab.$el.addClass("acf-hidden")}),e},n.acfeNewAcfDuplicate=function(e){e instanceof jQuery&&(e={target:e}),(e=acf.parseArgs(e,{target:!1,search:"",replace:"",rename:!0,before:function(e){},after:function(e,t){},append:function(e,t){e.after(t)}})).target=e.target||e.$el;var t=e.target;e.search=e.search||t.attr("data-id"),e.replace=e.replace||acf.uniqid(),e.before(t),acf.doAction("before_duplicate",t);var a=t.clone();return e.rename&&acf.rename({target:a,search:e.search,replace:e.replace,replacer:"function"==typeof e.rename?e.rename:null}),a.removeClass("acf-clone"),a.find(".ui-sortable").removeClass("ui-sortable"),e.after(t,a),acf.doAction("after_duplicate",t,a),e.append(t,a),acf.doAction("append",a),a},n.acfeFixInputs=function(e){e.find("input").each(function(){r(this).attr("value",this.value)}),e.find("textarea").each(function(){r(this).html(this.value)}),e.find("input:radio,input:checkbox").each(function(){this.checked?r(this).attr("checked","checked"):r(this).attr("checked",!1)}),e.find("option").each(function(){this.selected?r(this).attr("selected","selected"):r(this).attr("selected",!1)})},n.acfeCleanLayouts=function(e){e.find(".acf-editor-wrap").each(function(){var e=r(this);e.find(".wp-editor-container div").remove(),e.find(".wp-editor-container textarea").css("display","")}),e.find(".acf-date-picker").each(function(){r(this).find("input.input").removeClass("hasDatepicker").removeAttr("id")}),e.find(".acf-time-picker").each(function(){r(this).find("input.input").removeClass("hasDatepicker").removeAttr("id")}),e.find(".acf-date-time-picker").each(function(){r(this).find("input.input").removeClass("hasDatepicker").removeAttr("id")}),e.find(".acfe-field-code-editor").each(function(){r(this).find(".CodeMirror").remove()}),e.find(".acf-color-picker").each(function(){var e=r(this),t=e.find("> input"),a=e.find(".wp-picker-container input.wp-color-picker").clone();t.after(a),e.find(".wp-picker-container").remove()}),e.find(".acf-field-post-object").each(function(){var e=r(this);e.find("> .acf-input span").remove(),e.find("> .acf-input select").removeAttr("tabindex aria-hidden").removeClass()}),e.find(".acf-field-page-link").each(function(){var e=r(this);e.find("> .acf-input span").remove(),e.find("> .acf-input select").removeAttr("tabindex aria-hidden").removeClass()}),e.find(".acf-field-select").each(function(){var e=r(this);e.find("> .acf-input span").remove(),e.find("> .acf-input select").removeAttr("tabindex aria-hidden").removeClass()}),e.find(".acf-field-font-awesome").each(function(){var e=r(this);e.find("> .acf-input span").remove(),e.find("> .acf-input select").removeAttr("tabindex aria-hidden")}),e.find(".acf-tab-wrap").each(function(){var e=r(this),t=e.closest(".acf-fields"),a=[];r.each(e.find("li a"),function(){a.push(r(this))}),t.find("> .acf-field-tab").each(function(){$current_tab=r(this),r.each(a,function(){var e=r(this);e.attr("data-key")===$current_tab.attr("data-key")&&$current_tab.find("> .acf-input").append(e)})}),e.remove()}),e.find(".acf-field-accordion").each(function(){var e=r(this);e.find("> .acf-accordion-title > .acf-accordion-icon").remove(),e.after('<div class="acf-field acf-field-accordion" data-type="accordion"><div class="acf-input"><div class="acf-fields" data-endpoint="1"></div></div></div>')})},acf.addAction("new_field/type=flexible_content",function(e){e.has("acfeFlexibleLock")&&e.removeEvents({mouseover:"onHover"})}))}(jQuery),function(){var e;"undefined"!=typeof acf&&((e=acf.getFieldType("flexible_content").prototype).events['click [data-action="acfe-flexible-modal-edit"]']="acfeModalEdit",e.acfeModalEdit=function(e,t){var a=this,i=t.closest(".layout"),n=i.find("> .acfe-modal.-fields").addClass("acfe-modal-edit-"+a.get("name")+" acfe-modal-edit-"+a.get("key")).addClass("acfe-modal-edit-"+i.data("layout")),o=i.find("> .acf-fc-layout-handle"),c=o.find("> .acf-fc-layout-order").outerHTML(),t=acfe.getTextNode(o.find(".acfe-layout-title-text")),o=!1;a.has("acfeFlexibleCloseButton")&&(o=acf.__("Close")),new acfe.Popup(n,{title:c+" "+t,footer:o,onOpen:function(){a.openLayout(i)},onClose:function(){a.closeLayout(i)}})},acf.addAction("new_field/type=flexible_content",function(e){e.has("acfeFlexibleModalEdition")&&(e.has("acfeFlexiblePlaceholder")||e.has("acfeFlexiblePreview"))&&(e.removeEvents({'click [data-name="collapse-layout"]':"onClickCollapse"}),e.removeEvents({"click .acfe-fc-placeholder":"onClickCollapse"}))}))}(jQuery),function(l){"undefined"!=typeof acf&&(acf.getFieldType("flexible_content").prototype.acfeModalSelect=function(e,t){var a=this;if(!a.validateAdd())return!1;var i=null;t.hasClass("acf-icon")&&(i=t.closest(".layout"));var n=a.getPopupHTML(),o={array:[],html:""};l(n).find("li a span[data-acfe-flexible-category]").each(function(){var e=l(this).data("acfe-flexible-category");l.each(e,function(){-1===function(e,t){for(var a=t.length,i=e.toString().toLowerCase(),n=0;n<a;n++)if(t[n].toLowerCase()===i)return n;return-1}(this,o.array)&&o.array.push(this)})}),o.array.length&&(o.array.sort(),o.html+='<h2 class="acfe-flexible-categories nav-tab-wrapper">',o.html+='<a href="#" data-acfe-flexible-category="acfe-all" class="nav-tab nav-tab-active"><span class="dashicons dashicons-menu"></span></a>',l(o.array).each(function(e,t){o.html+='<a href="#" data-acfe-flexible-category="'+t+'" class="nav-tab">'+t+"</a>"}),o.html+="</h2>");t=acf.__("Add Row");a.has("acfeFlexibleModalTitle")&&(t=a.get("acfeFlexibleModalTitle"));var c=l('<div class="acfe-modal acfe-modal-select-'+a.get("name")+" acfe-modal-select-"+a.get("key")+'">'+o.html+'<div class="acfe-flex-container">'+n+"</div></div>").appendTo("body");new acfe.Popup(c,{title:t,size:a.get("acfeFlexibleModalSize"),destroy:!0}),a.has("acfeFlexibleModalCol")&&c.find(".acfe-modal-content .acfe-flex-container").addClass("acfe-col-"+a.get("acfeFlexibleModalCol")),a.has("acfeFlexibleThumbnails")&&c.find(".acfe-modal-content .acfe-flex-container").addClass("acfe-flex-thumbnails"),c.find("li:first-of-type a").blur(),c.find("li a span.badge").each(function(){l(this).addClass("acf-js-tooltip dashicons dashicons-info")}),c.find(".acfe-flexible-categories a").click(function(e){e.preventDefault();e=l(this);e.closest(".acfe-flexible-categories").find("a").removeClass("nav-tab-active"),e.addClass("nav-tab-active");var i=e.data("acfe-flexible-category");c.find("a[data-layout] span[data-acfe-flexible-category]").each(function(){var a=l(this);a.closest("li").show();var e=a.data("acfe-flexible-category");"acfe-all"!==i&&(a.closest("li").hide(),l.each(e,function(e,t){if(i.toLowerCase()===t.toLowerCase())return a.closest("li").show(),!1}))})}),c.on("click","a[data-layout]",function(e){e.preventDefault(),acfe.closePopup(),a.add({layout:l(this).data("layout"),before:i})})},acf.addAction("new_field/type=flexible_content",function(e){e.has("acfeFlexibleModal")&&(e.$clones().length<=1||(e.removeEvents({'click [data-name="add-layout"]':"onClickAdd"}),e.addEvents({'click [data-name="add-layout"]':"acfeModalSelect"})))}))}(jQuery),function(f){var e;"undefined"!=typeof acf&&(e=acf.models.FlexibleContentField,acf.models.FlexibleContentField=e.extend({addSortable:function(a){1!=this.get("max")&&this.$layoutsWrap().sortable({items:" > .layout",handle:"> .acf-fc-layout-handle",forceHelperSize:!1,forcePlaceholderSize:!0,revert:50,tolerance:"pointer",scroll:!0,stop:function(e,t){a.render()},update:function(e,t){a.$input().trigger("change")}})},acfeOneClick:function(e,t){var a=this.$clones(),i=f(a[0]).data("layout"),a=null;t.hasClass("acf-icon")&&(a=t.closest(".layout")),this.add({layout:i,before:a});a=f(".acf-fc-popup");a.length&&a.hide()},acfeLayoutInit:function(t){var e,a,i=this.get("key"),n=this.get("name"),o=this.$el,c=t.data("layout"),l=t.index(),r=t.find("> .acfe-fc-placeholder");r.removeClass("acf-hidden"),this.has("acfeFlexibleModalEdition")||this.isLayoutClosed(t)||r.addClass("acf-hidden"),this.isLayoutClosed(t)&&this.has("acfeFlexiblePreview")&&!r.hasClass("-loading")&&(r.addClass("acfe-fc-preview -loading").find("> .acfe-flexible-placeholder").prepend('<span class="spinner"></span>'),r.find("> .acfe-fc-overlay").addClass("-hover"),e=t.children("input").attr("name").replace("[acf_fc_layout]",""),a={action:"acfe/flexible/layout_preview",field_key:i,i:l,layout:c,value:acf.serialize(t,e)},acf.doAction("acfe/fields/flexible_content/before_preview",o,t,a),acf.doAction("acfe/fields/flexible_content/before_preview/name="+n,o,t,a),acf.doAction("acfe/fields/flexible_content/before_preview/key="+i,o,t,a),acf.doAction("acfe/fields/flexible_content/before_preview/name="+n+"&layout="+c,o,t,a),acf.doAction("acfe/fields/flexible_content/before_preview/key="+i+"&layout="+c,o,t,a),f.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax(a),dataType:"html",type:"post",success:function(e){e?r.find("> .acfe-flexible-placeholder").html(e):r.removeClass("acfe-fc-preview"),acf.doAction("acfe/fields/flexible_content/preview",e,o,t,a),acf.doAction("acfe/fields/flexible_content/preview/name="+n,e,o,t,a),acf.doAction("acfe/fields/flexible_content/preview/key="+i,e,o,t,a),acf.doAction("acfe/fields/flexible_content/preview/name="+n+"&layout="+c,e,o,t,a),acf.doAction("acfe/fields/flexible_content/preview/key="+i+"&layout="+c,e,o,t,a)},complete:function(){r.find("> .acfe-fc-overlay").removeClass("-hover"),r.removeClass("-loading").find("> .acfe-flexible-placeholder > .spinner").remove()}}))}}),new acf.Model({actions:{"new_field/type=flexible_content":"newField","acfe/flexible/layouts":"newLayouts",show:"onShow",hide:"onHide",append:"onAppend",invalid_field:"onInvalidField",valid_field:"onValidField"},newField:function(a){var e=a.$clones();a.$layouts().each(function(){var e=f(this),t=e.data("layout");acf.doAction("acfe/flexible/layouts",e,a),acf.doAction("acfe/flexible/layout/name="+t,e,a)}),1===e.length&&(a.removeEvents({'click [data-name="add-layout"]':"onClickAdd"}),a.addEvents({'click [data-name="add-layout"]':"acfeOneClick"})),a.addEvents({"click .acfe-fc-placeholder":"onClickCollapse"}),a.addEvents({"click .acfe-flexible-opened-actions > a":"onClickCollapse"}),a.has("acfeFlexibleAjax")&&(a.add=function(n){var o=this;if(n=acf.parseArgs(n,{layout:"",before:!1}),!this.allowAdd())return!1;f.ajax({url:acf.get("ajaxurl"),data:acf.prepareForAjax({action:"acfe/flexible/models",field_key:this.get("key"),layout:n.layout}),dataType:"html",type:"post",beforeSend:function(){f("body").addClass("-loading")},success:function(e){if(e){var t=f(e),a=acf.uniqid(),i="acf["+o.get("key")+"][acfcloneindex]",e=o.$control().find("> input[type=hidden]").attr("name")+"["+a+"]",e=acf.duplicate({target:t,search:i,replace:e,append:o.proxy(function(e,t){n.before?n.before.before(t):o.$layoutsWrap().append(t),acf.enable(t,o.cid),o.render()})});return e.attr("data-id",a),o.$input().trigger("change"),e}},complete:function(){f("body").removeClass("-loading")}})})},newLayouts:function(e,t){t.isLayoutClosed(e)&&(e.find("> .acfe-fc-placeholder").removeClass("acf-hidden"),t.has("acfeFlexibleOpen")&&(acfe.enableFilter("acfeFlexibleOpen"),t.openLayout(e),acfe.disableFilter("acfeFlexibleOpen")))},onShow:function(e,t){"collapse"===t&&e.is(".layout")&&(acf.getInstance(e.closest(".acf-field-flexible-content")).has("acfeFlexibleModalEdition")||e.find("> .acfe-fc-placeholder").addClass("acf-hidden"))},onHide:function(e,t){"collapse"===t&&e.is(".layout")&&!e.is(".acf-clone")&&((t=acf.getInstance(e.closest(".acf-field-flexible-content"))).has("acfeFlexibleRemoveAjaxTitle")&&(t.renderLayout=function(e){}),t.acfeLayoutInit(e))},onAppend:function(e){var t;e.is(".layout")&&(t=acf.getInstance(e.closest(".acf-field-flexible-content")),e.is(".acfe-layout-duplicated")||(t.has("acfeFlexibleModalEdition")?e.find('> [data-action="acfe-flexible-modal-edit"]:first').trigger("click"):t.openLayout(e)),t.acfeLayoutInit(e),(t=t.$el.closest(".acfe-modal.-open")).length?t.find("> .acfe-modal-wrapper > .acfe-modal-content").animate({scrollTop:parseInt(e.offset().top)-200},200):!acfe.versionCompare(acf.get("acf_version"),"<","5.9")&&e.hasClass("-focused")||f("html, body").animate({scrollTop:parseInt(e.offset().top)-200},200))},onInvalidField:function(e){e.$el.parents(".layout").addClass("acfe-flexible-modal-edit-error")},onValidField:function(e){e.$el.parents(".layout").each(function(){var e=f(this);e.find(".acf-error").length||e.removeClass("acfe-flexible-modal-edit-error")})}}))}(jQuery),function(){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({wait:!1,type:"group",events:{'click [data-name="edit"]':"onClick",duplicateField:"onDuplicate"},initialize:function(){var e;this.has("acfeGroupModal")&&(e=this.get("acfeGroupModalButton"),this.$el.find("> .acf-input > .acf-fields, > .acf-input > .acf-table").wrapAll('<div class="acfe-modal"><div class="acfe-modal-wrapper"><div class="acfe-modal-content"></div></div></div>'),this.$el.find("> .acf-input").append('<a data-name="edit" class="acf-button button" href="#">'+e+"</a>"))},onClick:function(e,t){var a=this.$labelWrap().find("label").text().trim(),i=this.$el.find("> .acf-input > .acfe-modal").addClass("acfe-modal-edit-"+this.get("name")+" acfe-modal-edit-"+this.get("key"));a.length||(a=this.get("acfeGroupModalButton"));var n=!1;this.has("acfeGroupModalClose")&&(n=acf.__("Close"));var o="large";this.has("acfeGroupModalSize")&&(o=this.get("acfeGroupModalSize")),new acfe.Popup(i,{title:a,size:o,footer:n})},onDuplicate:function(e,t,a){a.find('a[data-name="edit"]').remove()}}),acf.registerFieldType(e))}(jQuery),function(e){"undefined"!=typeof acf&&new acf.Model({actions:{"new_field/type=radio":"newField"},newField:function(a){a.has("acfeLabels")&&(e.each(a.get("acfeLabels"),function(e,t){a.$control().find('input[type=radio][value="'+t+'"]').closest("li").addClass("parent").prepend("<strong>"+e+"</strong>")}),a.$control().hasClass("acf-hl")&&a.$control().find("li.parent").each(function(){e(this).nextUntil("li.parent").addBack().wrapAll("<li><ul></ul></li>")}))}})}(jQuery),function(){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({type:"acfe_recaptcha",wait:"load",actions:{validation_failure:"validationFailure"},$control:function(){return this.$(".acfe-field-recaptcha")},$input:function(){return this.$('input[type="hidden"]')},$selector:function(){return this.$control().find("> div")},selector:function(){return this.$selector()[0]},initialize:function(){"v2"===this.get("version")?this.renderV2(this):"v3"===this.get("version")&&this.renderV3()},renderV2:function(t){var e=this.selector(),a=this.$input(),i=this.get("siteKey"),n=this.get("theme"),o=this.get("size");this.recaptcha=grecaptcha.render(e,{sitekey:i,theme:n,size:o,callback:function(e){acf.val(a,e,!0),t.removeError()},"error-callback":function(){acf.val(a,"",!0),t.showError("An error has occured")},"expired-callback":function(){acf.val(a,"",!0),t.showError("reCaptcha has expired")}})},renderV3:function(){var t=this.$input(),e=this.get("siteKey");grecaptcha.ready(function(){grecaptcha.execute(e,{action:"homepage"}).then(function(e){acf.val(t,e,!0)})})},validationFailure:function(e){"v2"===this.get("version")&&grecaptcha.reset(this.recaptcha)}}),acf.registerFieldType(e))}(jQuery),jQuery,"undefined"!=typeof acf&&(acf.getFieldType("repeater").prototype.acfeOnHover=function(){this.off("mouseover")},acf.addAction("new_field/type=repeater",function(e){e.has("acfeRepeaterLock")&&(e.removeEvents({mouseover:"onHover"}),e.addEvents({mouseover:"acfeOnHover"})),e.has("acfeRepeaterRemoveActions")&&(e.$actions().remove(),e.$el.find("thead:first > tr > th.acf-row-handle:last").remove(),e.$rows().find("> .acf-row-handle:last").remove(),e.$control().find("> .acfe-repeater-stylised-button").remove()),e.has("acfeRepeaterStylisedButton")&&(e.$button().removeClass("button-primary"),e.$actions().wrap('<div class="acfe-repeater-stylised-button" />'))})),function(o){"undefined"!=typeof acf&&(new acf.Model({actions:{select2_init:"selectInit"},filters:{select2_args:"selectArgs",select2_ajax_data:"selectAjax"},selectInit:function(e,t,a,i,n){acf.doAction("select2_init/type="+i.get("type"),e,t,a,i,n),acf.doAction("select2_init/name="+i.get("name"),e,t,a,i,n),acf.doAction("select2_init/key="+i.get("key"),e,t,a,i,n)},selectArgs:function(e,t,a,i,n){return e=acf.applyFilters("select2_args/type="+i.get("type"),e,t,a,i,n),e=acf.applyFilters("select2_args/name="+i.get("name"),e,t,a,i,n),e=acf.applyFilters("select2_args/key="+i.get("key"),e,t,a,i,n)},selectAjax:function(e,t,a,i,n){return e=acf.applyFilters("select2_ajax_data/type="+i.get("type"),e,t,a,i,n),e=acf.applyFilters("select2_ajax_data/name="+i.get("name"),e,t,a,i,n),e=(e=acf.applyFilters("select2_ajax_data/key="+i.get("key"),e,t,a,i,n)).action?acf.applyFilters("select2_ajax_data/action="+e.action,e,t,a,i,n):e}}),new acf.Model({actions:{"new_field/type=select":"selectNew",select2_init:"selectInit"},filters:{select2_args:"selectArgs"},selectNew:function(e){e.inherit(e.$input()),!e.get("ui")&&e.get("allow_null")&&e.$input().find("option").each(function(e,t){t.value||t.text.startsWith("- ")&&t.text.endsWith(" -")&&(t.text=t.text.substring(2),t.text=t.text.substring(0,t.text.length-2))}),(e.has("acfePrepend")||e.has("acfeAppend"))&&(e.$input().parent(".acf-input-wrap").length||(e.$input().wrapAll('<div class="acf-input-wrap"></div>'),e.get("ui")&&e.$(".acf-input-wrap:first").append(e.$(".select2")),e.has("acfePrepend")&&(e.$(".acf-input-wrap:first").before('<div class="acf-input-prepend">'+e.get("acfePrepend")+"</div>"),e.$input().addClass("acf-is-prepended")),e.has("acfeAppend")&&(e.$(".acf-input-wrap:first").before('<div class="acf-input-append">'+e.get("acfeAppend")+"</div>"),e.$input().addClass("acf-is-appended"))))},selectInit:function(e,t,a,i,n){e.data("select2")&&e.data("select2").$dropdown.addClass("select2-dropdown-acf").addClass("select2-dropdown-acf-field-"+i.get("name")).addClass("select2-dropdown-acf-field-"+i.get("key")),i.get("multiple")||i.get("acfeSearchPlaceholder")&&e.on("select2:open",function(e){o(".select2-search.select2-search--dropdown > .select2-search__field").attr("placeholder",i.get("acfeSearchPlaceholder"))})},selectArgs:function(e,t,a,i,n){return i.get("acfeAllowCustom")&&(e.tags=!0,e.createTag=function(e){var t=o.trim(e.term);if(""===t)return null;var a=!1;return this.$element.find("option").each(function(){if(this.value.toLowerCase()===t.toLowerCase())return!(a=!0)}),a?null:{id:t,text:t}},e.insertTag=function(e,t){var a=!1;o.each(e,function(){if(o.trim(t.text).toUpperCase()===o.trim(this.text).toUpperCase())return!(a=!0)}),a||e.unshift(t)}),e}}))}(jQuery),function(){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({type:"acfe_slug",events:{"input input":"onInput","focusout input":"onFocusOut"},onInput:function(e,t){t.val(t.val().toLowerCase().replace(/\s+/g,"-").replace(/[^\w\-]+/g,"").replace(/\-\-+/g,"-").replace(/\_\_+/g,"_").replace(/^-+/,""))},onFocusOut:function(e,t){t.val(t.val().toLowerCase().replace(/-+$/,"").replace(/_+$/,""))}}),acf.registerFieldType(e))}(jQuery),function(a){"undefined"!=typeof acf&&new acf.Model({actions:{"prepare_field/type=tab":"prepareField"},prepareField:function(e){var t,i,n;e.has("noPreference")&&(t=e.findTabs(),t=acf.getInstances(t),i=e.get("key"),!t.length||(n=acf.getPreference("this.tabs"))&&(a.each(t,function(e,t){var a=t.get("index");t.data.key===i&&(n[a]=0)}),acf.setPreference("this.tabs",n)))}})}(jQuery),function(){var e;"undefined"!=typeof acf&&(e=acf.Field.extend({type:"textarea",events:{"keydown textarea":"onInput"},onInput:function(e,t){var a,i;this.has("acfeTextareaCode")&&9===e.keyCode&&(e.preventDefault(),a=this.$el.find("textarea")[0],i=a.selectionStart,this.$el.find("textarea").val(function(e,t){return t.substring(0,i)+" "+t.substring(a.selectionEnd)}),a.selectionEnd=i+4)}}),acf.registerFieldType(e))}(jQuery),function(){var e;"undefined"!=typeof acf&&(e=acf.models.WysiwygField,acf.models.WysiwygField=e.extend({initialize:function(){this.has("id")||this.$control().hasClass("delay")||this.initializeEditor()}}),new acf.Model({actions:{"show_field/type=wysiwyg":"showField","ready_field/type=wysiwyg":"showField"},showField:function(e){e.has("acfeWysiwygAutoInit")&&e.$el.is(":visible")&&!e.has("id")&&!acfe.isFilterEnabled("acfeFlexibleOpen")&&this.initializeEditor(e)},initializeEditor:function(e){var t=e.$control();t.hasClass("delay")&&(t.removeClass("delay"),t.find(".acf-editor-toolbar").remove(),e.initializeEditor())}}))}(jQuery),jQuery,"undefined"!=typeof acf&&(acf.registerConditionForFieldType("contains","checkbox"),acf.registerConditionForFieldType("contains","radio"),acf.registerConditionForFieldType("equalTo","acfe_code_editor"),acf.registerConditionForFieldType("notEqualTo","acfe_code_editor"),acf.registerConditionForFieldType("patternMatch","acfe_code_editor"),acf.registerConditionForFieldType("contains","acfe_code_editor"),acf.registerConditionForFieldType("hasValue","acfe_code_editor"),acf.registerConditionForFieldType("hasNoValue","acfe_code_editor"),acf.registerConditionForFieldType("equalTo","date_picker"),acf.registerConditionForFieldType("notEqualTo","date_picker"),acf.registerConditionForFieldType("patternMatch","date_picker"),acf.registerConditionForFieldType("contains","date_picker"),acf.registerConditionForFieldType("greaterThan","date_picker"),acf.registerConditionForFieldType("lessThan","date_picker"),acf.registerConditionForFieldType("equalTo","date_time_picker"),acf.registerConditionForFieldType("notEqualTo","date_time_picker"),acf.registerConditionForFieldType("patternMatch","date_time_picker"),acf.registerConditionForFieldType("contains","date_time_picker"),acf.registerConditionForFieldType("equalTo","acfe_forms"),acf.registerConditionForFieldType("notEqualTo","acfe_forms"),acf.registerConditionForFieldType("patternMatch","acfe_forms"),acf.registerConditionForFieldType("contains","acfe_forms"),acf.registerConditionForFieldType("hasValue","acfe_forms"),acf.registerConditionForFieldType("hasNoValue","acfe_forms"),acf.registerConditionForFieldType("equalTo","acfe_hidden"),acf.registerConditionForFieldType("notEqualTo","acfe_hidden"),acf.registerConditionForFieldType("patternMatch","acfe_hidden"),acf.registerConditionForFieldType("contains","acfe_hidden"),acf.registerConditionForFieldType("hasValue","acfe_hidden"),acf.registerConditionForFieldType("hasNoValue","acfe_hidden"),acf.registerConditionForFieldType("equalTo","acfe_post_statuses"),acf.registerConditionForFieldType("notEqualTo","acfe_post_statuses"),acf.registerConditionForFieldType("patternMatch","acfe_post_statuses"),acf.registerConditionForFieldType("contains","acfe_post_statuses"),acf.registerConditionForFieldType("hasValue","acfe_post_statuses"),acf.registerConditionForFieldType("hasNoValue","acfe_post_statuses"),acf.registerConditionForFieldType("equalTo","acfe_post_types"),acf.registerConditionForFieldType("notEqualTo","acfe_post_types"),acf.registerConditionForFieldType("patternMatch","acfe_post_types"),acf.registerConditionForFieldType("contains","acfe_post_types"),acf.registerConditionForFieldType("hasValue","acfe_post_types"),acf.registerConditionForFieldType("hasNoValue","acfe_post_types"),acf.registerConditionForFieldType("equalTo","acfe_slug"),acf.registerConditionForFieldType("notEqualTo","acfe_slug"),acf.registerConditionForFieldType("patternMatch","acfe_slug"),acf.registerConditionForFieldType("contains","acfe_slug"),acf.registerConditionForFieldType("hasValue","acfe_slug"),acf.registerConditionForFieldType("hasNoValue","acfe_slug"),acf.registerConditionForFieldType("equalTo","acfe_taxonomies"),acf.registerConditionForFieldType("notEqualTo","acfe_taxonomies"),acf.registerConditionForFieldType("patternMatch","acfe_taxonomies"),acf.registerConditionForFieldType("contains","acfe_taxonomies"),acf.registerConditionForFieldType("hasValue","acfe_taxonomies"),acf.registerConditionForFieldType("hasNoValue","acfe_taxonomies"),acf.registerConditionForFieldType("equalTo","taxonomy"),acf.registerConditionForFieldType("notEqualTo","taxonomy"),acf.registerConditionForFieldType("patternMatch","taxonomy"),acf.registerConditionForFieldType("contains","taxonomy"),acf.registerConditionForFieldType("hasValue","taxonomy"),acf.registerConditionForFieldType("hasNoValue","taxonomy"),acf.registerConditionForFieldType("equalTo","acfe_taxonomy_terms"),acf.registerConditionForFieldType("notEqualTo","acfe_taxonomy_terms"),acf.registerConditionForFieldType("patternMatch","acfe_taxonomy_terms"),acf.registerConditionForFieldType("contains","acfe_taxonomy_terms"),acf.registerConditionForFieldType("hasValue","acfe_taxonomy_terms"),acf.registerConditionForFieldType("hasNoValue","acfe_taxonomy_terms"),acf.registerConditionForFieldType("equalTo","time_picker"),acf.registerConditionForFieldType("notEqualTo","time_picker"),acf.registerConditionForFieldType("patternMatch","time_picker"),acf.registerConditionForFieldType("contains","time_picker"),acf.registerConditionForFieldType("equalTo","acfe_user_roles"),acf.registerConditionForFieldType("notEqualTo","acfe_user_roles"),acf.registerConditionForFieldType("patternMatch","acfe_user_roles"),acf.registerConditionForFieldType("contains","acfe_user_roles"),acf.registerConditionForFieldType("hasValue","acfe_user_roles"),acf.registerConditionForFieldType("hasNoValue","acfe_user_roles")),function(i){"undefined"!=typeof acf&&new acf.Model({field:!1,placement:!1,actions:{new_field:"newField"},newField:function(e){(this.field=e).has("instructionTooltip")&&this.setTooltip(),e.has("instructionAboveField")&&this.setAboveField(),e.has("instructionPlacement")&&this.overridePlacement(e.get("instructionPlacement"))},setTooltip:function(){this.field.$labelWrap().prepend('<span class="acfe-field-tooltip acf-js-tooltip dashicons dashicons-info" title="'+_.escape(this.field.get("instructionTooltip"))+'"></span>'),this.field.$labelWrap().find(".description").remove()},setAboveField:function(){this.field.$inputWrap().prepend('<p class="description">'+this.field.get("instructionAboveField")+"</p>"),this.field.$labelWrap().find(".description").remove()},overridePlacement:function(e){var t=this.getPlacement();t&&t!==e&&this.setPlacement(e)},getPlacement:function(){var e=!1;return this.field.$labelWrap().find(">.description").length?e="label":this.field.$inputWrap().find(">.description:first-child").length?e="above_field":this.field.$inputWrap().find(">.description:last-child").length?e="field":this.field.$labelWrap().find(">.acfe-field-tooltip").length&&(e="tooltip"),this.placement=e,this.placement},$getInstruction:function(){var e=this.getPlacement();return"label"===e?this.field.$labelWrap().find(">.description"):"above_field"===e?this.field.$inputWrap().find(">.description:first-child"):"field"===e?this.field.$inputWrap().find(">.description:last-child"):"tooltip"===e&&this.field.$labelWrap().find(">.acfe-field-tooltip")},setPlacement:function(e){var t,a=this.$getInstruction();"tooltip"===this.placement&&(t=a.attr("title"),a.remove(),a=i('<p class="description">'+t+"</p>")),"label"===e?this.field.$labelWrap().append(a):"above_field"===e?this.field.$inputWrap().prepend(a):"field"===e?this.field.$inputWrap().append(a):"tooltip"===e&&(this.field.$labelWrap().prepend(i('<span class="acfe-field-tooltip acf-js-tooltip dashicons dashicons-info" title="'+_.escape(a.html())+'"></span>')),a.remove())}})}(jQuery),jQuery,function(c){var a;"undefined"!=typeof acf&&(new acf.Model({actions:{prepare:"prepare","new_field/type=date_picker":"datePicker","new_field/type=date_time_picker":"datePicker","new_field/type=time_picker":"datePicker","new_field/type=google_map":"googleMap",invalid_field:"invalidField",validation_begin:"validationBegin"},prepare:function(){var e;acfe.get("is_admin")||(acf.isset(window,"wp","media","view","settings","post")&&(wp.media.view.settings.post=!1),c('.acfe-form[data-hide-unload="1"]').length&&acf.unload.disable(),(e=c(".acfe-form-success")).length&&(window.history.replaceState&&window.history.replaceState(null,null,window.location.href),e.each(function(){var e=c(this).data("form-name"),t=c(this).data("form-id");acf.doAction("acfe/form/submit/success"),acf.doAction("acfe/form/submit/success/id="+t),acf.doAction("acfe/form/submit/success/name="+e)})),c('.acf-form .button, .acf-form [type="submit"], .acfe-form .button, .acfe-form [type="submit"]').click(function(e){c(this).hasClass("disabled")&&e.preventDefault()}))},datePicker:function(e){var t;acfe.get("is_admin")||(!(t=e.$el.closest(".acfe-form")).length||(t=t.data("fields-class"))&&e.$inputText().addClass(t))},googleMap:function(e){var t;acfe.get("is_admin")||(!(t=e.$el.closest(".acfe-form")).length||(t=t.data("fields-class"))&&e.$search().addClass(t))},invalidField:function(e){var t,a,i,n,o;acfe.get("is_admin")||(t=e.$el.closest(".acfe-form")).length&&(a=t.data("errors-position"),(o=t.data("errors-class"))&&o.length&&e.$el.find(".acf-notice.-error").addClass(o),a&&"below"===a?(e.$control().length?e.$el.find(".acf-notice.-error").insertAfter(e.$control()):e.$input().length&&e.$el.find(".acf-notice.-error").insertAfter(e.$input()),n=!1,e.$control().length?n=e.$control():e.$input().length&&(n=e.$input()),n&&e.$el.find(".acf-notice.-error").insertAfter(n)):a&&"group"===a?(i=e.$el.find(".acf-label label").text().trim(),o=e.$el.find('.acf-input-wrap [placeholder!=""]').attr("placeholder"),n=e.$el.find(".acf-notice.-error").text().trim(),e.$el.find(".acf-notice.-error").remove(),n=i&&i.length&&"*"!==i?i+": "+n:o&&o.length&&""!==o?o+": "+n:e.get("name")+": "+n,(o=!(o=t.find("> .acfe-form-error")).length?c('<div class="acf-notice -error acf-error-message acfe-form-error" />').prependTo(t):o).append("<p>"+n+"</p>")):a&&"hide"===a&&e.$el.find(".acf-notice.-error").remove())},validationBegin:function(e){acfe.get("is_admin")||void 0!==e&&e.find(".acf-error-message").remove()}}),a=function(e){var t=c(".acf-field input"),e=e.closest("form");(t=e.length?e.find(".acf-field input"):t).each(function(){this.checkValidity()||function(e){e=e.parents(".acf-postbox");!e.length||(e=acf.getPostbox(e))&&(e.$el.hasClass("hide-if-js")||"none"==e.$el.css("display"))&&(e.$el.removeClass("hide-if-js"),e.$el.css("display",""))}(c(this))})},acf.validation.onClickSubmit=function(e,t){a(t),this.set("originalEvent",e)},acf.newCondition=function(e,t){var a=t.get("field"),i=a.getField(e.field);if(a&&!i&&(i=acf.getField(e.field)),!a||!i)return!1;t={rule:e,target:a,conditions:t,field:i},i=i.get("type"),e=e.operator;return new(acf.getConditionTypes({fieldType:i,operator:e})[0]||acf.Condition)(t)})}(jQuery);
|
includes/acfe-field-functions.php
CHANGED
@@ -14,21 +14,71 @@ if(!defined('ABSPATH'))
|
|
14 |
*/
|
15 |
function acfe_get_field_group_from_field($field){
|
16 |
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
return false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
-
|
|
|
21 |
|
22 |
-
|
23 |
-
|
24 |
|
25 |
-
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
-
|
29 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
-
return
|
|
|
32 |
|
33 |
}
|
34 |
|
@@ -50,16 +100,16 @@ function acfe_extract_sub_field(&$layout, $name, $value){
|
|
50 |
// loop
|
51 |
foreach($layout['sub_fields'] as $k => $row){
|
52 |
|
53 |
-
if($row['name'] !== $name)
|
54 |
-
continue;
|
55 |
|
56 |
$sub_field = acf_extract_var($layout['sub_fields'], $k);
|
57 |
break;
|
58 |
|
59 |
}
|
60 |
|
61 |
-
if(!$sub_field)
|
62 |
return false;
|
|
|
63 |
|
64 |
// Reset keys
|
65 |
$layout['sub_fields'] = array_values($layout['sub_fields']);
|
@@ -77,4 +127,31 @@ function acfe_extract_sub_field(&$layout, $name, $value){
|
|
77 |
|
78 |
return $sub_field;
|
79 |
|
80 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*/
|
15 |
function acfe_get_field_group_from_field($field){
|
16 |
|
17 |
+
// allow field key or name
|
18 |
+
if(!is_array($field)){
|
19 |
+
$field = acf_get_field($field);
|
20 |
+
}
|
21 |
+
|
22 |
+
// check parent exists
|
23 |
+
if(!acf_maybe_get($field, 'parent')){
|
24 |
return false;
|
25 |
+
}
|
26 |
+
|
27 |
+
// get parent fields and reverse order (top field first)
|
28 |
+
$ancestors = acf_get_field_ancestors($field);
|
29 |
+
$ancestors = array_reverse($ancestors);
|
30 |
+
|
31 |
+
// no ancestors, return field group
|
32 |
+
if(!$ancestors){
|
33 |
+
return acf_get_field_group($field['parent']);
|
34 |
+
}
|
35 |
|
36 |
+
// retrieve top field
|
37 |
+
$top_field = acf_get_field($ancestors[0]);
|
38 |
|
39 |
+
// return
|
40 |
+
return acf_get_field_group($top_field['parent']);
|
41 |
|
42 |
+
}
|
43 |
+
|
44 |
+
/**
|
45 |
+
* acfe_get_field_descendants
|
46 |
+
*
|
47 |
+
* Similar to acf_get_field_ancestors but retrieve all descendants instead
|
48 |
+
*
|
49 |
+
* @param $field
|
50 |
+
*
|
51 |
+
* @return array
|
52 |
+
*/
|
53 |
+
function acfe_get_field_descendants($field){
|
54 |
+
|
55 |
+
// allow field key or name
|
56 |
+
if(!is_array($field)){
|
57 |
+
$field = acf_get_field($field);
|
58 |
+
}
|
59 |
+
|
60 |
+
// var
|
61 |
+
$descendants = array();
|
62 |
+
$sub_fields = acf_get_fields($field);
|
63 |
+
|
64 |
+
// no sub fields
|
65 |
+
if(!$sub_fields){
|
66 |
+
return $descendants;
|
67 |
+
}
|
68 |
|
69 |
+
// loop sub fields
|
70 |
+
foreach($sub_fields as $sub_field){
|
71 |
+
|
72 |
+
$descendants[] = $sub_field['ID'] ? $sub_field['ID'] : $sub_field['key'];
|
73 |
+
|
74 |
+
if(isset($sub_field['sub_fields'])){
|
75 |
+
$descendants = array_merge($descendants, acfe_get_field_descendants($sub_field));
|
76 |
+
}
|
77 |
+
|
78 |
+
}
|
79 |
|
80 |
+
// return
|
81 |
+
return $descendants;
|
82 |
|
83 |
}
|
84 |
|
100 |
// loop
|
101 |
foreach($layout['sub_fields'] as $k => $row){
|
102 |
|
103 |
+
if($row['name'] !== $name) continue;
|
|
|
104 |
|
105 |
$sub_field = acf_extract_var($layout['sub_fields'], $k);
|
106 |
break;
|
107 |
|
108 |
}
|
109 |
|
110 |
+
if(!$sub_field){
|
111 |
return false;
|
112 |
+
}
|
113 |
|
114 |
// Reset keys
|
115 |
$layout['sub_fields'] = array_values($layout['sub_fields']);
|
127 |
|
128 |
return $sub_field;
|
129 |
|
130 |
+
}
|
131 |
+
|
132 |
+
/**
|
133 |
+
* acfe_map_any_field
|
134 |
+
*
|
135 |
+
* @param $fields
|
136 |
+
* @param $type
|
137 |
+
* @param $callback
|
138 |
+
*
|
139 |
+
* @return mixed
|
140 |
+
*/
|
141 |
+
function acfe_map_any_field($fields, $type, $callback){
|
142 |
+
|
143 |
+
foreach($fields as &$field){
|
144 |
+
|
145 |
+
if($field['type'] === $type){
|
146 |
+
$field = call_user_func($callback, $field);
|
147 |
+
}
|
148 |
+
|
149 |
+
if(acf_maybe_get($field, 'sub_fields')){
|
150 |
+
$field['sub_fields'] = acfe_map_any_field($field['sub_fields'], $type, $callback);
|
151 |
+
}
|
152 |
+
|
153 |
+
}
|
154 |
+
|
155 |
+
return $fields;
|
156 |
+
|
157 |
+
}
|
includes/acfe-helper-functions.php
CHANGED
@@ -371,7 +371,16 @@ function acfe_array_to_string($array = array()){
|
|
371 |
*/
|
372 |
function acfe_is_dev(){
|
373 |
|
374 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
375 |
|
376 |
}
|
377 |
|
@@ -384,7 +393,16 @@ function acfe_is_dev(){
|
|
384 |
*/
|
385 |
function acfe_is_super_dev(){
|
386 |
|
387 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
388 |
|
389 |
}
|
390 |
|
371 |
*/
|
372 |
function acfe_is_dev(){
|
373 |
|
374 |
+
// deprecated
|
375 |
+
if(defined('ACFE_dev')){
|
376 |
+
|
377 |
+
_deprecated_function('ACF Extended: "ACFE_dev" constant', '0.8.8.7', 'the constant "ACFE_DEV"');
|
378 |
+
|
379 |
+
return ACFE_dev;
|
380 |
+
|
381 |
+
}
|
382 |
+
|
383 |
+
return acf_get_setting('acfe/dev', false) || (defined('ACFE_DEV') && ACFE_DEV);
|
384 |
|
385 |
}
|
386 |
|
393 |
*/
|
394 |
function acfe_is_super_dev(){
|
395 |
|
396 |
+
// deprecated
|
397 |
+
if(defined('ACFE_super_dev')){
|
398 |
+
|
399 |
+
_deprecated_function('ACF Extended: "ACFE_super_dev" constant', '0.8.8.7', 'the constant "ACFE_SUPER_DEV"');
|
400 |
+
|
401 |
+
return ACFE_super_dev;
|
402 |
+
|
403 |
+
}
|
404 |
+
|
405 |
+
return acf_get_setting('acfe/super_dev', false) || (defined('ACFE_SUPER_DEV') && ACFE_SUPER_DEV);
|
406 |
|
407 |
}
|
408 |
|
includes/acfe-meta-functions.php
CHANGED
@@ -360,6 +360,31 @@ function acfe_get_orphan_meta($post_id = 0){
|
|
360 |
|
361 |
$allowed_fields[] = $cloned_key;
|
362 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
363 |
}
|
364 |
|
365 |
}
|
360 |
|
361 |
$allowed_fields[] = $cloned_key;
|
362 |
|
363 |
+
// get field group from cloned field
|
364 |
+
$clone_field_group = acfe_get_field_group_from_field($cloned_key);
|
365 |
+
|
366 |
+
// add field group in the allowed list
|
367 |
+
if($clone_field_group){
|
368 |
+
$allowed_field_groups[] = $clone_field_group['key'];
|
369 |
+
}
|
370 |
+
|
371 |
+
// todo: enhance logic to only allow sub field of the targeted field
|
372 |
+
/*
|
373 |
+
$is_enabled = acf_is_filter_enabled('clone');
|
374 |
+
|
375 |
+
if($is_enabled){
|
376 |
+
acf_disable_filter('clone');
|
377 |
+
}
|
378 |
+
|
379 |
+
// also allow descendants in case of repeater, flexible content or group
|
380 |
+
$descendants = acfe_get_field_descendants($cloned_key);
|
381 |
+
$allowed_fields = array_merge($allowed_fields, $descendants);
|
382 |
+
|
383 |
+
if($is_enabled){
|
384 |
+
acf_enable_filter('clone');
|
385 |
+
}
|
386 |
+
*/
|
387 |
+
|
388 |
}
|
389 |
|
390 |
}
|
includes/field-groups/field-groups.php
CHANGED
@@ -610,6 +610,11 @@ class ACFE_Field_Groups{
|
|
610 |
*/
|
611 |
function row_actions($actions, $post){
|
612 |
|
|
|
|
|
|
|
|
|
|
|
613 |
$field_group = acf_get_field_group($post->ID);
|
614 |
|
615 |
$actions['acfe-export-php'] = '<a href="' . admin_url('edit.php?post_type=acf-field-group&page=acf-tools&tool=export&action=php&keys=' . $field_group['key']) . '">PHP</a>';
|
610 |
*/
|
611 |
function row_actions($actions, $post){
|
612 |
|
613 |
+
// bail early
|
614 |
+
if($post->post_type !== 'acf-field-group'){
|
615 |
+
return $actions;
|
616 |
+
}
|
617 |
+
|
618 |
$field_group = acf_get_field_group($post->ID);
|
619 |
|
620 |
$actions['acfe-export-php'] = '<a href="' . admin_url('edit.php?post_type=acf-field-group&page=acf-tools&tool=export&action=php&keys=' . $field_group['key']) . '">PHP</a>';
|
includes/fields-settings/bidirectional.php
CHANGED
@@ -13,17 +13,17 @@ class acfe_bidirectional{
|
|
13 |
|
14 |
foreach($this->allowed_types as $allowed_type){
|
15 |
|
16 |
-
add_action(
|
17 |
-
add_filter(
|
18 |
-
add_action(
|
19 |
|
20 |
-
add_filter(
|
21 |
|
22 |
}
|
23 |
|
24 |
add_action('wp_ajax_acfe/fields_settings/bidirectional/query', array($this, 'ajax_query'));
|
25 |
add_action('wp_ajax_nopriv_acfe/fields_settings/bidirectional/query', array($this, 'ajax_query'));
|
26 |
-
|
27 |
add_filter('acf/prepare_field/name=acfe_bidirectional_related', array($this, 'field_settings_default_value'));
|
28 |
|
29 |
}
|
@@ -138,8 +138,9 @@ class acfe_bidirectional{
|
|
138 |
// Get field groups
|
139 |
$r_field_groups = acf_get_field_groups();
|
140 |
|
141 |
-
if(empty($r_field_groups))
|
142 |
return false;
|
|
|
143 |
|
144 |
// Vars
|
145 |
$hidden = acfe_get_setting('reserved_field_groups', array());
|
@@ -148,13 +149,11 @@ class acfe_bidirectional{
|
|
148 |
foreach($r_field_groups as $r_field_group){
|
149 |
|
150 |
// Bypass ACFE native groups
|
151 |
-
if(in_array($r_field_group['key'], $hidden))
|
152 |
-
continue;
|
153 |
|
154 |
// Get related fields
|
155 |
$r_fields = acf_get_fields($r_field_group['key']);
|
156 |
-
if(empty($r_fields))
|
157 |
-
continue;
|
158 |
|
159 |
// Filter & find possible related fields
|
160 |
foreach($r_fields as $r_field){
|
@@ -188,10 +187,11 @@ class acfe_bidirectional{
|
|
188 |
foreach($childs as $child_key => $child_label){
|
189 |
|
190 |
$child_label = strval($child_label);
|
191 |
-
|
192 |
// if searching, but doesn't exist
|
193 |
-
if(is_string($s) && stripos($child_label, $s) === false && stripos($field_group_title, $s) === false)
|
194 |
continue(2);
|
|
|
195 |
|
196 |
$childrens[] = array(
|
197 |
'id' => $child_key,
|
@@ -238,8 +238,9 @@ class acfe_bidirectional{
|
|
238 |
}
|
239 |
|
240 |
// Allow only specific fields
|
241 |
-
if(!in_array($r_field['type'], $this->allowed_types))
|
242 |
return false;
|
|
|
243 |
|
244 |
$choices[$r_field_group['title']][$r_field['key']] = (!empty($r_field['label']) ? $r_field['label'] : $r_field['name']) . ' (' . $r_field['key'] . ')';
|
245 |
|
@@ -299,9 +300,10 @@ class acfe_bidirectional{
|
|
299 |
*/
|
300 |
function field_settings_update($field){
|
301 |
|
302 |
-
|
303 |
-
if(
|
304 |
return $field;
|
|
|
305 |
|
306 |
// Previous setting values
|
307 |
$_field = acf_get_field($field['key']);
|
@@ -316,8 +318,7 @@ class acfe_bidirectional{
|
|
316 |
|
317 |
$r_field = acf_get_field($r_field_key);
|
318 |
|
319 |
-
if(!$this->has_field_bidirectional($r_field))
|
320 |
-
continue;
|
321 |
|
322 |
$r_field_related = acf_get_array($r_field['acfe_bidirectional']['acfe_bidirectional_related']);
|
323 |
|
@@ -325,8 +326,7 @@ class acfe_bidirectional{
|
|
325 |
|
326 |
foreach($r_field_related as $i => $r_field_r){
|
327 |
|
328 |
-
if($r_field_r !== $field['key'])
|
329 |
-
continue;
|
330 |
|
331 |
unset($r_field_related[$i]);
|
332 |
|
@@ -373,8 +373,9 @@ class acfe_bidirectional{
|
|
373 |
|
374 |
$r_field_related = array();
|
375 |
|
376 |
-
if(isset($r_field['acfe_bidirectional']['acfe_bidirectional_related']))
|
377 |
$r_field_related = acf_get_array($r_field['acfe_bidirectional']['acfe_bidirectional_related']);
|
|
|
378 |
|
379 |
if(!in_array($field['key'], $r_field_related)){
|
380 |
|
@@ -409,8 +410,7 @@ class acfe_bidirectional{
|
|
409 |
*/
|
410 |
function field_settings_delete($field){
|
411 |
|
412 |
-
if(!$this->has_field_bidirectional($field))
|
413 |
-
return;
|
414 |
|
415 |
// Get related bidirectional related
|
416 |
$r_fields = acf_get_array($field['acfe_bidirectional']['acfe_bidirectional_related']);
|
@@ -425,8 +425,7 @@ class acfe_bidirectional{
|
|
425 |
|
426 |
foreach($r_field_related as $i => $r_field_r){
|
427 |
|
428 |
-
if($r_field_r !== $field['key'])
|
429 |
-
continue;
|
430 |
|
431 |
unset($r_field_related[$i]);
|
432 |
|
@@ -460,16 +459,19 @@ class acfe_bidirectional{
|
|
460 |
function update_value($value, $post_id, $field){
|
461 |
|
462 |
// Bail early if updating a relation
|
463 |
-
if(acf_is_filter_enabled('acfe/bidirectional'))
|
464 |
return $value;
|
|
|
465 |
|
466 |
// Bail early if no bidirectional setting
|
467 |
-
if(!$this->get_field_bidirectional($field))
|
468 |
return $value;
|
|
|
469 |
|
470 |
// Bail early if local meta
|
471 |
-
if(acfe_is_local_post_id($post_id))
|
472 |
return $value;
|
|
|
473 |
|
474 |
// Decode current post_id (ie: user_1)
|
475 |
$request = acf_decode_post_id($post_id);
|
@@ -486,8 +488,7 @@ class acfe_bidirectional{
|
|
486 |
if(!empty($old_values)){
|
487 |
foreach($old_values as $r_id){
|
488 |
|
489 |
-
if(in_array($r_id, $new_values))
|
490 |
-
continue;
|
491 |
|
492 |
$this->relationship('remove', $r_id, $field, $request['id']);
|
493 |
|
@@ -498,8 +499,7 @@ class acfe_bidirectional{
|
|
498 |
if(!empty($new_values)){
|
499 |
foreach($new_values as $r_id){
|
500 |
|
501 |
-
if(in_array($r_id, $old_values))
|
502 |
-
continue;
|
503 |
|
504 |
$this->relationship('add', $r_id, $field, $request['id']);
|
505 |
|
@@ -507,10 +507,10 @@ class acfe_bidirectional{
|
|
507 |
}
|
508 |
|
509 |
$force_update = false;
|
510 |
-
$force_update = apply_filters(
|
511 |
-
$force_update = apply_filters(
|
512 |
-
$force_update = apply_filters(
|
513 |
-
$force_update = apply_filters(
|
514 |
|
515 |
if($force_update){
|
516 |
|
@@ -547,15 +547,15 @@ class acfe_bidirectional{
|
|
547 |
$r_field = acf_get_field($r_field_key);
|
548 |
|
549 |
// Get if bidirectional is active
|
550 |
-
if(!$this->get_field_bidirectional($r_field))
|
551 |
-
continue;
|
552 |
|
553 |
// Get Related Data Type ({post_id}, user_{id} ...)
|
554 |
$r_mtype = '';
|
555 |
-
if($p_field['type'] === 'user')
|
556 |
$r_mtype = 'user_';
|
557 |
-
elseif($p_field['type'] === 'taxonomy')
|
558 |
$r_mtype = 'term_';
|
|
|
559 |
|
560 |
// Get Related Field Ancestors
|
561 |
$r_field_ancestors = acf_get_field_ancestors($r_field);
|
@@ -611,8 +611,9 @@ class acfe_bidirectional{
|
|
611 |
// Add Value
|
612 |
if($type === 'add'){
|
613 |
|
614 |
-
if(!in_array($p_value, $r_values))
|
615 |
$r_values[] = $p_value;
|
|
|
616 |
|
617 |
}
|
618 |
|
@@ -622,8 +623,7 @@ class acfe_bidirectional{
|
|
622 |
$r_new_values = array();
|
623 |
foreach($r_values as $r_value){
|
624 |
|
625 |
-
if($r_value === $p_value)
|
626 |
-
continue;
|
627 |
|
628 |
$r_new_values[] = $r_value;
|
629 |
|
@@ -687,8 +687,9 @@ class acfe_bidirectional{
|
|
687 |
|
688 |
if($r_ref_key != $r_field['key']){
|
689 |
|
690 |
-
if(is_array($r_ref_value))
|
691 |
return $this->get_value_from_ancestor($r_ref_value, $r_field);
|
|
|
692 |
|
693 |
return false;
|
694 |
|
@@ -701,21 +702,18 @@ class acfe_bidirectional{
|
|
701 |
}
|
702 |
|
703 |
function is_field_bidirectional($field){
|
704 |
-
|
705 |
return isset($field['acfe_bidirectional']['acfe_bidirectional_enabled']) && !empty($field['acfe_bidirectional']['acfe_bidirectional_enabled']);
|
706 |
-
|
707 |
}
|
708 |
|
709 |
function has_field_bidirectional($field){
|
710 |
-
|
711 |
return isset($field['acfe_bidirectional']['acfe_bidirectional_related']) && !empty($field['acfe_bidirectional']['acfe_bidirectional_related']);
|
712 |
-
|
713 |
}
|
714 |
|
715 |
function get_field_bidirectional($field){
|
716 |
|
717 |
-
if(!$this->is_field_bidirectional($field) || !$this->has_field_bidirectional($field))
|
718 |
return false;
|
|
|
719 |
|
720 |
return $field['acfe_bidirectional']['acfe_bidirectional_related'];
|
721 |
|
13 |
|
14 |
foreach($this->allowed_types as $allowed_type){
|
15 |
|
16 |
+
add_action("acf/render_field_settings/type={$allowed_type}", array($this, 'field_settings_render'));
|
17 |
+
add_filter("acf/update_field/type={$allowed_type}", array($this, 'field_settings_update'));
|
18 |
+
add_action("acf/delete_field/type={$allowed_type}", array($this, 'field_settings_delete'));
|
19 |
|
20 |
+
add_filter("acf/update_value/type={$allowed_type}", array($this, 'update_value'), 11, 3);
|
21 |
|
22 |
}
|
23 |
|
24 |
add_action('wp_ajax_acfe/fields_settings/bidirectional/query', array($this, 'ajax_query'));
|
25 |
add_action('wp_ajax_nopriv_acfe/fields_settings/bidirectional/query', array($this, 'ajax_query'));
|
26 |
+
|
27 |
add_filter('acf/prepare_field/name=acfe_bidirectional_related', array($this, 'field_settings_default_value'));
|
28 |
|
29 |
}
|
138 |
// Get field groups
|
139 |
$r_field_groups = acf_get_field_groups();
|
140 |
|
141 |
+
if(empty($r_field_groups)){
|
142 |
return false;
|
143 |
+
}
|
144 |
|
145 |
// Vars
|
146 |
$hidden = acfe_get_setting('reserved_field_groups', array());
|
149 |
foreach($r_field_groups as $r_field_group){
|
150 |
|
151 |
// Bypass ACFE native groups
|
152 |
+
if(in_array($r_field_group['key'], $hidden)) continue;
|
|
|
153 |
|
154 |
// Get related fields
|
155 |
$r_fields = acf_get_fields($r_field_group['key']);
|
156 |
+
if(empty($r_fields)) continue;
|
|
|
157 |
|
158 |
// Filter & find possible related fields
|
159 |
foreach($r_fields as $r_field){
|
187 |
foreach($childs as $child_key => $child_label){
|
188 |
|
189 |
$child_label = strval($child_label);
|
190 |
+
|
191 |
// if searching, but doesn't exist
|
192 |
+
if(is_string($s) && stripos($child_label, $s) === false && stripos($field_group_title, $s) === false){
|
193 |
continue(2);
|
194 |
+
}
|
195 |
|
196 |
$childrens[] = array(
|
197 |
'id' => $child_key,
|
238 |
}
|
239 |
|
240 |
// Allow only specific fields
|
241 |
+
if(!in_array($r_field['type'], $this->allowed_types)){
|
242 |
return false;
|
243 |
+
}
|
244 |
|
245 |
$choices[$r_field_group['title']][$r_field['key']] = (!empty($r_field['label']) ? $r_field['label'] : $r_field['name']) . ' (' . $r_field['key'] . ')';
|
246 |
|
300 |
*/
|
301 |
function field_settings_update($field){
|
302 |
|
303 |
+
// bypass
|
304 |
+
if(acf_is_filter_enabled('acfe/bidirectional_setting')){
|
305 |
return $field;
|
306 |
+
}
|
307 |
|
308 |
// Previous setting values
|
309 |
$_field = acf_get_field($field['key']);
|
318 |
|
319 |
$r_field = acf_get_field($r_field_key);
|
320 |
|
321 |
+
if(!$this->has_field_bidirectional($r_field)) continue;
|
|
|
322 |
|
323 |
$r_field_related = acf_get_array($r_field['acfe_bidirectional']['acfe_bidirectional_related']);
|
324 |
|
326 |
|
327 |
foreach($r_field_related as $i => $r_field_r){
|
328 |
|
329 |
+
if($r_field_r !== $field['key']) continue;
|
|
|
330 |
|
331 |
unset($r_field_related[$i]);
|
332 |
|
373 |
|
374 |
$r_field_related = array();
|
375 |
|
376 |
+
if(isset($r_field['acfe_bidirectional']['acfe_bidirectional_related'])){
|
377 |
$r_field_related = acf_get_array($r_field['acfe_bidirectional']['acfe_bidirectional_related']);
|
378 |
+
}
|
379 |
|
380 |
if(!in_array($field['key'], $r_field_related)){
|
381 |
|
410 |
*/
|
411 |
function field_settings_delete($field){
|
412 |
|
413 |
+
if(!$this->has_field_bidirectional($field)) return;
|
|
|
414 |
|
415 |
// Get related bidirectional related
|
416 |
$r_fields = acf_get_array($field['acfe_bidirectional']['acfe_bidirectional_related']);
|
425 |
|
426 |
foreach($r_field_related as $i => $r_field_r){
|
427 |
|
428 |
+
if($r_field_r !== $field['key']) continue;
|
|
|
429 |
|
430 |
unset($r_field_related[$i]);
|
431 |
|
459 |
function update_value($value, $post_id, $field){
|
460 |
|
461 |
// Bail early if updating a relation
|
462 |
+
if(acf_is_filter_enabled('acfe/bidirectional')){
|
463 |
return $value;
|
464 |
+
}
|
465 |
|
466 |
// Bail early if no bidirectional setting
|
467 |
+
if(!$this->get_field_bidirectional($field)){
|
468 |
return $value;
|
469 |
+
}
|
470 |
|
471 |
// Bail early if local meta
|
472 |
+
if(acfe_is_local_post_id($post_id)){
|
473 |
return $value;
|
474 |
+
}
|
475 |
|
476 |
// Decode current post_id (ie: user_1)
|
477 |
$request = acf_decode_post_id($post_id);
|
488 |
if(!empty($old_values)){
|
489 |
foreach($old_values as $r_id){
|
490 |
|
491 |
+
if(in_array($r_id, $new_values)) continue;
|
|
|
492 |
|
493 |
$this->relationship('remove', $r_id, $field, $request['id']);
|
494 |
|
499 |
if(!empty($new_values)){
|
500 |
foreach($new_values as $r_id){
|
501 |
|
502 |
+
if(in_array($r_id, $old_values)) continue;
|
|
|
503 |
|
504 |
$this->relationship('add', $r_id, $field, $request['id']);
|
505 |
|
507 |
}
|
508 |
|
509 |
$force_update = false;
|
510 |
+
$force_update = apply_filters("acfe/bidirectional/force_update", $force_update, $field, $post_id);
|
511 |
+
$force_update = apply_filters("acfe/bidirectional/force_update/type={$field['type']}", $force_update, $field, $post_id);
|
512 |
+
$force_update = apply_filters("acfe/bidirectional/force_update/name={$field['name']}", $force_update, $field, $post_id);
|
513 |
+
$force_update = apply_filters("acfe/bidirectional/force_update/key={$field['key']}", $force_update, $field, $post_id);
|
514 |
|
515 |
if($force_update){
|
516 |
|
547 |
$r_field = acf_get_field($r_field_key);
|
548 |
|
549 |
// Get if bidirectional is active
|
550 |
+
if(!$this->get_field_bidirectional($r_field)) continue;
|
|
|
551 |
|
552 |
// Get Related Data Type ({post_id}, user_{id} ...)
|
553 |
$r_mtype = '';
|
554 |
+
if($p_field['type'] === 'user'){
|
555 |
$r_mtype = 'user_';
|
556 |
+
}elseif($p_field['type'] === 'taxonomy'){
|
557 |
$r_mtype = 'term_';
|
558 |
+
}
|
559 |
|
560 |
// Get Related Field Ancestors
|
561 |
$r_field_ancestors = acf_get_field_ancestors($r_field);
|
611 |
// Add Value
|
612 |
if($type === 'add'){
|
613 |
|
614 |
+
if(!in_array($p_value, $r_values)){
|
615 |
$r_values[] = $p_value;
|
616 |
+
}
|
617 |
|
618 |
}
|
619 |
|
623 |
$r_new_values = array();
|
624 |
foreach($r_values as $r_value){
|
625 |
|
626 |
+
if($r_value === $p_value) continue;
|
|
|
627 |
|
628 |
$r_new_values[] = $r_value;
|
629 |
|
687 |
|
688 |
if($r_ref_key != $r_field['key']){
|
689 |
|
690 |
+
if(is_array($r_ref_value)){
|
691 |
return $this->get_value_from_ancestor($r_ref_value, $r_field);
|
692 |
+
}
|
693 |
|
694 |
return false;
|
695 |
|
702 |
}
|
703 |
|
704 |
function is_field_bidirectional($field){
|
|
|
705 |
return isset($field['acfe_bidirectional']['acfe_bidirectional_enabled']) && !empty($field['acfe_bidirectional']['acfe_bidirectional_enabled']);
|
|
|
706 |
}
|
707 |
|
708 |
function has_field_bidirectional($field){
|
|
|
709 |
return isset($field['acfe_bidirectional']['acfe_bidirectional_related']) && !empty($field['acfe_bidirectional']['acfe_bidirectional_related']);
|
|
|
710 |
}
|
711 |
|
712 |
function get_field_bidirectional($field){
|
713 |
|
714 |
+
if(!$this->is_field_bidirectional($field) || !$this->has_field_bidirectional($field)){
|
715 |
return false;
|
716 |
+
}
|
717 |
|
718 |
return $field['acfe_bidirectional']['acfe_bidirectional_related'];
|
719 |
|
includes/fields/field-flexible-content.php
CHANGED
@@ -633,6 +633,7 @@ class acfe_field_flexible_content{
|
|
633 |
function prepare_layout_editor($field){
|
634 |
|
635 |
$field['delay'] = 1;
|
|
|
636 |
return $field;
|
637 |
|
638 |
}
|
633 |
function prepare_layout_editor($field){
|
634 |
|
635 |
$field['delay'] = 1;
|
636 |
+
$field['acfe_wysiwyg_auto_init'] = 1;
|
637 |
return $field;
|
638 |
|
639 |
}
|
includes/fields/field-wysiwyg.php
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
if(!defined('ABSPATH'))
|
4 |
+
exit;
|
5 |
+
|
6 |
+
if(!class_exists('acfe_free_field_wysiwyg')):
|
7 |
+
|
8 |
+
class acfe_free_field_wysiwyg{
|
9 |
+
|
10 |
+
function __construct(){
|
11 |
+
|
12 |
+
add_filter('acfe/field_wrapper_attributes/type=wysiwyg', array($this, 'field_wrapper'), 10, 2);
|
13 |
+
|
14 |
+
}
|
15 |
+
|
16 |
+
/*
|
17 |
+
* Field Wrapper
|
18 |
+
*/
|
19 |
+
function field_wrapper($wrapper, $field){
|
20 |
+
|
21 |
+
// auto init
|
22 |
+
if(acf_maybe_get($field, 'acfe_wysiwyg_auto_init')){
|
23 |
+
|
24 |
+
$wrapper['data-acfe-wysiwyg-auto-init'] = $field['acfe_wysiwyg_auto_init'];
|
25 |
+
|
26 |
+
}
|
27 |
+
|
28 |
+
return $wrapper;
|
29 |
+
|
30 |
+
}
|
31 |
+
|
32 |
+
}
|
33 |
+
|
34 |
+
new acfe_free_field_wysiwyg();
|
35 |
+
|
36 |
+
endif;
|
includes/forms/form-attachment.php
CHANGED
@@ -72,29 +72,31 @@ class acfe_screen_attachment{
|
|
72 |
acf_enqueue_scripts();
|
73 |
|
74 |
?>
|
75 |
-
<
|
76 |
|
77 |
-
<div id="poststuff" class="acfe-
|
78 |
<form method="post">
|
79 |
<?php do_meta_boxes('edit', 'acf_after_title', 'attachment'); ?>
|
80 |
</form>
|
81 |
</div>
|
82 |
|
83 |
-
</
|
84 |
-
|
|
|
85 |
|
86 |
-
<div id="poststuff" class="acfe-
|
87 |
<form method="post">
|
88 |
<?php do_meta_boxes('edit', 'normal', 'attachment'); ?>
|
89 |
</form>
|
90 |
</div>
|
91 |
|
92 |
-
</
|
93 |
-
|
|
|
94 |
|
95 |
<div class="acf-column-2">
|
96 |
|
97 |
-
<div id="poststuff" class="acfe-
|
98 |
<form method="post">
|
99 |
<?php do_meta_boxes('edit', 'side', 'attachment'); ?>
|
100 |
</form>
|
@@ -102,7 +104,7 @@ class acfe_screen_attachment{
|
|
102 |
|
103 |
</div>
|
104 |
|
105 |
-
</
|
106 |
<script type="text/javascript">
|
107 |
(function($){
|
108 |
|
72 |
acf_enqueue_scripts();
|
73 |
|
74 |
?>
|
75 |
+
<template id="tmpl-acf-after-title">
|
76 |
|
77 |
+
<div id="poststuff" class="acfe-list-postboxes">
|
78 |
<form method="post">
|
79 |
<?php do_meta_boxes('edit', 'acf_after_title', 'attachment'); ?>
|
80 |
</form>
|
81 |
</div>
|
82 |
|
83 |
+
</template>
|
84 |
+
|
85 |
+
<template id="tmpl-acf-normal">
|
86 |
|
87 |
+
<div id="poststuff" class="acfe-list-postboxes">
|
88 |
<form method="post">
|
89 |
<?php do_meta_boxes('edit', 'normal', 'attachment'); ?>
|
90 |
</form>
|
91 |
</div>
|
92 |
|
93 |
+
</template>
|
94 |
+
|
95 |
+
<template id="tmpl-acf-side">
|
96 |
|
97 |
<div class="acf-column-2">
|
98 |
|
99 |
+
<div id="poststuff" class="acfe-list-postboxes -side">
|
100 |
<form method="post">
|
101 |
<?php do_meta_boxes('edit', 'side', 'attachment'); ?>
|
102 |
</form>
|
104 |
|
105 |
</div>
|
106 |
|
107 |
+
</template>
|
108 |
<script type="text/javascript">
|
109 |
(function($){
|
110 |
|
includes/forms/form-post.php
CHANGED
@@ -121,29 +121,31 @@ class acfe_screen_post{
|
|
121 |
acf_enqueue_scripts();
|
122 |
|
123 |
?>
|
124 |
-
<
|
125 |
|
126 |
-
<div id="poststuff" class="acfe-
|
127 |
<form method="post">
|
128 |
<?php do_meta_boxes('edit', 'acf_after_title', $this->post_type); ?>
|
129 |
</form>
|
130 |
</div>
|
131 |
|
132 |
-
</
|
133 |
-
|
|
|
134 |
|
135 |
-
<div id="poststuff" class="acfe-
|
136 |
<form method="post">
|
137 |
<?php do_meta_boxes('edit', 'normal', $this->post_type); ?>
|
138 |
</form>
|
139 |
</div>
|
140 |
|
141 |
-
</
|
142 |
-
|
|
|
143 |
|
144 |
<div class="acf-column-2">
|
145 |
|
146 |
-
<div id="poststuff" class="acfe-
|
147 |
<form method="post">
|
148 |
<?php do_meta_boxes('edit', 'side', $this->post_type); ?>
|
149 |
</form>
|
@@ -151,7 +153,7 @@ class acfe_screen_post{
|
|
151 |
|
152 |
</div>
|
153 |
|
154 |
-
</
|
155 |
<script type="text/javascript">
|
156 |
(function($){
|
157 |
|
121 |
acf_enqueue_scripts();
|
122 |
|
123 |
?>
|
124 |
+
<template id="tmpl-acf-after-title">
|
125 |
|
126 |
+
<div id="poststuff" class="acfe-list-postboxes">
|
127 |
<form method="post">
|
128 |
<?php do_meta_boxes('edit', 'acf_after_title', $this->post_type); ?>
|
129 |
</form>
|
130 |
</div>
|
131 |
|
132 |
+
</template>
|
133 |
+
|
134 |
+
<template id="tmpl-acf-normal">
|
135 |
|
136 |
+
<div id="poststuff" class="acfe-list-postboxes">
|
137 |
<form method="post">
|
138 |
<?php do_meta_boxes('edit', 'normal', $this->post_type); ?>
|
139 |
</form>
|
140 |
</div>
|
141 |
|
142 |
+
</template>
|
143 |
+
|
144 |
+
<template id="tmpl-acf-side">
|
145 |
|
146 |
<div class="acf-column-2">
|
147 |
|
148 |
+
<div id="poststuff" class="acfe-list-postboxes -side">
|
149 |
<form method="post">
|
150 |
<?php do_meta_boxes('edit', 'side', $this->post_type); ?>
|
151 |
</form>
|
153 |
|
154 |
</div>
|
155 |
|
156 |
+
</template>
|
157 |
<script type="text/javascript">
|
158 |
(function($){
|
159 |
|
includes/forms/form-taxonomy.php
CHANGED
@@ -140,29 +140,31 @@ class acfe_screen_taxonomy{
|
|
140 |
}
|
141 |
|
142 |
?>
|
143 |
-
<
|
144 |
|
145 |
-
<div id="poststuff" class="acfe-
|
146 |
<form method="post">
|
147 |
<?php do_meta_boxes('edit', 'acf_after_title', $this->taxonomy); ?>
|
148 |
</form>
|
149 |
</div>
|
150 |
|
151 |
-
</
|
152 |
-
|
|
|
153 |
|
154 |
-
<div id="poststuff" class="acfe-
|
155 |
<form method="post">
|
156 |
<?php do_meta_boxes('edit', 'normal', $this->taxonomy); ?>
|
157 |
</form>
|
158 |
</div>
|
159 |
|
160 |
-
</
|
161 |
-
|
|
|
162 |
|
163 |
<div class="acf-column-2">
|
164 |
|
165 |
-
<div id="poststuff" class="acfe-
|
166 |
<form method="post">
|
167 |
<?php do_meta_boxes('edit', 'side', $this->taxonomy); ?>
|
168 |
</form>
|
@@ -170,7 +172,7 @@ class acfe_screen_taxonomy{
|
|
170 |
|
171 |
</div>
|
172 |
|
173 |
-
</
|
174 |
<script type="text/javascript">
|
175 |
(function($){
|
176 |
|
140 |
}
|
141 |
|
142 |
?>
|
143 |
+
<template id="tmpl-acf-after-title">
|
144 |
|
145 |
+
<div id="poststuff" class="acfe-list-postboxes">
|
146 |
<form method="post">
|
147 |
<?php do_meta_boxes('edit', 'acf_after_title', $this->taxonomy); ?>
|
148 |
</form>
|
149 |
</div>
|
150 |
|
151 |
+
</template>
|
152 |
+
|
153 |
+
<template id="tmpl-acf-normal">
|
154 |
|
155 |
+
<div id="poststuff" class="acfe-list-postboxes">
|
156 |
<form method="post">
|
157 |
<?php do_meta_boxes('edit', 'normal', $this->taxonomy); ?>
|
158 |
</form>
|
159 |
</div>
|
160 |
|
161 |
+
</template>
|
162 |
+
|
163 |
+
<template id="tmpl-acf-side">
|
164 |
|
165 |
<div class="acf-column-2">
|
166 |
|
167 |
+
<div id="poststuff" class="acfe-list-postboxes -side">
|
168 |
<form method="post">
|
169 |
<?php do_meta_boxes('edit', 'side', $this->taxonomy); ?>
|
170 |
</form>
|
172 |
|
173 |
</div>
|
174 |
|
175 |
+
</template>
|
176 |
<script type="text/javascript">
|
177 |
(function($){
|
178 |
|
includes/forms/form-user.php
CHANGED
@@ -169,29 +169,31 @@ class acfe_screen_user{
|
|
169 |
acf_enqueue_scripts();
|
170 |
|
171 |
?>
|
172 |
-
<
|
173 |
|
174 |
-
<div id="poststuff" class="acfe-
|
175 |
<form method="post">
|
176 |
<?php do_meta_boxes('edit', 'acf_after_title', 'user'); ?>
|
177 |
</form>
|
178 |
</div>
|
179 |
|
180 |
-
</
|
181 |
-
|
|
|
182 |
|
183 |
-
<div id="poststuff" class="acfe-
|
184 |
<form method="post">
|
185 |
<?php do_meta_boxes('edit', 'normal', 'user'); ?>
|
186 |
</form>
|
187 |
</div>
|
188 |
|
189 |
-
</
|
190 |
-
|
|
|
191 |
|
192 |
<div class="acf-column-2">
|
193 |
|
194 |
-
<div id="poststuff" class="acfe-
|
195 |
<form method="post">
|
196 |
<?php do_meta_boxes('edit', 'side', 'user'); ?>
|
197 |
</form>
|
@@ -199,7 +201,7 @@ class acfe_screen_user{
|
|
199 |
|
200 |
</div>
|
201 |
|
202 |
-
</
|
203 |
<script type="text/javascript">
|
204 |
(function($){
|
205 |
|
169 |
acf_enqueue_scripts();
|
170 |
|
171 |
?>
|
172 |
+
<template id="tmpl-acf-after-title">
|
173 |
|
174 |
+
<div id="poststuff" class="acfe-list-postboxes">
|
175 |
<form method="post">
|
176 |
<?php do_meta_boxes('edit', 'acf_after_title', 'user'); ?>
|
177 |
</form>
|
178 |
</div>
|
179 |
|
180 |
+
</template>
|
181 |
+
|
182 |
+
<template id="tmpl-acf-normal">
|
183 |
|
184 |
+
<div id="poststuff" class="acfe-list-postboxes">
|
185 |
<form method="post">
|
186 |
<?php do_meta_boxes('edit', 'normal', 'user'); ?>
|
187 |
</form>
|
188 |
</div>
|
189 |
|
190 |
+
</template>
|
191 |
+
|
192 |
+
<template id="tmpl-acf-side">
|
193 |
|
194 |
<div class="acf-column-2">
|
195 |
|
196 |
+
<div id="poststuff" class="acfe-list-postboxes -side">
|
197 |
<form method="post">
|
198 |
<?php do_meta_boxes('edit', 'side', 'user'); ?>
|
199 |
</form>
|
201 |
|
202 |
</div>
|
203 |
|
204 |
+
</template>
|
205 |
<script type="text/javascript">
|
206 |
(function($){
|
207 |
|
includes/hooks.php
CHANGED
@@ -19,7 +19,7 @@ class acfe_hooks{
|
|
19 |
// Hooks
|
20 |
add_action('acf/save_post', array($this, 'pre_save_post'), 9);
|
21 |
add_action('acf/save_post', array($this, 'save_post'), 15);
|
22 |
-
add_action('acf/validate_save_post', array($this, 'validate_save_post'));
|
23 |
|
24 |
// Field Groups
|
25 |
add_filter('acf/load_field_groups', array($this, 'load_field_groups'), 100);
|
19 |
// Hooks
|
20 |
add_action('acf/save_post', array($this, 'pre_save_post'), 9);
|
21 |
add_action('acf/save_post', array($this, 'save_post'), 15);
|
22 |
+
add_action('acf/validate_save_post', array($this, 'validate_save_post'), 4);
|
23 |
|
24 |
// Field Groups
|
25 |
add_filter('acf/load_field_groups', array($this, 'load_field_groups'), 100);
|
includes/modules/author.php
CHANGED
@@ -65,20 +65,20 @@ class acfe_author{
|
|
65 |
add_meta_box('acfe-author', __('Author'), array($this, 'render_meta_box'), $post_type, 'side', 'core', array());
|
66 |
|
67 |
// generate postbox
|
68 |
-
$postboxes = array();
|
69 |
-
$postboxes[] = array(
|
70 |
-
|
71 |
-
);
|
72 |
|
73 |
// get postboxes
|
74 |
-
$data = acf_get_instance('ACF_Assets')->data;
|
75 |
-
$acf_postboxes = acf_maybe_get($data, 'postboxes', array());
|
76 |
-
$acf_postboxes = array_merge($acf_postboxes, $postboxes);
|
77 |
-
|
78 |
// localize postboxes
|
79 |
-
acf_localize_data(array(
|
80 |
-
|
81 |
-
));
|
82 |
|
83 |
}
|
84 |
|
65 |
add_meta_box('acfe-author', __('Author'), array($this, 'render_meta_box'), $post_type, 'side', 'core', array());
|
66 |
|
67 |
// generate postbox
|
68 |
+
// $postboxes = array();
|
69 |
+
// $postboxes[] = array(
|
70 |
+
// 'id' => 'acfe-author',
|
71 |
+
// );
|
72 |
|
73 |
// get postboxes
|
74 |
+
// $data = acf_get_instance('ACF_Assets')->data;
|
75 |
+
// $acf_postboxes = acf_maybe_get($data, 'postboxes', array());
|
76 |
+
// $acf_postboxes = array_merge($acf_postboxes, $postboxes);
|
77 |
+
|
78 |
// localize postboxes
|
79 |
+
// acf_localize_data(array(
|
80 |
+
// 'postboxes' => $acf_postboxes
|
81 |
+
// ));
|
82 |
|
83 |
}
|
84 |
|
includes/modules/dev.php
CHANGED
@@ -732,7 +732,7 @@ class acfe_dev{
|
|
732 |
}
|
733 |
|
734 |
// found db field group
|
735 |
-
if($field_group['ID']){
|
736 |
|
737 |
$post_status = get_post_status($field_group['ID']);
|
738 |
|
732 |
}
|
733 |
|
734 |
// found db field group
|
735 |
+
if($field_group && $field_group['ID']){
|
736 |
|
737 |
$post_status = get_post_status($field_group['ID']);
|
738 |
|
includes/modules/forms-front.php
CHANGED
@@ -360,9 +360,12 @@ class acfe_form_front{
|
|
360 |
acfe_setup_meta($_POST['acf'], 'acfe/form/load', true);
|
361 |
}
|
362 |
|
363 |
-
//
|
364 |
-
$
|
365 |
-
|
|
|
|
|
|
|
366 |
|
367 |
// Load
|
368 |
if(have_rows('acfe_form_actions', $form_id)):
|
@@ -379,11 +382,11 @@ class acfe_form_front{
|
|
379 |
|
380 |
}
|
381 |
|
382 |
-
$args = apply_filters("acfe/form/load/{$action}", $args, $
|
383 |
-
$args = apply_filters("acfe/form/load/{$action}/form={$form_name}", $args, $
|
384 |
|
385 |
if(!empty($alias)){
|
386 |
-
$args = apply_filters("acfe/form/load/{$action}/action={$alias}",
|
387 |
}
|
388 |
|
389 |
endwhile;
|
360 |
acfe_setup_meta($_POST['acf'], 'acfe/form/load', true);
|
361 |
}
|
362 |
|
363 |
+
// post id
|
364 |
+
$post_id = $args['post_id'];
|
365 |
+
|
366 |
+
// arguments
|
367 |
+
$args = apply_filters("acfe/form/load", $args, $post_id);
|
368 |
+
$args = apply_filters("acfe/form/load/form={$form_name}", $args, $post_id);
|
369 |
|
370 |
// Load
|
371 |
if(have_rows('acfe_form_actions', $form_id)):
|
382 |
|
383 |
}
|
384 |
|
385 |
+
$args = apply_filters("acfe/form/load/{$action}", $args, $post_id, $alias);
|
386 |
+
$args = apply_filters("acfe/form/load/{$action}/form={$form_name}", $args, $post_id, $alias);
|
387 |
|
388 |
if(!empty($alias)){
|
389 |
+
$args = apply_filters("acfe/form/load/{$action}/action={$alias}", $args, $post_id, $alias);
|
390 |
}
|
391 |
|
392 |
endwhile;
|
includes/modules/module.php
CHANGED
@@ -24,8 +24,7 @@ class acfe_dynamic_module{
|
|
24 |
|
25 |
$this->initialize();
|
26 |
|
27 |
-
if(!$this->active)
|
28 |
-
return;
|
29 |
|
30 |
$this->actions();
|
31 |
$this->add_local_field_group();
|
@@ -159,21 +158,20 @@ class acfe_dynamic_module{
|
|
159 |
|
160 |
$post_ids = acfe_maybe_get_REQUEST('post');
|
161 |
|
162 |
-
if(!$post_ids)
|
163 |
return $redirect;
|
|
|
164 |
|
165 |
foreach($this->tools as $tool_action){
|
166 |
|
167 |
-
if($action !== "export_{$tool_action}")
|
168 |
-
continue;
|
169 |
|
170 |
$keys = array();
|
171 |
foreach($post_ids as $post_id){
|
172 |
|
173 |
$name = $this->get_name($post_id);
|
174 |
|
175 |
-
if(!$name)
|
176 |
-
continue;
|
177 |
|
178 |
$keys[] = $name;
|
179 |
|
@@ -268,9 +266,8 @@ class acfe_dynamic_module{
|
|
268 |
var $title = $('#titlewrap #title');
|
269 |
|
270 |
// empty
|
271 |
-
if($title.val())
|
272 |
-
|
273 |
-
|
274 |
e.preventDefault();
|
275 |
|
276 |
alert('<?php echo $this->label; ?> is required.');
|
@@ -295,8 +292,9 @@ class acfe_dynamic_module{
|
|
295 |
*/
|
296 |
function _edit_columns($columns){
|
297 |
|
298 |
-
if(empty($this->columns))
|
299 |
return $columns;
|
|
|
300 |
|
301 |
$columns = array_merge(array('cb' => $columns['cb'], 'title' => $columns['title']), $this->columns);
|
302 |
|
@@ -333,8 +331,9 @@ class acfe_dynamic_module{
|
|
333 |
*/
|
334 |
function _edit_row_actions($actions, $post){
|
335 |
|
336 |
-
if(!in_array($post->post_status, array('publish', 'acf-disabled')))
|
337 |
return $actions;
|
|
|
338 |
|
339 |
$post_id = $post->ID;
|
340 |
$name = $this->get_name($post_id);
|
@@ -343,8 +342,10 @@ class acfe_dynamic_module{
|
|
343 |
|
344 |
// View
|
345 |
$view = $this->edit_row_actions_view($post, $name);
|
346 |
-
|
|
|
347 |
$actions['view'] = $view;
|
|
|
348 |
|
349 |
// Tools
|
350 |
foreach($this->tools as $action){
|
@@ -378,8 +379,9 @@ class acfe_dynamic_module{
|
|
378 |
*/
|
379 |
function _save_post($post_id){
|
380 |
|
381 |
-
if(!is_numeric($post_id) || get_post_type($post_id) !== $this->post_type)
|
382 |
return;
|
|
|
383 |
|
384 |
$this->save_post($post_id);
|
385 |
|
@@ -394,8 +396,9 @@ class acfe_dynamic_module{
|
|
394 |
*/
|
395 |
function _trashed_post($post_id){
|
396 |
|
397 |
-
if(get_post_type($post_id) !== $this->post_type)
|
398 |
return;
|
|
|
399 |
|
400 |
$this->trashed_post($post_id);
|
401 |
|
@@ -410,8 +413,9 @@ class acfe_dynamic_module{
|
|
410 |
*/
|
411 |
function _untrashed_post($post_id){
|
412 |
|
413 |
-
if(get_post_type($post_id) !== $this->post_type)
|
414 |
return;
|
|
|
415 |
|
416 |
$this->_save_post($post_id);
|
417 |
$this->untrashed_post($post_id);
|
@@ -456,13 +460,9 @@ class acfe_dynamic_module{
|
|
456 |
*/
|
457 |
function get_post_types($post_types, $args){
|
458 |
|
459 |
-
if(empty($post_types))
|
460 |
-
return $post_types;
|
461 |
-
|
462 |
foreach($post_types as $k => $post_type){
|
463 |
|
464 |
-
if($post_type !== $this->post_type)
|
465 |
-
continue;
|
466 |
|
467 |
unset($post_types[$k]);
|
468 |
|
24 |
|
25 |
$this->initialize();
|
26 |
|
27 |
+
if(!$this->active) return;
|
|
|
28 |
|
29 |
$this->actions();
|
30 |
$this->add_local_field_group();
|
158 |
|
159 |
$post_ids = acfe_maybe_get_REQUEST('post');
|
160 |
|
161 |
+
if(!$post_ids){
|
162 |
return $redirect;
|
163 |
+
}
|
164 |
|
165 |
foreach($this->tools as $tool_action){
|
166 |
|
167 |
+
if($action !== "export_{$tool_action}") continue;
|
|
|
168 |
|
169 |
$keys = array();
|
170 |
foreach($post_ids as $post_id){
|
171 |
|
172 |
$name = $this->get_name($post_id);
|
173 |
|
174 |
+
if(!$name) continue;
|
|
|
175 |
|
176 |
$keys[] = $name;
|
177 |
|
266 |
var $title = $('#titlewrap #title');
|
267 |
|
268 |
// empty
|
269 |
+
if($title.val()) return;
|
270 |
+
|
|
|
271 |
e.preventDefault();
|
272 |
|
273 |
alert('<?php echo $this->label; ?> is required.');
|
292 |
*/
|
293 |
function _edit_columns($columns){
|
294 |
|
295 |
+
if(empty($this->columns)){
|
296 |
return $columns;
|
297 |
+
}
|
298 |
|
299 |
$columns = array_merge(array('cb' => $columns['cb'], 'title' => $columns['title']), $this->columns);
|
300 |
|
331 |
*/
|
332 |
function _edit_row_actions($actions, $post){
|
333 |
|
334 |
+
if(!in_array($post->post_status, array('publish', 'acf-disabled'))){
|
335 |
return $actions;
|
336 |
+
}
|
337 |
|
338 |
$post_id = $post->ID;
|
339 |
$name = $this->get_name($post_id);
|
342 |
|
343 |
// View
|
344 |
$view = $this->edit_row_actions_view($post, $name);
|
345 |
+
|
346 |
+
if($view){
|
347 |
$actions['view'] = $view;
|
348 |
+
}
|
349 |
|
350 |
// Tools
|
351 |
foreach($this->tools as $action){
|
379 |
*/
|
380 |
function _save_post($post_id){
|
381 |
|
382 |
+
if(!is_numeric($post_id) || get_post_type($post_id) !== $this->post_type){
|
383 |
return;
|
384 |
+
}
|
385 |
|
386 |
$this->save_post($post_id);
|
387 |
|
396 |
*/
|
397 |
function _trashed_post($post_id){
|
398 |
|
399 |
+
if(get_post_type($post_id) !== $this->post_type){
|
400 |
return;
|
401 |
+
}
|
402 |
|
403 |
$this->trashed_post($post_id);
|
404 |
|
413 |
*/
|
414 |
function _untrashed_post($post_id){
|
415 |
|
416 |
+
if(get_post_type($post_id) !== $this->post_type){
|
417 |
return;
|
418 |
+
}
|
419 |
|
420 |
$this->_save_post($post_id);
|
421 |
$this->untrashed_post($post_id);
|
460 |
*/
|
461 |
function get_post_types($post_types, $args){
|
462 |
|
|
|
|
|
|
|
463 |
foreach($post_types as $k => $post_type){
|
464 |
|
465 |
+
if($post_type !== $this->post_type) continue;
|
|
|
466 |
|
467 |
unset($post_types[$k]);
|
468 |
|
includes/modules/options.class.php
CHANGED
@@ -48,12 +48,16 @@ class ACFE_Admin_Options_List extends WP_List_Table{
|
|
48 |
|
49 |
$sql .= ' ORDER BY option_id ASC';
|
50 |
|
51 |
-
}
|
52 |
-
|
53 |
-
else{
|
54 |
|
55 |
-
$
|
56 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
|
58 |
}
|
59 |
|
48 |
|
49 |
$sql .= ' ORDER BY option_id ASC';
|
50 |
|
51 |
+
}else{
|
|
|
|
|
52 |
|
53 |
+
$orderby = esc_sql($_REQUEST['orderby']);
|
54 |
+
$order = !empty($_REQUEST['order']) ? esc_sql($_REQUEST['order']) : 'ASC';
|
55 |
+
|
56 |
+
$orderby_order = sanitize_sql_orderby($orderby . ' ' . $order);
|
57 |
+
|
58 |
+
if($orderby_order){
|
59 |
+
$sql .= ' ORDER BY ' . $orderby_order;
|
60 |
+
}
|
61 |
|
62 |
}
|
63 |
|
includes/modules/single-meta.php
CHANGED
@@ -391,12 +391,17 @@ class acfe_single_meta{
|
|
391 |
|
392 |
// Enable compile to avoid multiple save
|
393 |
acf_enable_filter("acfe/single_meta/compile/{$revision_id}");
|
|
|
|
|
|
|
394 |
|
395 |
-
|
396 |
-
|
397 |
|
398 |
-
|
399 |
-
|
|
|
|
|
400 |
|
401 |
/**
|
402 |
* @var $type
|
391 |
|
392 |
// Enable compile to avoid multiple save
|
393 |
acf_enable_filter("acfe/single_meta/compile/{$revision_id}");
|
394 |
+
|
395 |
+
// get parent post id values when not in preview
|
396 |
+
if(acf_maybe_get_POST('wp-preview') !== 'dopreview'){
|
397 |
|
398 |
+
// Get acf meta
|
399 |
+
$value = acf_get_metadata($post_id, 'acf');
|
400 |
|
401 |
+
// Unslash for revision
|
402 |
+
$value = wp_unslash($value);
|
403 |
+
|
404 |
+
}
|
405 |
|
406 |
/**
|
407 |
* @var $type
|
lang/acfe-fr_FR.mo
CHANGED
Binary file
|
lang/acfe-fr_FR.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Advanced Custom Fields: Extended\n"
|
4 |
-
"POT-Creation-Date: 2021-
|
5 |
-
"PO-Revision-Date: 2021-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: https://www.acf-extended.com\n"
|
8 |
"Language: fr_FR\n"
|
@@ -10,7 +10,7 @@ msgstr ""
|
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
13 |
-
"X-Generator: Poedit 3.0\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
16 |
"X-Poedit-WPHeader: acf-extended.php\n"
|
@@ -22,26 +22,26 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPathExcluded-0: *.min.js\n"
|
23 |
"X-Poedit-SearchPathExcluded-1: .build\n"
|
24 |
|
25 |
-
#: assets/js/acfe-admin.js:
|
26 |
#: includes/modules/options.php:469 pro/includes/updates.php:361
|
27 |
msgid "Yes"
|
28 |
msgstr "Oui"
|
29 |
|
30 |
-
#: assets/js/acfe-admin.js:
|
31 |
#: includes/modules/options.php:468 pro/includes/updates.php:373
|
32 |
msgid "No"
|
33 |
msgstr "Non"
|
34 |
|
35 |
#: assets/js/acfe-input.js:106 assets/js/acfe-input.js:370
|
36 |
#: assets/js/acfe-input.js:734 assets/js/acfe-input.js:1511
|
37 |
-
#: assets/js/acfe-input.js:
|
38 |
#: includes/field-groups/field-group-meta.php:145
|
39 |
#: includes/fields-settings/data.php:81
|
40 |
#: includes/fields/field-flexible-content.php:616
|
41 |
#: includes/fields/field-flexible-content.php:622 includes/modules/dev.php:129
|
42 |
-
#: pro/assets/js/acfe-pro-admin.js:
|
43 |
#: pro/includes/field-groups/field-group-ui.php:237
|
44 |
-
#: pro/includes/fields/field-payment.php:
|
45 |
#: pro/includes/modules/dev.php:154 pro/includes/modules/dev.php:213
|
46 |
#: pro/includes/modules/dev.php:297 pro/includes/modules/dev.php:345
|
47 |
#: pro/includes/modules/dev.php:393 pro/includes/modules/dev.php:441
|
@@ -186,7 +186,7 @@ msgstr ""
|
|
186 |
"thème.php fichier ou l’inclure dans un fichier externe."
|
187 |
|
188 |
#: includes/admin/tools/module-import.php:24
|
189 |
-
#: pro/assets/js/acfe-pro-input.js:
|
190 |
#: pro/includes/admin/tools/settings-import.php:27
|
191 |
msgid "Select File"
|
192 |
msgstr "Choisir un fichier"
|
@@ -302,7 +302,7 @@ msgstr "Options"
|
|
302 |
msgid "Add New"
|
303 |
msgstr "Ajouter"
|
304 |
|
305 |
-
#: includes/assets.php:101 pro/assets/js/acfe-pro-input.js:
|
306 |
msgid "Read more"
|
307 |
msgstr "Lire la suite"
|
308 |
|
@@ -310,7 +310,7 @@ msgstr "Lire la suite"
|
|
310 |
msgid "Details"
|
311 |
msgstr "Details"
|
312 |
|
313 |
-
#: includes/assets.php:103 pro/assets/js/acfe-pro-admin.js:
|
314 |
msgid "Debug"
|
315 |
msgstr "Débogage"
|
316 |
|
@@ -409,7 +409,7 @@ msgid "Key"
|
|
409 |
msgstr "Clé"
|
410 |
|
411 |
#: includes/field-groups/field-group-meta.php:74
|
412 |
-
#: includes/fields/field-hidden.php:43 includes/modules/options.class.php:
|
413 |
#: pro/includes/field-groups/field-group-ui.php:172
|
414 |
#: pro/includes/fields/field-color-picker.php:132
|
415 |
#: pro/includes/fields/field-image-selector.php:147
|
@@ -509,12 +509,12 @@ msgid "Select %s"
|
|
509 |
msgstr "Sélectionner %s"
|
510 |
|
511 |
#: includes/field-groups/field-groups-local.php:224
|
512 |
-
#: includes/field-groups/field-groups.php:
|
513 |
msgid "Export PHP"
|
514 |
msgstr "Exporter php"
|
515 |
|
516 |
#: includes/field-groups/field-groups-local.php:225
|
517 |
-
#: includes/field-groups/field-groups.php:
|
518 |
msgid "Export Json"
|
519 |
msgstr "Exporter Json"
|
520 |
|
@@ -618,31 +618,31 @@ msgstr "Importer"
|
|
618 |
msgid "Review"
|
619 |
msgstr "Avis"
|
620 |
|
621 |
-
#: includes/field-groups/field-groups.php:
|
622 |
-
#: includes/field-groups/field-groups.php:
|
623 |
msgctxt "post status"
|
624 |
msgid "Disabled"
|
625 |
msgstr "Désactivé"
|
626 |
|
627 |
-
#: includes/field-groups/field-groups.php:
|
628 |
msgid "Alternative title"
|
629 |
msgstr "Titre alternatif"
|
630 |
|
631 |
-
#: includes/field-groups/field-groups.php:
|
632 |
-
#: includes/field-groups/field-groups.php:
|
633 |
-
#: includes/field-groups/field-groups.php:
|
634 |
msgid "Located"
|
635 |
msgstr "Situé"
|
636 |
|
637 |
-
#: includes/field-groups/field-groups.php:
|
638 |
msgid "in theme:"
|
639 |
msgstr "dans le thème:"
|
640 |
|
641 |
-
#: includes/field-groups/field-groups.php:
|
642 |
msgid "in plugin:"
|
643 |
msgstr "dans le plugin:"
|
644 |
|
645 |
-
#: includes/field-groups/field-groups.php:
|
646 |
msgid "in:"
|
647 |
msgstr "dans :"
|
648 |
|
@@ -772,7 +772,7 @@ msgstr "Ouvrir dans une nouvelle fenêtre/onglet"
|
|
772 |
#: includes/fields/field-advanced-link.php:422
|
773 |
#: includes/fields/field-clone.php:98 includes/fields/field-clone.php:145
|
774 |
#: includes/fields/field-group.php:83 includes/fields/field-group.php:129
|
775 |
-
#: includes/modules/dev.php:467 includes/modules/options.class.php:
|
776 |
#: includes/modules/options.php:485 includes/modules/ui-settings.php:63
|
777 |
#: includes/modules/ui-term.php:87 includes/modules/ui-user.php:154
|
778 |
#: pro/includes/fields/field-file.php:653
|
@@ -929,7 +929,7 @@ msgstr "Éditeur de code"
|
|
929 |
#: includes/fields/field-taxonomies.php:70
|
930 |
#: includes/fields/field-taxonomy-terms.php:840
|
931 |
#: includes/fields/field-user-roles.php:69
|
932 |
-
#: pro/includes/fields/field-block-types.php:
|
933 |
#: pro/includes/fields/field-countries.php:79
|
934 |
#: pro/includes/fields/field-currencies.php:79
|
935 |
#: pro/includes/fields/field-field-groups.php:89
|
@@ -944,7 +944,7 @@ msgstr "Éditeur de code"
|
|
944 |
#: pro/includes/fields/field-payment-cart.php:80
|
945 |
#: pro/includes/fields/field-phone-number.php:144
|
946 |
#: pro/includes/fields/field-post-formats.php:72
|
947 |
-
#: pro/includes/fields/field-templates.php:
|
948 |
msgid "Default Value"
|
949 |
msgstr "Valeur par défaut"
|
950 |
|
@@ -958,13 +958,13 @@ msgstr "Apparaît à la création d’un nouvel article"
|
|
958 |
#: includes/fields/field-taxonomies.php:176
|
959 |
#: includes/fields/field-taxonomy-terms.php:905
|
960 |
#: includes/fields/field-user-roles.php:162
|
961 |
-
#: pro/includes/fields/field-block-types.php:
|
962 |
#: pro/includes/fields/field-countries.php:258
|
963 |
#: pro/includes/fields/field-currencies.php:247
|
964 |
#: pro/includes/fields/field-date-picker.php:26
|
965 |
#: pro/includes/fields/field-date-picker.php:107
|
966 |
#: pro/includes/fields/field-date-picker.php:347
|
967 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
968 |
#: pro/includes/fields/field-field-groups.php:196
|
969 |
#: pro/includes/fields/field-field-types.php:197
|
970 |
#: pro/includes/fields/field-fields.php:207
|
@@ -977,7 +977,7 @@ msgstr "Apparaît à la création d’un nouvel article"
|
|
977 |
#: pro/includes/fields/field-payment-cart.php:176
|
978 |
#: pro/includes/fields/field-phone-number.php:152
|
979 |
#: pro/includes/fields/field-post-formats.php:164
|
980 |
-
#: pro/includes/fields/field-templates.php:
|
981 |
msgid "Placeholder"
|
982 |
msgstr "Etiquette"
|
983 |
|
@@ -987,7 +987,7 @@ msgstr "Etiquette"
|
|
987 |
#: includes/fields/field-slug.php:48 includes/fields/field-taxonomies.php:177
|
988 |
#: includes/fields/field-taxonomy-terms.php:906
|
989 |
#: includes/fields/field-user-roles.php:163
|
990 |
-
#: pro/includes/fields/field-block-types.php:
|
991 |
#: pro/includes/fields/field-countries.php:259
|
992 |
#: pro/includes/fields/field-currencies.php:248
|
993 |
#: pro/includes/fields/field-field-groups.php:197
|
@@ -1000,7 +1000,7 @@ msgstr "Etiquette"
|
|
1000 |
#: pro/includes/fields/field-options-pages.php:194
|
1001 |
#: pro/includes/fields/field-payment-cart.php:177
|
1002 |
#: pro/includes/fields/field-post-formats.php:165
|
1003 |
-
#: pro/includes/fields/field-templates.php:
|
1004 |
msgid "Appears within the input"
|
1005 |
msgstr "Apparaît dans l’entrée"
|
1006 |
|
@@ -1121,7 +1121,7 @@ msgstr "Coller des dispositions"
|
|
1121 |
#: includes/fields/field-taxonomies.php:290
|
1122 |
#: includes/fields/field-taxonomy-terms.php:1041
|
1123 |
#: includes/fields/field-user-roles.php:276
|
1124 |
-
#: pro/includes/fields/field-block-types.php:
|
1125 |
#: pro/includes/fields/field-countries.php:372
|
1126 |
#: pro/includes/fields/field-currencies.php:361
|
1127 |
#: pro/includes/fields/field-field-groups.php:310
|
@@ -1136,7 +1136,7 @@ msgstr "Coller des dispositions"
|
|
1136 |
#: pro/includes/fields/field-payment-cart.php:271
|
1137 |
#: pro/includes/fields/field-payment-selector.php:92
|
1138 |
#: pro/includes/fields/field-post-formats.php:278
|
1139 |
-
#: pro/includes/fields/field-templates.php:
|
1140 |
msgid "Layout"
|
1141 |
msgstr "Mise en page"
|
1142 |
|
@@ -1316,7 +1316,7 @@ msgstr "Faites glisser pour réorganiser"
|
|
1316 |
#: includes/modules/forms.php:100 includes/modules/forms.php:101
|
1317 |
#: includes/modules/forms.php:103 includes/modules/forms.php:105
|
1318 |
#: includes/modules/forms.php:180 pro/includes/locations/settings.php:76
|
1319 |
-
#: pro/includes/modules/templates.php:
|
1320 |
msgid "Forms"
|
1321 |
msgstr "Formulaires"
|
1322 |
|
@@ -1334,7 +1334,7 @@ msgstr "Tous les formulaires"
|
|
1334 |
#: includes/fields/field-taxonomies.php:56
|
1335 |
#: includes/fields/field-taxonomy-terms.php:826
|
1336 |
#: includes/fields/field-user-roles.php:55
|
1337 |
-
#: pro/includes/fields/field-block-types.php:
|
1338 |
#: pro/includes/fields/field-countries.php:66
|
1339 |
#: pro/includes/fields/field-currencies.php:66
|
1340 |
#: pro/includes/fields/field-field-groups.php:75
|
@@ -1346,7 +1346,7 @@ msgstr "Tous les formulaires"
|
|
1346 |
#: pro/includes/fields/field-menus.php:73
|
1347 |
#: pro/includes/fields/field-options-pages.php:73
|
1348 |
#: pro/includes/fields/field-post-formats.php:59
|
1349 |
-
#: pro/includes/fields/field-templates.php:
|
1350 |
msgid "Appearance"
|
1351 |
msgstr "Apparence"
|
1352 |
|
@@ -1356,7 +1356,7 @@ msgstr "Apparence"
|
|
1356 |
#: includes/fields/field-taxonomies.php:57
|
1357 |
#: includes/fields/field-taxonomy-terms.php:827
|
1358 |
#: includes/fields/field-user-roles.php:56
|
1359 |
-
#: pro/includes/fields/field-block-types.php:
|
1360 |
#: pro/includes/fields/field-countries.php:67
|
1361 |
#: pro/includes/fields/field-currencies.php:67
|
1362 |
#: pro/includes/fields/field-field-groups.php:76
|
@@ -1368,7 +1368,7 @@ msgstr "Apparence"
|
|
1368 |
#: pro/includes/fields/field-menus.php:74
|
1369 |
#: pro/includes/fields/field-options-pages.php:74
|
1370 |
#: pro/includes/fields/field-post-formats.php:60
|
1371 |
-
#: pro/includes/fields/field-templates.php:
|
1372 |
msgid "Select the appearance of this field"
|
1373 |
msgstr "Sélectionnez l'apparence de ce champ"
|
1374 |
|
@@ -1378,7 +1378,7 @@ msgstr "Sélectionnez l'apparence de ce champ"
|
|
1378 |
#: includes/fields/field-taxonomies.php:62
|
1379 |
#: includes/fields/field-taxonomy-terms.php:832
|
1380 |
#: includes/fields/field-user-roles.php:61
|
1381 |
-
#: pro/includes/fields/field-block-types.php:
|
1382 |
#: pro/includes/fields/field-countries.php:71
|
1383 |
#: pro/includes/fields/field-currencies.php:71
|
1384 |
#: pro/includes/fields/field-field-groups.php:81
|
@@ -1391,7 +1391,7 @@ msgstr "Sélectionnez l'apparence de ce champ"
|
|
1391 |
#: pro/includes/fields/field-options-pages.php:79
|
1392 |
#: pro/includes/fields/field-payment-cart.php:107
|
1393 |
#: pro/includes/fields/field-post-formats.php:64
|
1394 |
-
#: pro/includes/fields/field-templates.php:
|
1395 |
msgid "Checkbox"
|
1396 |
msgstr "Case à cocher"
|
1397 |
|
@@ -1401,7 +1401,7 @@ msgstr "Case à cocher"
|
|
1401 |
#: includes/fields/field-taxonomies.php:63
|
1402 |
#: includes/fields/field-taxonomy-terms.php:833
|
1403 |
#: includes/fields/field-user-roles.php:62
|
1404 |
-
#: pro/includes/fields/field-block-types.php:
|
1405 |
#: pro/includes/fields/field-countries.php:72
|
1406 |
#: pro/includes/fields/field-currencies.php:72
|
1407 |
#: pro/includes/fields/field-field-groups.php:82
|
@@ -1413,7 +1413,7 @@ msgstr "Case à cocher"
|
|
1413 |
#: pro/includes/fields/field-menus.php:80
|
1414 |
#: pro/includes/fields/field-options-pages.php:80
|
1415 |
#: pro/includes/fields/field-post-formats.php:65
|
1416 |
-
#: pro/includes/fields/field-templates.php:
|
1417 |
msgid "Radio Buttons"
|
1418 |
msgstr "Boutons radio"
|
1419 |
|
@@ -1423,7 +1423,7 @@ msgstr "Boutons radio"
|
|
1423 |
#: includes/fields/field-taxonomies.php:64
|
1424 |
#: includes/fields/field-taxonomy-terms.php:834
|
1425 |
#: includes/fields/field-user-roles.php:63
|
1426 |
-
#: pro/includes/fields/field-block-types.php:
|
1427 |
#: pro/includes/fields/field-countries.php:73
|
1428 |
#: pro/includes/fields/field-currencies.php:73
|
1429 |
#: pro/includes/fields/field-field-groups.php:83
|
@@ -1435,7 +1435,7 @@ msgstr "Boutons radio"
|
|
1435 |
#: pro/includes/fields/field-menus.php:81
|
1436 |
#: pro/includes/fields/field-options-pages.php:81
|
1437 |
#: pro/includes/fields/field-post-formats.php:66
|
1438 |
-
#: pro/includes/fields/field-templates.php:
|
1439 |
msgctxt "noun"
|
1440 |
msgid "Select"
|
1441 |
msgstr "Sélectionner"
|
@@ -1446,7 +1446,7 @@ msgstr "Sélectionner"
|
|
1446 |
#: includes/fields/field-taxonomies.php:71
|
1447 |
#: includes/fields/field-taxonomy-terms.php:841
|
1448 |
#: includes/fields/field-user-roles.php:70
|
1449 |
-
#: pro/includes/fields/field-block-types.php:
|
1450 |
#: pro/includes/fields/field-countries.php:80
|
1451 |
#: pro/includes/fields/field-currencies.php:80
|
1452 |
#: pro/includes/fields/field-field-groups.php:90
|
@@ -1460,7 +1460,7 @@ msgstr "Sélectionner"
|
|
1460 |
#: pro/includes/fields/field-options-pages.php:88
|
1461 |
#: pro/includes/fields/field-payment-cart.php:81
|
1462 |
#: pro/includes/fields/field-post-formats.php:73
|
1463 |
-
#: pro/includes/fields/field-templates.php:
|
1464 |
msgid "Enter each default value on a new line"
|
1465 |
msgstr "Entrer chaque valeur par défaut sur une nouvelle ligne"
|
1466 |
|
@@ -1469,7 +1469,7 @@ msgstr "Entrer chaque valeur par défaut sur une nouvelle ligne"
|
|
1469 |
#: includes/fields/field-post-types.php:78
|
1470 |
#: includes/fields/field-taxonomies.php:78
|
1471 |
#: includes/fields/field-taxonomy-terms.php:848
|
1472 |
-
#: pro/includes/fields/field-block-types.php:
|
1473 |
#: pro/includes/fields/field-color-picker.php:126
|
1474 |
#: pro/includes/fields/field-countries.php:87
|
1475 |
#: pro/includes/fields/field-currencies.php:102
|
@@ -1482,7 +1482,7 @@ msgstr "Entrer chaque valeur par défaut sur une nouvelle ligne"
|
|
1482 |
#: pro/includes/fields/field-menus.php:95
|
1483 |
#: pro/includes/fields/field-options-pages.php:95
|
1484 |
#: pro/includes/fields/field-phone-number.php:160
|
1485 |
-
#: pro/includes/fields/field-templates.php:
|
1486 |
msgid "Return Value"
|
1487 |
msgstr "Valeur de retour"
|
1488 |
|
@@ -1500,7 +1500,7 @@ msgstr "Nom du formulaire"
|
|
1500 |
#: includes/fields/field-taxonomies.php:91
|
1501 |
#: includes/fields/field-taxonomy-terms.php:880
|
1502 |
#: includes/fields/field-user-roles.php:77
|
1503 |
-
#: pro/includes/fields/field-block-types.php:
|
1504 |
#: pro/includes/fields/field-countries.php:174
|
1505 |
#: pro/includes/fields/field-currencies.php:163
|
1506 |
#: pro/includes/fields/field-field-groups.php:111
|
@@ -1514,7 +1514,7 @@ msgstr "Nom du formulaire"
|
|
1514 |
#: pro/includes/fields/field-options-pages.php:108
|
1515 |
#: pro/includes/fields/field-payment-cart.php:115
|
1516 |
#: pro/includes/fields/field-post-formats.php:80
|
1517 |
-
#: pro/includes/fields/field-templates.php:
|
1518 |
msgid "Allow Null?"
|
1519 |
msgstr "Autoriser une valeur « null »?"
|
1520 |
|
@@ -1524,7 +1524,7 @@ msgstr "Autoriser une valeur « null »?"
|
|
1524 |
#: includes/fields/field-taxonomies.php:180
|
1525 |
#: includes/fields/field-taxonomy-terms.php:909
|
1526 |
#: includes/fields/field-user-roles.php:166
|
1527 |
-
#: pro/includes/fields/field-block-types.php:
|
1528 |
#: pro/includes/fields/field-countries.php:262
|
1529 |
#: pro/includes/fields/field-currencies.php:251
|
1530 |
#: pro/includes/fields/field-field-groups.php:200
|
@@ -1537,7 +1537,7 @@ msgstr "Autoriser une valeur « null »?"
|
|
1537 |
#: pro/includes/fields/field-options-pages.php:197
|
1538 |
#: pro/includes/fields/field-payment-cart.php:180
|
1539 |
#: pro/includes/fields/field-post-formats.php:168
|
1540 |
-
#: pro/includes/fields/field-templates.php:
|
1541 |
msgctxt "verb"
|
1542 |
msgid "Select"
|
1543 |
msgstr "Sélectionner"
|
@@ -1549,7 +1549,7 @@ msgstr "Sélectionner"
|
|
1549 |
#: includes/fields/field-taxonomies.php:243
|
1550 |
#: includes/fields/field-taxonomy-terms.php:972
|
1551 |
#: includes/fields/field-user-roles.php:229
|
1552 |
-
#: pro/includes/fields/field-block-types.php:
|
1553 |
#: pro/includes/fields/field-countries.php:325
|
1554 |
#: pro/includes/fields/field-currencies.php:314
|
1555 |
#: pro/includes/fields/field-field-groups.php:263
|
@@ -1562,7 +1562,7 @@ msgstr "Sélectionner"
|
|
1562 |
#: pro/includes/fields/field-options-pages.php:260
|
1563 |
#: pro/includes/fields/field-payment-cart.php:243
|
1564 |
#: pro/includes/fields/field-post-formats.php:231
|
1565 |
-
#: pro/includes/fields/field-templates.php:
|
1566 |
msgid "Search Input Placeholder"
|
1567 |
msgstr "Espace réservé pour les entrées de recherche"
|
1568 |
|
@@ -1573,7 +1573,7 @@ msgstr "Espace réservé pour les entrées de recherche"
|
|
1573 |
#: includes/fields/field-taxonomies.php:244
|
1574 |
#: includes/fields/field-taxonomy-terms.php:973
|
1575 |
#: includes/fields/field-user-roles.php:230
|
1576 |
-
#: pro/includes/fields/field-block-types.php:
|
1577 |
#: pro/includes/fields/field-countries.php:326
|
1578 |
#: pro/includes/fields/field-currencies.php:315
|
1579 |
#: pro/includes/fields/field-field-groups.php:264
|
@@ -1586,7 +1586,7 @@ msgstr "Espace réservé pour les entrées de recherche"
|
|
1586 |
#: pro/includes/fields/field-options-pages.php:261
|
1587 |
#: pro/includes/fields/field-payment-cart.php:244
|
1588 |
#: pro/includes/fields/field-post-formats.php:232
|
1589 |
-
#: pro/includes/fields/field-templates.php:
|
1590 |
msgid "Appears within the search input"
|
1591 |
msgstr "Apparaît dans l’entrée de recherche"
|
1592 |
|
@@ -1596,7 +1596,7 @@ msgstr "Apparaît dans l’entrée de recherche"
|
|
1596 |
#: includes/fields/field-taxonomies.php:116
|
1597 |
#: includes/fields/field-taxonomy-terms.php:1000
|
1598 |
#: includes/fields/field-user-roles.php:102
|
1599 |
-
#: pro/includes/fields/field-block-types.php:
|
1600 |
#: pro/includes/fields/field-countries.php:199
|
1601 |
#: pro/includes/fields/field-currencies.php:188
|
1602 |
#: pro/includes/fields/field-field-groups.php:136
|
@@ -1610,7 +1610,7 @@ msgstr "Apparaît dans l’entrée de recherche"
|
|
1610 |
#: pro/includes/fields/field-options-pages.php:133
|
1611 |
#: pro/includes/fields/field-payment-cart.php:140
|
1612 |
#: pro/includes/fields/field-post-formats.php:105
|
1613 |
-
#: pro/includes/fields/field-templates.php:
|
1614 |
msgid "Select multiple values?"
|
1615 |
msgstr "Sélectionnez plusieurs valeurs?"
|
1616 |
|
@@ -1620,7 +1620,7 @@ msgstr "Sélectionnez plusieurs valeurs?"
|
|
1620 |
#: includes/fields/field-taxonomies.php:134
|
1621 |
#: includes/fields/field-taxonomy-terms.php:862
|
1622 |
#: includes/fields/field-user-roles.php:120
|
1623 |
-
#: pro/includes/fields/field-block-types.php:
|
1624 |
#: pro/includes/fields/field-countries.php:217
|
1625 |
#: pro/includes/fields/field-currencies.php:206
|
1626 |
#: pro/includes/fields/field-field-groups.php:154
|
@@ -1634,7 +1634,7 @@ msgstr "Sélectionnez plusieurs valeurs?"
|
|
1634 |
#: pro/includes/fields/field-payment-cart.php:158
|
1635 |
#: pro/includes/fields/field-payment-selector.php:112
|
1636 |
#: pro/includes/fields/field-post-formats.php:123
|
1637 |
-
#: pro/includes/fields/field-templates.php:
|
1638 |
msgid "Stylised UI"
|
1639 |
msgstr "UI Stylised"
|
1640 |
|
@@ -1644,7 +1644,7 @@ msgstr "UI Stylised"
|
|
1644 |
#: includes/fields/field-taxonomies.php:153
|
1645 |
#: includes/fields/field-taxonomy-terms.php:1018
|
1646 |
#: includes/fields/field-user-roles.php:139
|
1647 |
-
#: pro/includes/fields/field-block-types.php:
|
1648 |
#: pro/includes/fields/field-countries.php:235
|
1649 |
#: pro/includes/fields/field-currencies.php:224
|
1650 |
#: pro/includes/fields/field-field-groups.php:173
|
@@ -1656,7 +1656,7 @@ msgstr "UI Stylised"
|
|
1656 |
#: pro/includes/fields/field-menus.php:171
|
1657 |
#: pro/includes/fields/field-options-pages.php:170
|
1658 |
#: pro/includes/fields/field-post-formats.php:141
|
1659 |
-
#: pro/includes/fields/field-templates.php:
|
1660 |
msgid "Use AJAX to lazy load choices?"
|
1661 |
msgstr "Utilisez AJAX pour des choix de charge paresseux?"
|
1662 |
|
@@ -1665,7 +1665,7 @@ msgstr "Utilisez AJAX pour des choix de charge paresseux?"
|
|
1665 |
#: includes/fields/field-post-types.php:271
|
1666 |
#: includes/fields/field-taxonomies.php:271
|
1667 |
#: includes/fields/field-user-roles.php:257
|
1668 |
-
#: pro/includes/fields/field-block-types.php:
|
1669 |
#: pro/includes/fields/field-countries.php:353
|
1670 |
#: pro/includes/fields/field-currencies.php:342
|
1671 |
#: pro/includes/fields/field-field-groups.php:291
|
@@ -1677,7 +1677,7 @@ msgstr "Utilisez AJAX pour des choix de charge paresseux?"
|
|
1677 |
#: pro/includes/fields/field-menus.php:289
|
1678 |
#: pro/includes/fields/field-options-pages.php:288
|
1679 |
#: pro/includes/fields/field-post-formats.php:259
|
1680 |
-
#: pro/includes/fields/field-templates.php:
|
1681 |
msgid "Other"
|
1682 |
msgstr "Autre"
|
1683 |
|
@@ -1686,7 +1686,7 @@ msgstr "Autre"
|
|
1686 |
#: includes/fields/field-post-types.php:276
|
1687 |
#: includes/fields/field-taxonomies.php:276
|
1688 |
#: includes/fields/field-user-roles.php:262
|
1689 |
-
#: pro/includes/fields/field-block-types.php:
|
1690 |
#: pro/includes/fields/field-countries.php:358
|
1691 |
#: pro/includes/fields/field-currencies.php:347
|
1692 |
#: pro/includes/fields/field-field-groups.php:296
|
@@ -1698,7 +1698,7 @@ msgstr "Autre"
|
|
1698 |
#: pro/includes/fields/field-menus.php:294
|
1699 |
#: pro/includes/fields/field-options-pages.php:293
|
1700 |
#: pro/includes/fields/field-post-formats.php:264
|
1701 |
-
#: pro/includes/fields/field-templates.php:
|
1702 |
msgid "Add 'other' choice to allow for custom values"
|
1703 |
msgstr ""
|
1704 |
"Ajouter 'les autres' pour un autre choix afin d'autoriser les valeurs "
|
@@ -1718,7 +1718,7 @@ msgstr "Enregistrer 'les autres' pour les valeurs dans les choix du champ"
|
|
1718 |
#: includes/fields/field-taxonomies.php:296
|
1719 |
#: includes/fields/field-taxonomy-terms.php:1047
|
1720 |
#: includes/fields/field-user-roles.php:282
|
1721 |
-
#: pro/includes/fields/field-block-types.php:
|
1722 |
#: pro/includes/fields/field-countries.php:378
|
1723 |
#: pro/includes/fields/field-currencies.php:367
|
1724 |
#: pro/includes/fields/field-field-groups.php:316
|
@@ -1733,7 +1733,7 @@ msgstr "Enregistrer 'les autres' pour les valeurs dans les choix du champ"
|
|
1733 |
#: pro/includes/fields/field-payment-cart.php:277
|
1734 |
#: pro/includes/fields/field-payment-selector.php:98
|
1735 |
#: pro/includes/fields/field-post-formats.php:284
|
1736 |
-
#: pro/includes/fields/field-templates.php:
|
1737 |
msgid "Vertical"
|
1738 |
msgstr "Vertical"
|
1739 |
|
@@ -1743,7 +1743,7 @@ msgstr "Vertical"
|
|
1743 |
#: includes/fields/field-taxonomies.php:297
|
1744 |
#: includes/fields/field-taxonomy-terms.php:1048
|
1745 |
#: includes/fields/field-user-roles.php:283
|
1746 |
-
#: pro/includes/fields/field-block-types.php:
|
1747 |
#: pro/includes/fields/field-countries.php:379
|
1748 |
#: pro/includes/fields/field-currencies.php:368
|
1749 |
#: pro/includes/fields/field-field-groups.php:317
|
@@ -1758,7 +1758,7 @@ msgstr "Vertical"
|
|
1758 |
#: pro/includes/fields/field-payment-cart.php:278
|
1759 |
#: pro/includes/fields/field-payment-selector.php:99
|
1760 |
#: pro/includes/fields/field-post-formats.php:285
|
1761 |
-
#: pro/includes/fields/field-templates.php:
|
1762 |
msgid "Horizontal"
|
1763 |
msgstr "Horizontal"
|
1764 |
|
@@ -1768,7 +1768,7 @@ msgstr "Horizontal"
|
|
1768 |
#: includes/fields/field-taxonomies.php:319
|
1769 |
#: includes/fields/field-taxonomy-terms.php:1070
|
1770 |
#: includes/fields/field-user-roles.php:305
|
1771 |
-
#: pro/includes/fields/field-block-types.php:
|
1772 |
#: pro/includes/fields/field-countries.php:401
|
1773 |
#: pro/includes/fields/field-currencies.php:390
|
1774 |
#: pro/includes/fields/field-field-groups.php:339
|
@@ -1781,7 +1781,7 @@ msgstr "Horizontal"
|
|
1781 |
#: pro/includes/fields/field-options-pages.php:336
|
1782 |
#: pro/includes/fields/field-payment-cart.php:300
|
1783 |
#: pro/includes/fields/field-post-formats.php:307
|
1784 |
-
#: pro/includes/fields/field-templates.php:
|
1785 |
msgid "Toggle"
|
1786 |
msgstr "Basculer"
|
1787 |
|
@@ -1791,7 +1791,7 @@ msgstr "Basculer"
|
|
1791 |
#: includes/fields/field-taxonomies.php:320
|
1792 |
#: includes/fields/field-taxonomy-terms.php:1071
|
1793 |
#: includes/fields/field-user-roles.php:306
|
1794 |
-
#: pro/includes/fields/field-block-types.php:
|
1795 |
#: pro/includes/fields/field-countries.php:402
|
1796 |
#: pro/includes/fields/field-currencies.php:391
|
1797 |
#: pro/includes/fields/field-field-groups.php:340
|
@@ -1804,7 +1804,7 @@ msgstr "Basculer"
|
|
1804 |
#: pro/includes/fields/field-options-pages.php:337
|
1805 |
#: pro/includes/fields/field-payment-cart.php:301
|
1806 |
#: pro/includes/fields/field-post-formats.php:308
|
1807 |
-
#: pro/includes/fields/field-templates.php:
|
1808 |
msgid "Prepend an extra checkbox to toggle all choices"
|
1809 |
msgstr "Ajouter une case supplémentaire pour sélectionner tous les choix"
|
1810 |
|
@@ -1813,7 +1813,7 @@ msgstr "Ajouter une case supplémentaire pour sélectionner tous les choix"
|
|
1813 |
#: includes/fields/field-post-types.php:337 includes/fields/field-select.php:49
|
1814 |
#: includes/fields/field-taxonomies.php:337
|
1815 |
#: includes/fields/field-user-roles.php:323
|
1816 |
-
#: pro/includes/fields/field-block-types.php:
|
1817 |
#: pro/includes/fields/field-countries.php:419
|
1818 |
#: pro/includes/fields/field-currencies.php:408
|
1819 |
#: pro/includes/fields/field-field-groups.php:357
|
@@ -1825,7 +1825,7 @@ msgstr "Ajouter une case supplémentaire pour sélectionner tous les choix"
|
|
1825 |
#: pro/includes/fields/field-menus.php:355
|
1826 |
#: pro/includes/fields/field-options-pages.php:354
|
1827 |
#: pro/includes/fields/field-post-formats.php:325
|
1828 |
-
#: pro/includes/fields/field-templates.php:
|
1829 |
msgid "Allow Custom"
|
1830 |
msgstr "Autoriser les mots clés personnalisés"
|
1831 |
|
@@ -1834,7 +1834,7 @@ msgstr "Autoriser les mots clés personnalisés"
|
|
1834 |
#: includes/fields/field-post-types.php:342 includes/fields/field-select.php:54
|
1835 |
#: includes/fields/field-taxonomies.php:342
|
1836 |
#: includes/fields/field-user-roles.php:328
|
1837 |
-
#: pro/includes/fields/field-block-types.php:
|
1838 |
#: pro/includes/fields/field-countries.php:424
|
1839 |
#: pro/includes/fields/field-currencies.php:413
|
1840 |
#: pro/includes/fields/field-field-groups.php:362
|
@@ -1846,7 +1846,7 @@ msgstr "Autoriser les mots clés personnalisés"
|
|
1846 |
#: pro/includes/fields/field-menus.php:360
|
1847 |
#: pro/includes/fields/field-options-pages.php:359
|
1848 |
#: pro/includes/fields/field-post-formats.php:330
|
1849 |
-
#: pro/includes/fields/field-templates.php:
|
1850 |
msgid "Allow 'custom' values to be added"
|
1851 |
msgstr "Autoriser l’ajout de valeurs « personnalisées »"
|
1852 |
|
@@ -2013,12 +2013,12 @@ msgstr ""
|
|
2013 |
|
2014 |
#: includes/fields/field-recaptcha.php:242
|
2015 |
#: includes/fields/field-recaptcha.php:248
|
2016 |
-
#: pro/includes/fields/field-payment.php:
|
2017 |
-
#: pro/includes/fields/field-payment.php:
|
2018 |
-
#: pro/includes/fields/field-payment.php:
|
2019 |
-
#: pro/includes/fields/field-payment.php:
|
2020 |
-
#: pro/includes/fields/field-payment.php:
|
2021 |
-
#: pro/includes/fields/field-payment.php:
|
2022 |
msgid "An error has occured"
|
2023 |
msgstr "Une erreur s’est produite"
|
2024 |
|
@@ -2070,7 +2070,7 @@ msgstr "Objet taxonomie"
|
|
2070 |
|
2071 |
#: includes/fields/field-taxonomies.php:84
|
2072 |
msgid "Taxonomy name"
|
2073 |
-
msgstr "Nom de la
|
2074 |
|
2075 |
#: includes/fields/field-taxonomy-terms.php:16
|
2076 |
msgid "Taxonomy Terms"
|
@@ -2190,7 +2190,7 @@ msgid "Author"
|
|
2190 |
msgstr "Auteur"
|
2191 |
|
2192 |
#: includes/modules/block-types.php:24 includes/modules/forms.php:25
|
2193 |
-
#: includes/modules/options.class.php:
|
2194 |
#: includes/modules/post-types.php:24 includes/modules/taxonomies.php:24
|
2195 |
#: pro/includes/fields/field-post-field.php:42
|
2196 |
msgid "Name"
|
@@ -2216,7 +2216,7 @@ msgstr "Meta supprimées"
|
|
2216 |
|
2217 |
#: includes/modules/dev.php:129 includes/modules/options-pages.php:315
|
2218 |
#: includes/modules/post-types.php:175 includes/modules/taxonomies.php:262
|
2219 |
-
#: pro/includes/fields/field-payment.php:
|
2220 |
#: pro/includes/modules/dev.php:154 pro/includes/modules/dev.php:213
|
2221 |
#: pro/includes/modules/dev.php:297 pro/includes/modules/dev.php:345
|
2222 |
#: pro/includes/modules/dev.php:393 pro/includes/modules/dev.php:441
|
@@ -2225,8 +2225,8 @@ msgid "View"
|
|
2225 |
msgstr "Voir"
|
2226 |
|
2227 |
#: includes/modules/dev.php:472 includes/modules/dev.php:515
|
2228 |
-
#: includes/modules/options.class.php:
|
2229 |
-
#: includes/modules/options.class.php:
|
2230 |
msgid "Delete"
|
2231 |
msgstr "Supprimer"
|
2232 |
|
@@ -2248,7 +2248,7 @@ msgstr "vide"
|
|
2248 |
|
2249 |
#: includes/modules/forms-action-custom.php:82
|
2250 |
#: includes/modules/forms-action-email.php:310
|
2251 |
-
#: includes/modules/forms-action-post.php:
|
2252 |
#: includes/modules/forms-action-redirect.php:87
|
2253 |
#: includes/modules/forms-action-term.php:486
|
2254 |
#: includes/modules/forms-action-user.php:982 includes/modules/forms.php:174
|
@@ -2358,22 +2358,22 @@ msgstr "Article mis à jour"
|
|
2358 |
msgid "Input is invalid: Must be a json string or an array."
|
2359 |
msgstr "L’entrée n’est pas valide : doit être une chaîne json ou un tableau."
|
2360 |
|
2361 |
-
#: includes/modules/module.php:
|
2362 |
#, php-format
|
2363 |
msgid "Active <span class=\"count\">(%s)</span>"
|
2364 |
msgid_plural "Active <span class=\"count\">(%s)</span>"
|
2365 |
msgstr[0] "Actif <span class=\"count\">(%s)</span>"
|
2366 |
msgstr[1] "Actif <span class=\"count\">(%s)</span>"
|
2367 |
|
2368 |
-
#: includes/modules/module.php:
|
2369 |
msgid "Export "
|
2370 |
msgstr "Exporter "
|
2371 |
|
2372 |
-
#: includes/modules/module.php:
|
2373 |
msgid "Active"
|
2374 |
msgstr "Actif"
|
2375 |
|
2376 |
-
#: includes/modules/module.php:
|
2377 |
msgid "Inactive"
|
2378 |
msgstr "Inactif"
|
2379 |
|
@@ -2385,7 +2385,7 @@ msgstr "Slug de menu"
|
|
2385 |
msgid "Post ID"
|
2386 |
msgstr "ID de l'article"
|
2387 |
|
2388 |
-
#: includes/modules/options-pages.php:26 includes/modules/options.class.php:
|
2389 |
#: includes/modules/options.php:453
|
2390 |
msgid "Autoload"
|
2391 |
msgstr "Chargement automatique"
|
@@ -2402,11 +2402,11 @@ msgstr "Options de la Page"
|
|
2402 |
msgid "Option"
|
2403 |
msgstr "Option"
|
2404 |
|
2405 |
-
#: includes/modules/options.class.php:
|
2406 |
msgid "No options avaliable."
|
2407 |
msgstr "Aucune option disponible."
|
2408 |
|
2409 |
-
#: includes/modules/options.class.php:
|
2410 |
#: pro/includes/modules/dev.php:145 pro/includes/modules/dev.php:204
|
2411 |
#: pro/includes/modules/dev.php:255 pro/includes/modules/dev.php:292
|
2412 |
#: pro/includes/modules/dev.php:340 pro/includes/modules/dev.php:388
|
@@ -2503,34 +2503,34 @@ msgstr "ou"
|
|
2503 |
msgid "Clear"
|
2504 |
msgstr "Effacer"
|
2505 |
|
2506 |
-
#: pro/assets/js/acfe-pro-input.js:
|
2507 |
msgid "Maximum items reached ({max} items)"
|
2508 |
msgstr "Nombre maximal d’objets atteints ({max} éléments)"
|
2509 |
|
2510 |
-
#: pro/assets/js/acfe-pro-input.js:
|
2511 |
msgid "Edit File"
|
2512 |
msgstr "Modifier le fichier"
|
2513 |
|
2514 |
-
#: pro/assets/js/acfe-pro-input.js:
|
2515 |
msgid "Update File"
|
2516 |
msgstr "Mettre à jour le fichier"
|
2517 |
|
2518 |
-
#: pro/assets/js/acfe-pro-input.js:
|
2519 |
msgid "This field has a limit of {max} {label} {identifier}"
|
2520 |
msgstr "Ce champ a une limite de {Max} {label} {identificateur}"
|
2521 |
|
2522 |
-
#: pro/assets/js/acfe-pro-input.js:
|
2523 |
#: pro/includes/fields/field-flexible-content-locations.php:180
|
2524 |
msgid "layout"
|
2525 |
msgid_plural "layouts"
|
2526 |
msgstr[0] "disposition"
|
2527 |
msgstr[1] "mises en page"
|
2528 |
|
2529 |
-
#: pro/assets/js/acfe-pro-input.js:
|
2530 |
msgid "OK"
|
2531 |
msgstr "OK"
|
2532 |
|
2533 |
-
#: pro/assets/js/acfe-pro-input.js:
|
2534 |
msgid "Cancel"
|
2535 |
msgstr "Annuler"
|
2536 |
|
@@ -2627,19 +2627,19 @@ msgstr "Champ de visibilité"
|
|
2627 |
msgid "Block Types"
|
2628 |
msgstr "Types de bloc"
|
2629 |
|
2630 |
-
#: pro/includes/fields/field-block-types.php:
|
2631 |
msgid "Allow Block Types"
|
2632 |
msgstr "Autoriser les types de blocs"
|
2633 |
|
2634 |
-
#: pro/includes/fields/field-block-types.php:
|
2635 |
msgid "All block types"
|
2636 |
msgstr "Tous types de blocs"
|
2637 |
|
2638 |
-
#: pro/includes/fields/field-block-types.php:
|
2639 |
msgid "Block type object"
|
2640 |
msgstr "Objet de type bloc"
|
2641 |
|
2642 |
-
#: pro/includes/fields/field-block-types.php:
|
2643 |
msgid "Block type name"
|
2644 |
msgstr "Nom du type de bloc"
|
2645 |
|
@@ -2683,7 +2683,7 @@ msgid "Text Input"
|
|
2683 |
msgstr "Saisie de texte"
|
2684 |
|
2685 |
#: pro/includes/fields/field-color-picker.php:207
|
2686 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2687 |
msgid "Allow null"
|
2688 |
msgstr "Autoriser une valeur « null »"
|
2689 |
|
@@ -2757,7 +2757,7 @@ msgstr "Code du pays"
|
|
2757 |
|
2758 |
#: pro/includes/fields/field-countries.php:113
|
2759 |
#: pro/includes/fields/field-currencies.php:87
|
2760 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2761 |
#: pro/includes/fields/field-image-sizes.php:116
|
2762 |
#: pro/includes/fields/field-languages.php:131
|
2763 |
#: pro/includes/fields/field-payment-cart.php:88
|
@@ -2766,7 +2766,7 @@ msgstr "Format d’affichage"
|
|
2766 |
|
2767 |
#: pro/includes/fields/field-countries.php:114
|
2768 |
#: pro/includes/fields/field-currencies.php:88
|
2769 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2770 |
#: pro/includes/fields/field-languages.php:132
|
2771 |
#: pro/includes/fields/field-payment-cart.php:89
|
2772 |
msgid "The format displayed when editing a post"
|
@@ -2774,8 +2774,8 @@ msgstr "Le format affiché lors de la modification d'un poste"
|
|
2774 |
|
2775 |
#: pro/includes/fields/field-countries.php:122
|
2776 |
#: pro/includes/fields/field-currencies.php:96
|
2777 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2778 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2779 |
#: pro/includes/fields/field-languages.php:140
|
2780 |
#: pro/includes/fields/field-payment-cart.php:96
|
2781 |
msgid "Custom:"
|
@@ -2836,13 +2836,13 @@ msgstr "Regrouper les monnaies par continent"
|
|
2836 |
|
2837 |
#: pro/includes/fields/field-date-picker.php:35
|
2838 |
#: pro/includes/fields/field-date-picker.php:117
|
2839 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2840 |
msgid "Date Restriction"
|
2841 |
msgstr "Date Restriction"
|
2842 |
|
2843 |
#: pro/includes/fields/field-date-picker.php:60
|
2844 |
#: pro/includes/fields/field-date-picker.php:167
|
2845 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2846 |
msgid "No Weekends"
|
2847 |
msgstr "Pas de week-end"
|
2848 |
|
@@ -2870,35 +2870,39 @@ msgstr "Restriction des secondes"
|
|
2870 |
msgid "Date Range Picker"
|
2871 |
msgstr "Sélecteur de plages de dates"
|
2872 |
|
2873 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2874 |
msgid "Return Format"
|
2875 |
msgstr "Format de retour"
|
2876 |
|
2877 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2878 |
msgid "The format returned via template functions"
|
2879 |
msgstr "Le format renvoyé par l'intermédiaire des fonctions de modèle"
|
2880 |
|
2881 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2882 |
msgid "Week Starts On"
|
2883 |
msgstr "La semaine débute le"
|
2884 |
|
2885 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2886 |
msgid "Separator"
|
2887 |
msgstr "Séparateur"
|
2888 |
|
2889 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2890 |
msgid "Default Date"
|
2891 |
msgstr "Date par Défaut"
|
2892 |
|
2893 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2894 |
msgid "Range Restriction"
|
2895 |
msgstr "Restriction de plage"
|
2896 |
|
2897 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2898 |
msgid "Custom Ranges"
|
2899 |
msgstr "Plages personnalisées"
|
2900 |
|
2901 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
|
|
|
|
|
|
|
|
2902 |
msgid "Auto Close on Selection"
|
2903 |
msgstr "Fermeture automatique lors de la sélection"
|
2904 |
|
@@ -3337,8 +3341,8 @@ msgid "Choose your payment gateways"
|
|
3337 |
msgstr "Choisissez vos passerelles de paiement"
|
3338 |
|
3339 |
#: pro/includes/fields/field-payment.php:79
|
3340 |
-
#: pro/includes/fields/field-payment.php:
|
3341 |
-
#: pro/includes/fields/field-payment.php:
|
3342 |
msgid "Amount"
|
3343 |
msgstr "Montant"
|
3344 |
|
@@ -3426,8 +3430,6 @@ msgid "Your PayPal Production Credentials"
|
|
3426 |
msgstr "Vos informations d’identification de production PayPal"
|
3427 |
|
3428 |
#: pro/includes/fields/field-payment.php:314
|
3429 |
-
#: pro/includes/fields/field-payment.php:417
|
3430 |
-
#: pro/includes/fields/field-payment.php:1151
|
3431 |
msgid "Mode"
|
3432 |
msgstr "Mode"
|
3433 |
|
@@ -3436,62 +3438,60 @@ msgid "Switch API mode"
|
|
3436 |
msgstr "Changer de mode API"
|
3437 |
|
3438 |
#: pro/includes/fields/field-payment.php:320
|
3439 |
-
#: pro/includes/fields/field-payment.php:
|
|
|
|
|
3440 |
msgid "Test"
|
3441 |
msgstr "Test"
|
3442 |
|
3443 |
#: pro/includes/fields/field-payment.php:321
|
3444 |
-
#: pro/includes/fields/field-payment.php:
|
3445 |
msgid "Production"
|
3446 |
msgstr "Production"
|
3447 |
|
3448 |
-
#: pro/includes/fields/field-payment.php:
|
3449 |
-
|
3450 |
-
msgstr "Les données meta du paiement sont invalides."
|
3451 |
-
|
3452 |
-
#: pro/includes/fields/field-payment.php:412
|
3453 |
-
#: pro/includes/fields/field-payment.php:1148
|
3454 |
msgid "Gateway"
|
3455 |
msgstr "Passerelle"
|
3456 |
|
3457 |
-
#: pro/includes/fields/field-payment.php:
|
3458 |
-
#: pro/includes/fields/field-payment.php:
|
3459 |
msgid "Items"
|
3460 |
msgstr "Articles"
|
3461 |
|
3462 |
-
#: pro/includes/fields/field-payment.php:
|
3463 |
-
#: pro/includes/fields/field-payment.php:
|
3464 |
#: pro/includes/fields/field-post-field.php:38
|
3465 |
msgid "Date"
|
3466 |
msgstr "Date"
|
3467 |
|
3468 |
-
#: pro/includes/fields/field-payment.php:
|
3469 |
-
#: pro/includes/fields/field-payment.php:
|
3470 |
msgid "IP Address"
|
3471 |
msgstr "Adresse IP"
|
3472 |
|
3473 |
-
#: pro/includes/fields/field-payment.php:
|
3474 |
-
#: pro/includes/fields/field-payment.php:
|
3475 |
msgid "Payment ID"
|
3476 |
msgstr "ID du Paiement"
|
3477 |
|
3478 |
-
#: pro/includes/fields/field-payment.php:
|
3479 |
msgid "Payment Object"
|
3480 |
msgstr "Objet de Paiement"
|
3481 |
|
3482 |
-
#: pro/includes/fields/field-payment.php:
|
3483 |
msgid "PayPal Checkout"
|
3484 |
msgstr "Paiement PayPal"
|
3485 |
|
3486 |
-
#: pro/includes/fields/field-payment.php:
|
3487 |
msgid "Amount can't be null"
|
3488 |
msgstr "Le montant ne peut pas être nul"
|
3489 |
|
3490 |
-
#: pro/includes/fields/field-payment.php:
|
3491 |
msgid "Payment failed"
|
3492 |
msgstr "Échec de paiement"
|
3493 |
|
3494 |
-
#: pro/includes/fields/field-payment.php:
|
3495 |
msgid "Your card number is invalid"
|
3496 |
msgstr "Votre numéro de carte n’est pas valide"
|
3497 |
|
@@ -3662,114 +3662,122 @@ msgid "No Preference"
|
|
3662 |
msgstr "Pas de préférence"
|
3663 |
|
3664 |
#: pro/includes/fields/field-templates.php:13
|
3665 |
-
#: pro/includes/modules/templates.php:
|
3666 |
-
#: pro/includes/modules/templates.php:
|
3667 |
msgid "Templates"
|
3668 |
msgstr "Modèles"
|
3669 |
|
3670 |
-
#: pro/includes/fields/field-templates.php:
|
3671 |
msgid "Allow Templates"
|
3672 |
msgstr "Autoriser les modèles"
|
3673 |
|
3674 |
-
#: pro/includes/fields/field-templates.php:
|
3675 |
msgid "All templates"
|
3676 |
msgstr "Tous les modèles"
|
3677 |
|
3678 |
-
#: pro/includes/fields/field-templates.php:
|
3679 |
msgid "Template ID"
|
3680 |
msgstr "ID du Template"
|
3681 |
|
3682 |
-
#: pro/includes/fields/field-templates.php:
|
3683 |
msgid "Template name"
|
3684 |
msgstr "Nom du modèle"
|
3685 |
|
3686 |
#: pro/includes/fields/field-wysiwyg.php:38
|
3687 |
-
|
3688 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3689 |
msgid "Height"
|
3690 |
msgstr "Hauteur"
|
3691 |
|
3692 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3693 |
msgid "Valid Elements"
|
3694 |
msgstr "Éléments valides"
|
3695 |
|
3696 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3697 |
msgid "Set custom valid HTML tags"
|
3698 |
msgstr "Définir des balises HTML valides personnalisées"
|
3699 |
|
3700 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3701 |
msgid "Custom Style"
|
3702 |
msgstr "Style personnalisé"
|
3703 |
|
3704 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3705 |
msgid "Add multiple files separated with comma"
|
3706 |
msgstr "Ajouter plusieurs fichiers séparés par une virgule"
|
3707 |
|
3708 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3709 |
msgid "Disable WP Style"
|
3710 |
msgstr "Désactiver le style WP"
|
3711 |
|
3712 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3713 |
msgid "Remove TinyMCE builtin stylesheets"
|
3714 |
msgstr "Supprimer les feuilles de style intégrées TinyMCE"
|
3715 |
|
3716 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3717 |
msgid "Autoresize"
|
3718 |
msgstr "Mise en forme automatique"
|
3719 |
|
3720 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3721 |
msgid "Height will be based on the editor content"
|
3722 |
msgstr "La hauteur sera basée sur le contenu de l’éditeur"
|
3723 |
|
3724 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3725 |
msgid "Disable Resize"
|
3726 |
msgstr "Désactiver le redimensionnement"
|
3727 |
|
3728 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3729 |
msgid "Remove the editor resize functionality"
|
3730 |
msgstr "Supprimer la fonctionnalité de redimensionnement de l’éditeur"
|
3731 |
|
3732 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3733 |
msgid "Disable Path"
|
3734 |
msgstr "Désactiver le chemin d’accès"
|
3735 |
|
3736 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3737 |
msgid "Hide the editor path status bar"
|
3738 |
msgstr "Masquer la barre d’état du chemin d’accès de l’éditeur"
|
3739 |
|
3740 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3741 |
msgid "Menu Bar"
|
3742 |
msgstr "Barre de menu"
|
3743 |
|
3744 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3745 |
msgid "Show the menu bar on top of the editor"
|
3746 |
msgstr "Afficher la barre de menus en haut de l’éditeur"
|
3747 |
|
3748 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3749 |
msgid "Transparent Editor"
|
3750 |
msgstr "Éditeur transparent"
|
3751 |
|
3752 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3753 |
msgid "Set the editor's background as transparent"
|
3754 |
msgstr "Définir l’arrière-plan de l’éditeur comme transparent"
|
3755 |
|
3756 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3757 |
msgid "Merge Toolbars"
|
3758 |
msgstr "Fusionner les barres d’outils"
|
3759 |
|
3760 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3761 |
msgid "Glue editor toolbars together"
|
3762 |
msgstr "Coller les barres d’outils de l’éditeur ensemble"
|
3763 |
|
3764 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3765 |
msgid "Customize Toolbar"
|
3766 |
msgstr "Personnaliser la barre d’outils"
|
3767 |
|
3768 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3769 |
msgid "+ Add button"
|
3770 |
msgstr "+ Bouton Ajouter"
|
3771 |
|
3772 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3773 |
msgid "Custom Toolbar Buttons"
|
3774 |
msgstr "Boutons de barre d’outils personnalisés"
|
3775 |
|
@@ -4042,7 +4050,7 @@ msgstr "Objet de la taxonomie"
|
|
4042 |
msgid "Users"
|
4043 |
msgstr "Utilisateurs"
|
4044 |
|
4045 |
-
#: pro/includes/modules/global-field-condition.php:
|
4046 |
msgid "Set as Global Conditional Logic"
|
4047 |
msgstr "Définir comme logique conditionnelle globale"
|
4048 |
|
@@ -4101,37 +4109,37 @@ msgstr "Script terminé."
|
|
4101 |
msgid "Locations"
|
4102 |
msgstr "Emplacements"
|
4103 |
|
4104 |
-
#: pro/includes/modules/templates.php:
|
4105 |
msgid "Template"
|
4106 |
msgstr "Modèle"
|
4107 |
|
4108 |
-
#: pro/includes/modules/templates.php:
|
4109 |
msgid "Edit Template"
|
4110 |
msgstr "Modifier le modèle"
|
4111 |
|
4112 |
-
#: pro/includes/modules/templates.php:
|
4113 |
msgid "New Template"
|
4114 |
msgstr "Nouveau modèle"
|
4115 |
|
4116 |
-
#: pro/includes/modules/templates.php:
|
4117 |
msgid "You are currently editing a Dynamic Template."
|
4118 |
msgstr "Vous modifiez actuellement un modèle dynamique."
|
4119 |
|
4120 |
-
#: pro/includes/modules/templates.php:
|
4121 |
msgid "Instructions"
|
4122 |
msgstr "Instructions"
|
4123 |
|
4124 |
-
#: pro/includes/modules/templates.php:
|
4125 |
msgid "Dynamic Template"
|
4126 |
msgstr "Modèle dynamique"
|
4127 |
|
4128 |
-
#: pro/includes/modules/templates.php:
|
4129 |
msgid "is equal to"
|
4130 |
msgstr "est égal à"
|
4131 |
|
4132 |
-
#: pro/includes/modules/templates.php:
|
4133 |
-
msgid "No
|
4134 |
-
msgstr "
|
4135 |
|
4136 |
#: pro/includes/updater.php:252
|
4137 |
#, php-format
|
@@ -4271,6 +4279,9 @@ msgstr "ACF Extended"
|
|
4271 |
msgid "https://www.acf-extended.com"
|
4272 |
msgstr "https://www.acf-extended.com"
|
4273 |
|
|
|
|
|
|
|
4274 |
#~ msgid "Read more..."
|
4275 |
#~ msgstr "Lire la suite…"
|
4276 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Advanced Custom Fields: Extended\n"
|
4 |
+
"POT-Creation-Date: 2021-12-23 07:26+0100\n"
|
5 |
+
"PO-Revision-Date: 2021-12-23 07:28+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: https://www.acf-extended.com\n"
|
8 |
"Language: fr_FR\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
13 |
+
"X-Generator: Poedit 3.0.1\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
16 |
"X-Poedit-WPHeader: acf-extended.php\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.min.js\n"
|
23 |
"X-Poedit-SearchPathExcluded-1: .build\n"
|
24 |
|
25 |
+
#: assets/js/acfe-admin.js:476 includes/modules/options-pages.php:301
|
26 |
#: includes/modules/options.php:469 pro/includes/updates.php:361
|
27 |
msgid "Yes"
|
28 |
msgstr "Oui"
|
29 |
|
30 |
+
#: assets/js/acfe-admin.js:477 includes/modules/options-pages.php:297
|
31 |
#: includes/modules/options.php:468 pro/includes/updates.php:373
|
32 |
msgid "No"
|
33 |
msgstr "Non"
|
34 |
|
35 |
#: assets/js/acfe-input.js:106 assets/js/acfe-input.js:370
|
36 |
#: assets/js/acfe-input.js:734 assets/js/acfe-input.js:1511
|
37 |
+
#: assets/js/acfe-input.js:2269 includes/assets.php:100
|
38 |
#: includes/field-groups/field-group-meta.php:145
|
39 |
#: includes/fields-settings/data.php:81
|
40 |
#: includes/fields/field-flexible-content.php:616
|
41 |
#: includes/fields/field-flexible-content.php:622 includes/modules/dev.php:129
|
42 |
+
#: pro/assets/js/acfe-pro-admin.js:377 pro/assets/js/acfe-pro-input.js:631
|
43 |
#: pro/includes/field-groups/field-group-ui.php:237
|
44 |
+
#: pro/includes/fields/field-payment.php:414 pro/includes/modules/dev.php:77
|
45 |
#: pro/includes/modules/dev.php:154 pro/includes/modules/dev.php:213
|
46 |
#: pro/includes/modules/dev.php:297 pro/includes/modules/dev.php:345
|
47 |
#: pro/includes/modules/dev.php:393 pro/includes/modules/dev.php:441
|
186 |
"thème.php fichier ou l’inclure dans un fichier externe."
|
187 |
|
188 |
#: includes/admin/tools/module-import.php:24
|
189 |
+
#: pro/assets/js/acfe-pro-input.js:1054 pro/assets/js/acfe-pro-input.js:1072
|
190 |
#: pro/includes/admin/tools/settings-import.php:27
|
191 |
msgid "Select File"
|
192 |
msgstr "Choisir un fichier"
|
302 |
msgid "Add New"
|
303 |
msgstr "Ajouter"
|
304 |
|
305 |
+
#: includes/assets.php:101 pro/assets/js/acfe-pro-input.js:4986
|
306 |
msgid "Read more"
|
307 |
msgstr "Lire la suite"
|
308 |
|
310 |
msgid "Details"
|
311 |
msgstr "Details"
|
312 |
|
313 |
+
#: includes/assets.php:103 pro/assets/js/acfe-pro-admin.js:377
|
314 |
msgid "Debug"
|
315 |
msgstr "Débogage"
|
316 |
|
409 |
msgstr "Clé"
|
410 |
|
411 |
#: includes/field-groups/field-group-meta.php:74
|
412 |
+
#: includes/fields/field-hidden.php:43 includes/modules/options.class.php:200
|
413 |
#: pro/includes/field-groups/field-group-ui.php:172
|
414 |
#: pro/includes/fields/field-color-picker.php:132
|
415 |
#: pro/includes/fields/field-image-selector.php:147
|
509 |
msgstr "Sélectionner %s"
|
510 |
|
511 |
#: includes/field-groups/field-groups-local.php:224
|
512 |
+
#: includes/field-groups/field-groups.php:712
|
513 |
msgid "Export PHP"
|
514 |
msgstr "Exporter php"
|
515 |
|
516 |
#: includes/field-groups/field-groups-local.php:225
|
517 |
+
#: includes/field-groups/field-groups.php:713
|
518 |
msgid "Export Json"
|
519 |
msgstr "Exporter Json"
|
520 |
|
618 |
msgid "Review"
|
619 |
msgstr "Avis"
|
620 |
|
621 |
+
#: includes/field-groups/field-groups.php:643
|
622 |
+
#: includes/field-groups/field-groups.php:653 includes/modules/module.php:322
|
623 |
msgctxt "post status"
|
624 |
msgid "Disabled"
|
625 |
msgstr "Désactivé"
|
626 |
|
627 |
+
#: includes/field-groups/field-groups.php:664
|
628 |
msgid "Alternative title"
|
629 |
msgstr "Titre alternatif"
|
630 |
|
631 |
+
#: includes/field-groups/field-groups.php:780
|
632 |
+
#: includes/field-groups/field-groups.php:790
|
633 |
+
#: includes/field-groups/field-groups.php:800
|
634 |
msgid "Located"
|
635 |
msgstr "Situé"
|
636 |
|
637 |
+
#: includes/field-groups/field-groups.php:783
|
638 |
msgid "in theme:"
|
639 |
msgstr "dans le thème:"
|
640 |
|
641 |
+
#: includes/field-groups/field-groups.php:793
|
642 |
msgid "in plugin:"
|
643 |
msgstr "dans le plugin:"
|
644 |
|
645 |
+
#: includes/field-groups/field-groups.php:803
|
646 |
msgid "in:"
|
647 |
msgstr "dans :"
|
648 |
|
772 |
#: includes/fields/field-advanced-link.php:422
|
773 |
#: includes/fields/field-clone.php:98 includes/fields/field-clone.php:145
|
774 |
#: includes/fields/field-group.php:83 includes/fields/field-group.php:129
|
775 |
+
#: includes/modules/dev.php:467 includes/modules/options.class.php:181
|
776 |
#: includes/modules/options.php:485 includes/modules/ui-settings.php:63
|
777 |
#: includes/modules/ui-term.php:87 includes/modules/ui-user.php:154
|
778 |
#: pro/includes/fields/field-file.php:653
|
929 |
#: includes/fields/field-taxonomies.php:70
|
930 |
#: includes/fields/field-taxonomy-terms.php:840
|
931 |
#: includes/fields/field-user-roles.php:69
|
932 |
+
#: pro/includes/fields/field-block-types.php:89
|
933 |
#: pro/includes/fields/field-countries.php:79
|
934 |
#: pro/includes/fields/field-currencies.php:79
|
935 |
#: pro/includes/fields/field-field-groups.php:89
|
944 |
#: pro/includes/fields/field-payment-cart.php:80
|
945 |
#: pro/includes/fields/field-phone-number.php:144
|
946 |
#: pro/includes/fields/field-post-formats.php:72
|
947 |
+
#: pro/includes/fields/field-templates.php:93
|
948 |
msgid "Default Value"
|
949 |
msgstr "Valeur par défaut"
|
950 |
|
958 |
#: includes/fields/field-taxonomies.php:176
|
959 |
#: includes/fields/field-taxonomy-terms.php:905
|
960 |
#: includes/fields/field-user-roles.php:162
|
961 |
+
#: pro/includes/fields/field-block-types.php:194
|
962 |
#: pro/includes/fields/field-countries.php:258
|
963 |
#: pro/includes/fields/field-currencies.php:247
|
964 |
#: pro/includes/fields/field-date-picker.php:26
|
965 |
#: pro/includes/fields/field-date-picker.php:107
|
966 |
#: pro/includes/fields/field-date-picker.php:347
|
967 |
+
#: pro/includes/fields/field-date-range-picker.php:93
|
968 |
#: pro/includes/fields/field-field-groups.php:196
|
969 |
#: pro/includes/fields/field-field-types.php:197
|
970 |
#: pro/includes/fields/field-fields.php:207
|
977 |
#: pro/includes/fields/field-payment-cart.php:176
|
978 |
#: pro/includes/fields/field-phone-number.php:152
|
979 |
#: pro/includes/fields/field-post-formats.php:164
|
980 |
+
#: pro/includes/fields/field-templates.php:199
|
981 |
msgid "Placeholder"
|
982 |
msgstr "Etiquette"
|
983 |
|
987 |
#: includes/fields/field-slug.php:48 includes/fields/field-taxonomies.php:177
|
988 |
#: includes/fields/field-taxonomy-terms.php:906
|
989 |
#: includes/fields/field-user-roles.php:163
|
990 |
+
#: pro/includes/fields/field-block-types.php:195
|
991 |
#: pro/includes/fields/field-countries.php:259
|
992 |
#: pro/includes/fields/field-currencies.php:248
|
993 |
#: pro/includes/fields/field-field-groups.php:197
|
1000 |
#: pro/includes/fields/field-options-pages.php:194
|
1001 |
#: pro/includes/fields/field-payment-cart.php:177
|
1002 |
#: pro/includes/fields/field-post-formats.php:165
|
1003 |
+
#: pro/includes/fields/field-templates.php:200
|
1004 |
msgid "Appears within the input"
|
1005 |
msgstr "Apparaît dans l’entrée"
|
1006 |
|
1121 |
#: includes/fields/field-taxonomies.php:290
|
1122 |
#: includes/fields/field-taxonomy-terms.php:1041
|
1123 |
#: includes/fields/field-user-roles.php:276
|
1124 |
+
#: pro/includes/fields/field-block-types.php:308
|
1125 |
#: pro/includes/fields/field-countries.php:372
|
1126 |
#: pro/includes/fields/field-currencies.php:361
|
1127 |
#: pro/includes/fields/field-field-groups.php:310
|
1136 |
#: pro/includes/fields/field-payment-cart.php:271
|
1137 |
#: pro/includes/fields/field-payment-selector.php:92
|
1138 |
#: pro/includes/fields/field-post-formats.php:278
|
1139 |
+
#: pro/includes/fields/field-templates.php:313
|
1140 |
msgid "Layout"
|
1141 |
msgstr "Mise en page"
|
1142 |
|
1316 |
#: includes/modules/forms.php:100 includes/modules/forms.php:101
|
1317 |
#: includes/modules/forms.php:103 includes/modules/forms.php:105
|
1318 |
#: includes/modules/forms.php:180 pro/includes/locations/settings.php:76
|
1319 |
+
#: pro/includes/modules/templates.php:684
|
1320 |
msgid "Forms"
|
1321 |
msgstr "Formulaires"
|
1322 |
|
1334 |
#: includes/fields/field-taxonomies.php:56
|
1335 |
#: includes/fields/field-taxonomy-terms.php:826
|
1336 |
#: includes/fields/field-user-roles.php:55
|
1337 |
+
#: pro/includes/fields/field-block-types.php:75
|
1338 |
#: pro/includes/fields/field-countries.php:66
|
1339 |
#: pro/includes/fields/field-currencies.php:66
|
1340 |
#: pro/includes/fields/field-field-groups.php:75
|
1346 |
#: pro/includes/fields/field-menus.php:73
|
1347 |
#: pro/includes/fields/field-options-pages.php:73
|
1348 |
#: pro/includes/fields/field-post-formats.php:59
|
1349 |
+
#: pro/includes/fields/field-templates.php:79
|
1350 |
msgid "Appearance"
|
1351 |
msgstr "Apparence"
|
1352 |
|
1356 |
#: includes/fields/field-taxonomies.php:57
|
1357 |
#: includes/fields/field-taxonomy-terms.php:827
|
1358 |
#: includes/fields/field-user-roles.php:56
|
1359 |
+
#: pro/includes/fields/field-block-types.php:76
|
1360 |
#: pro/includes/fields/field-countries.php:67
|
1361 |
#: pro/includes/fields/field-currencies.php:67
|
1362 |
#: pro/includes/fields/field-field-groups.php:76
|
1368 |
#: pro/includes/fields/field-menus.php:74
|
1369 |
#: pro/includes/fields/field-options-pages.php:74
|
1370 |
#: pro/includes/fields/field-post-formats.php:60
|
1371 |
+
#: pro/includes/fields/field-templates.php:80
|
1372 |
msgid "Select the appearance of this field"
|
1373 |
msgstr "Sélectionnez l'apparence de ce champ"
|
1374 |
|
1378 |
#: includes/fields/field-taxonomies.php:62
|
1379 |
#: includes/fields/field-taxonomy-terms.php:832
|
1380 |
#: includes/fields/field-user-roles.php:61
|
1381 |
+
#: pro/includes/fields/field-block-types.php:81
|
1382 |
#: pro/includes/fields/field-countries.php:71
|
1383 |
#: pro/includes/fields/field-currencies.php:71
|
1384 |
#: pro/includes/fields/field-field-groups.php:81
|
1391 |
#: pro/includes/fields/field-options-pages.php:79
|
1392 |
#: pro/includes/fields/field-payment-cart.php:107
|
1393 |
#: pro/includes/fields/field-post-formats.php:64
|
1394 |
+
#: pro/includes/fields/field-templates.php:85
|
1395 |
msgid "Checkbox"
|
1396 |
msgstr "Case à cocher"
|
1397 |
|
1401 |
#: includes/fields/field-taxonomies.php:63
|
1402 |
#: includes/fields/field-taxonomy-terms.php:833
|
1403 |
#: includes/fields/field-user-roles.php:62
|
1404 |
+
#: pro/includes/fields/field-block-types.php:82
|
1405 |
#: pro/includes/fields/field-countries.php:72
|
1406 |
#: pro/includes/fields/field-currencies.php:72
|
1407 |
#: pro/includes/fields/field-field-groups.php:82
|
1413 |
#: pro/includes/fields/field-menus.php:80
|
1414 |
#: pro/includes/fields/field-options-pages.php:80
|
1415 |
#: pro/includes/fields/field-post-formats.php:65
|
1416 |
+
#: pro/includes/fields/field-templates.php:86
|
1417 |
msgid "Radio Buttons"
|
1418 |
msgstr "Boutons radio"
|
1419 |
|
1423 |
#: includes/fields/field-taxonomies.php:64
|
1424 |
#: includes/fields/field-taxonomy-terms.php:834
|
1425 |
#: includes/fields/field-user-roles.php:63
|
1426 |
+
#: pro/includes/fields/field-block-types.php:83
|
1427 |
#: pro/includes/fields/field-countries.php:73
|
1428 |
#: pro/includes/fields/field-currencies.php:73
|
1429 |
#: pro/includes/fields/field-field-groups.php:83
|
1435 |
#: pro/includes/fields/field-menus.php:81
|
1436 |
#: pro/includes/fields/field-options-pages.php:81
|
1437 |
#: pro/includes/fields/field-post-formats.php:66
|
1438 |
+
#: pro/includes/fields/field-templates.php:87
|
1439 |
msgctxt "noun"
|
1440 |
msgid "Select"
|
1441 |
msgstr "Sélectionner"
|
1446 |
#: includes/fields/field-taxonomies.php:71
|
1447 |
#: includes/fields/field-taxonomy-terms.php:841
|
1448 |
#: includes/fields/field-user-roles.php:70
|
1449 |
+
#: pro/includes/fields/field-block-types.php:90
|
1450 |
#: pro/includes/fields/field-countries.php:80
|
1451 |
#: pro/includes/fields/field-currencies.php:80
|
1452 |
#: pro/includes/fields/field-field-groups.php:90
|
1460 |
#: pro/includes/fields/field-options-pages.php:88
|
1461 |
#: pro/includes/fields/field-payment-cart.php:81
|
1462 |
#: pro/includes/fields/field-post-formats.php:73
|
1463 |
+
#: pro/includes/fields/field-templates.php:94
|
1464 |
msgid "Enter each default value on a new line"
|
1465 |
msgstr "Entrer chaque valeur par défaut sur une nouvelle ligne"
|
1466 |
|
1469 |
#: includes/fields/field-post-types.php:78
|
1470 |
#: includes/fields/field-taxonomies.php:78
|
1471 |
#: includes/fields/field-taxonomy-terms.php:848
|
1472 |
+
#: pro/includes/fields/field-block-types.php:97
|
1473 |
#: pro/includes/fields/field-color-picker.php:126
|
1474 |
#: pro/includes/fields/field-countries.php:87
|
1475 |
#: pro/includes/fields/field-currencies.php:102
|
1482 |
#: pro/includes/fields/field-menus.php:95
|
1483 |
#: pro/includes/fields/field-options-pages.php:95
|
1484 |
#: pro/includes/fields/field-phone-number.php:160
|
1485 |
+
#: pro/includes/fields/field-templates.php:101
|
1486 |
msgid "Return Value"
|
1487 |
msgstr "Valeur de retour"
|
1488 |
|
1500 |
#: includes/fields/field-taxonomies.php:91
|
1501 |
#: includes/fields/field-taxonomy-terms.php:880
|
1502 |
#: includes/fields/field-user-roles.php:77
|
1503 |
+
#: pro/includes/fields/field-block-types.php:110
|
1504 |
#: pro/includes/fields/field-countries.php:174
|
1505 |
#: pro/includes/fields/field-currencies.php:163
|
1506 |
#: pro/includes/fields/field-field-groups.php:111
|
1514 |
#: pro/includes/fields/field-options-pages.php:108
|
1515 |
#: pro/includes/fields/field-payment-cart.php:115
|
1516 |
#: pro/includes/fields/field-post-formats.php:80
|
1517 |
+
#: pro/includes/fields/field-templates.php:114
|
1518 |
msgid "Allow Null?"
|
1519 |
msgstr "Autoriser une valeur « null »?"
|
1520 |
|
1524 |
#: includes/fields/field-taxonomies.php:180
|
1525 |
#: includes/fields/field-taxonomy-terms.php:909
|
1526 |
#: includes/fields/field-user-roles.php:166
|
1527 |
+
#: pro/includes/fields/field-block-types.php:198
|
1528 |
#: pro/includes/fields/field-countries.php:262
|
1529 |
#: pro/includes/fields/field-currencies.php:251
|
1530 |
#: pro/includes/fields/field-field-groups.php:200
|
1537 |
#: pro/includes/fields/field-options-pages.php:197
|
1538 |
#: pro/includes/fields/field-payment-cart.php:180
|
1539 |
#: pro/includes/fields/field-post-formats.php:168
|
1540 |
+
#: pro/includes/fields/field-templates.php:203
|
1541 |
msgctxt "verb"
|
1542 |
msgid "Select"
|
1543 |
msgstr "Sélectionner"
|
1549 |
#: includes/fields/field-taxonomies.php:243
|
1550 |
#: includes/fields/field-taxonomy-terms.php:972
|
1551 |
#: includes/fields/field-user-roles.php:229
|
1552 |
+
#: pro/includes/fields/field-block-types.php:261
|
1553 |
#: pro/includes/fields/field-countries.php:325
|
1554 |
#: pro/includes/fields/field-currencies.php:314
|
1555 |
#: pro/includes/fields/field-field-groups.php:263
|
1562 |
#: pro/includes/fields/field-options-pages.php:260
|
1563 |
#: pro/includes/fields/field-payment-cart.php:243
|
1564 |
#: pro/includes/fields/field-post-formats.php:231
|
1565 |
+
#: pro/includes/fields/field-templates.php:266
|
1566 |
msgid "Search Input Placeholder"
|
1567 |
msgstr "Espace réservé pour les entrées de recherche"
|
1568 |
|
1573 |
#: includes/fields/field-taxonomies.php:244
|
1574 |
#: includes/fields/field-taxonomy-terms.php:973
|
1575 |
#: includes/fields/field-user-roles.php:230
|
1576 |
+
#: pro/includes/fields/field-block-types.php:262
|
1577 |
#: pro/includes/fields/field-countries.php:326
|
1578 |
#: pro/includes/fields/field-currencies.php:315
|
1579 |
#: pro/includes/fields/field-field-groups.php:264
|
1586 |
#: pro/includes/fields/field-options-pages.php:261
|
1587 |
#: pro/includes/fields/field-payment-cart.php:244
|
1588 |
#: pro/includes/fields/field-post-formats.php:232
|
1589 |
+
#: pro/includes/fields/field-templates.php:267
|
1590 |
msgid "Appears within the search input"
|
1591 |
msgstr "Apparaît dans l’entrée de recherche"
|
1592 |
|
1596 |
#: includes/fields/field-taxonomies.php:116
|
1597 |
#: includes/fields/field-taxonomy-terms.php:1000
|
1598 |
#: includes/fields/field-user-roles.php:102
|
1599 |
+
#: pro/includes/fields/field-block-types.php:135
|
1600 |
#: pro/includes/fields/field-countries.php:199
|
1601 |
#: pro/includes/fields/field-currencies.php:188
|
1602 |
#: pro/includes/fields/field-field-groups.php:136
|
1610 |
#: pro/includes/fields/field-options-pages.php:133
|
1611 |
#: pro/includes/fields/field-payment-cart.php:140
|
1612 |
#: pro/includes/fields/field-post-formats.php:105
|
1613 |
+
#: pro/includes/fields/field-templates.php:139
|
1614 |
msgid "Select multiple values?"
|
1615 |
msgstr "Sélectionnez plusieurs valeurs?"
|
1616 |
|
1620 |
#: includes/fields/field-taxonomies.php:134
|
1621 |
#: includes/fields/field-taxonomy-terms.php:862
|
1622 |
#: includes/fields/field-user-roles.php:120
|
1623 |
+
#: pro/includes/fields/field-block-types.php:153
|
1624 |
#: pro/includes/fields/field-countries.php:217
|
1625 |
#: pro/includes/fields/field-currencies.php:206
|
1626 |
#: pro/includes/fields/field-field-groups.php:154
|
1634 |
#: pro/includes/fields/field-payment-cart.php:158
|
1635 |
#: pro/includes/fields/field-payment-selector.php:112
|
1636 |
#: pro/includes/fields/field-post-formats.php:123
|
1637 |
+
#: pro/includes/fields/field-templates.php:157
|
1638 |
msgid "Stylised UI"
|
1639 |
msgstr "UI Stylised"
|
1640 |
|
1644 |
#: includes/fields/field-taxonomies.php:153
|
1645 |
#: includes/fields/field-taxonomy-terms.php:1018
|
1646 |
#: includes/fields/field-user-roles.php:139
|
1647 |
+
#: pro/includes/fields/field-block-types.php:171
|
1648 |
#: pro/includes/fields/field-countries.php:235
|
1649 |
#: pro/includes/fields/field-currencies.php:224
|
1650 |
#: pro/includes/fields/field-field-groups.php:173
|
1656 |
#: pro/includes/fields/field-menus.php:171
|
1657 |
#: pro/includes/fields/field-options-pages.php:170
|
1658 |
#: pro/includes/fields/field-post-formats.php:141
|
1659 |
+
#: pro/includes/fields/field-templates.php:176
|
1660 |
msgid "Use AJAX to lazy load choices?"
|
1661 |
msgstr "Utilisez AJAX pour des choix de charge paresseux?"
|
1662 |
|
1665 |
#: includes/fields/field-post-types.php:271
|
1666 |
#: includes/fields/field-taxonomies.php:271
|
1667 |
#: includes/fields/field-user-roles.php:257
|
1668 |
+
#: pro/includes/fields/field-block-types.php:289
|
1669 |
#: pro/includes/fields/field-countries.php:353
|
1670 |
#: pro/includes/fields/field-currencies.php:342
|
1671 |
#: pro/includes/fields/field-field-groups.php:291
|
1677 |
#: pro/includes/fields/field-menus.php:289
|
1678 |
#: pro/includes/fields/field-options-pages.php:288
|
1679 |
#: pro/includes/fields/field-post-formats.php:259
|
1680 |
+
#: pro/includes/fields/field-templates.php:294
|
1681 |
msgid "Other"
|
1682 |
msgstr "Autre"
|
1683 |
|
1686 |
#: includes/fields/field-post-types.php:276
|
1687 |
#: includes/fields/field-taxonomies.php:276
|
1688 |
#: includes/fields/field-user-roles.php:262
|
1689 |
+
#: pro/includes/fields/field-block-types.php:294
|
1690 |
#: pro/includes/fields/field-countries.php:358
|
1691 |
#: pro/includes/fields/field-currencies.php:347
|
1692 |
#: pro/includes/fields/field-field-groups.php:296
|
1698 |
#: pro/includes/fields/field-menus.php:294
|
1699 |
#: pro/includes/fields/field-options-pages.php:293
|
1700 |
#: pro/includes/fields/field-post-formats.php:264
|
1701 |
+
#: pro/includes/fields/field-templates.php:299
|
1702 |
msgid "Add 'other' choice to allow for custom values"
|
1703 |
msgstr ""
|
1704 |
"Ajouter 'les autres' pour un autre choix afin d'autoriser les valeurs "
|
1718 |
#: includes/fields/field-taxonomies.php:296
|
1719 |
#: includes/fields/field-taxonomy-terms.php:1047
|
1720 |
#: includes/fields/field-user-roles.php:282
|
1721 |
+
#: pro/includes/fields/field-block-types.php:314
|
1722 |
#: pro/includes/fields/field-countries.php:378
|
1723 |
#: pro/includes/fields/field-currencies.php:367
|
1724 |
#: pro/includes/fields/field-field-groups.php:316
|
1733 |
#: pro/includes/fields/field-payment-cart.php:277
|
1734 |
#: pro/includes/fields/field-payment-selector.php:98
|
1735 |
#: pro/includes/fields/field-post-formats.php:284
|
1736 |
+
#: pro/includes/fields/field-templates.php:319
|
1737 |
msgid "Vertical"
|
1738 |
msgstr "Vertical"
|
1739 |
|
1743 |
#: includes/fields/field-taxonomies.php:297
|
1744 |
#: includes/fields/field-taxonomy-terms.php:1048
|
1745 |
#: includes/fields/field-user-roles.php:283
|
1746 |
+
#: pro/includes/fields/field-block-types.php:315
|
1747 |
#: pro/includes/fields/field-countries.php:379
|
1748 |
#: pro/includes/fields/field-currencies.php:368
|
1749 |
#: pro/includes/fields/field-field-groups.php:317
|
1758 |
#: pro/includes/fields/field-payment-cart.php:278
|
1759 |
#: pro/includes/fields/field-payment-selector.php:99
|
1760 |
#: pro/includes/fields/field-post-formats.php:285
|
1761 |
+
#: pro/includes/fields/field-templates.php:320
|
1762 |
msgid "Horizontal"
|
1763 |
msgstr "Horizontal"
|
1764 |
|
1768 |
#: includes/fields/field-taxonomies.php:319
|
1769 |
#: includes/fields/field-taxonomy-terms.php:1070
|
1770 |
#: includes/fields/field-user-roles.php:305
|
1771 |
+
#: pro/includes/fields/field-block-types.php:337
|
1772 |
#: pro/includes/fields/field-countries.php:401
|
1773 |
#: pro/includes/fields/field-currencies.php:390
|
1774 |
#: pro/includes/fields/field-field-groups.php:339
|
1781 |
#: pro/includes/fields/field-options-pages.php:336
|
1782 |
#: pro/includes/fields/field-payment-cart.php:300
|
1783 |
#: pro/includes/fields/field-post-formats.php:307
|
1784 |
+
#: pro/includes/fields/field-templates.php:342
|
1785 |
msgid "Toggle"
|
1786 |
msgstr "Basculer"
|
1787 |
|
1791 |
#: includes/fields/field-taxonomies.php:320
|
1792 |
#: includes/fields/field-taxonomy-terms.php:1071
|
1793 |
#: includes/fields/field-user-roles.php:306
|
1794 |
+
#: pro/includes/fields/field-block-types.php:338
|
1795 |
#: pro/includes/fields/field-countries.php:402
|
1796 |
#: pro/includes/fields/field-currencies.php:391
|
1797 |
#: pro/includes/fields/field-field-groups.php:340
|
1804 |
#: pro/includes/fields/field-options-pages.php:337
|
1805 |
#: pro/includes/fields/field-payment-cart.php:301
|
1806 |
#: pro/includes/fields/field-post-formats.php:308
|
1807 |
+
#: pro/includes/fields/field-templates.php:343
|
1808 |
msgid "Prepend an extra checkbox to toggle all choices"
|
1809 |
msgstr "Ajouter une case supplémentaire pour sélectionner tous les choix"
|
1810 |
|
1813 |
#: includes/fields/field-post-types.php:337 includes/fields/field-select.php:49
|
1814 |
#: includes/fields/field-taxonomies.php:337
|
1815 |
#: includes/fields/field-user-roles.php:323
|
1816 |
+
#: pro/includes/fields/field-block-types.php:355
|
1817 |
#: pro/includes/fields/field-countries.php:419
|
1818 |
#: pro/includes/fields/field-currencies.php:408
|
1819 |
#: pro/includes/fields/field-field-groups.php:357
|
1825 |
#: pro/includes/fields/field-menus.php:355
|
1826 |
#: pro/includes/fields/field-options-pages.php:354
|
1827 |
#: pro/includes/fields/field-post-formats.php:325
|
1828 |
+
#: pro/includes/fields/field-templates.php:360
|
1829 |
msgid "Allow Custom"
|
1830 |
msgstr "Autoriser les mots clés personnalisés"
|
1831 |
|
1834 |
#: includes/fields/field-post-types.php:342 includes/fields/field-select.php:54
|
1835 |
#: includes/fields/field-taxonomies.php:342
|
1836 |
#: includes/fields/field-user-roles.php:328
|
1837 |
+
#: pro/includes/fields/field-block-types.php:360
|
1838 |
#: pro/includes/fields/field-countries.php:424
|
1839 |
#: pro/includes/fields/field-currencies.php:413
|
1840 |
#: pro/includes/fields/field-field-groups.php:362
|
1846 |
#: pro/includes/fields/field-menus.php:360
|
1847 |
#: pro/includes/fields/field-options-pages.php:359
|
1848 |
#: pro/includes/fields/field-post-formats.php:330
|
1849 |
+
#: pro/includes/fields/field-templates.php:365
|
1850 |
msgid "Allow 'custom' values to be added"
|
1851 |
msgstr "Autoriser l’ajout de valeurs « personnalisées »"
|
1852 |
|
2013 |
|
2014 |
#: includes/fields/field-recaptcha.php:242
|
2015 |
#: includes/fields/field-recaptcha.php:248
|
2016 |
+
#: pro/includes/fields/field-payment.php:552
|
2017 |
+
#: pro/includes/fields/field-payment.php:651
|
2018 |
+
#: pro/includes/fields/field-payment.php:777
|
2019 |
+
#: pro/includes/fields/field-payment.php:800
|
2020 |
+
#: pro/includes/fields/field-payment.php:848
|
2021 |
+
#: pro/includes/fields/field-payment.php:940
|
2022 |
msgid "An error has occured"
|
2023 |
msgstr "Une erreur s’est produite"
|
2024 |
|
2070 |
|
2071 |
#: includes/fields/field-taxonomies.php:84
|
2072 |
msgid "Taxonomy name"
|
2073 |
+
msgstr "Nom de la taxonomie"
|
2074 |
|
2075 |
#: includes/fields/field-taxonomy-terms.php:16
|
2076 |
msgid "Taxonomy Terms"
|
2190 |
msgstr "Auteur"
|
2191 |
|
2192 |
#: includes/modules/block-types.php:24 includes/modules/forms.php:25
|
2193 |
+
#: includes/modules/options.class.php:199 includes/modules/options.php:331
|
2194 |
#: includes/modules/post-types.php:24 includes/modules/taxonomies.php:24
|
2195 |
#: pro/includes/fields/field-post-field.php:42
|
2196 |
msgid "Name"
|
2216 |
|
2217 |
#: includes/modules/dev.php:129 includes/modules/options-pages.php:315
|
2218 |
#: includes/modules/post-types.php:175 includes/modules/taxonomies.php:262
|
2219 |
+
#: pro/includes/fields/field-payment.php:414 pro/includes/modules/dev.php:77
|
2220 |
#: pro/includes/modules/dev.php:154 pro/includes/modules/dev.php:213
|
2221 |
#: pro/includes/modules/dev.php:297 pro/includes/modules/dev.php:345
|
2222 |
#: pro/includes/modules/dev.php:393 pro/includes/modules/dev.php:441
|
2225 |
msgstr "Voir"
|
2226 |
|
2227 |
#: includes/modules/dev.php:472 includes/modules/dev.php:515
|
2228 |
+
#: includes/modules/options.class.php:182
|
2229 |
+
#: includes/modules/options.class.php:234 includes/modules/options.php:502
|
2230 |
msgid "Delete"
|
2231 |
msgstr "Supprimer"
|
2232 |
|
2248 |
|
2249 |
#: includes/modules/forms-action-custom.php:82
|
2250 |
#: includes/modules/forms-action-email.php:310
|
2251 |
+
#: includes/modules/forms-action-post.php:836
|
2252 |
#: includes/modules/forms-action-redirect.php:87
|
2253 |
#: includes/modules/forms-action-term.php:486
|
2254 |
#: includes/modules/forms-action-user.php:982 includes/modules/forms.php:174
|
2358 |
msgid "Input is invalid: Must be a json string or an array."
|
2359 |
msgstr "L’entrée n’est pas valide : doit être une chaîne json ou un tableau."
|
2360 |
|
2361 |
+
#: includes/modules/module.php:96
|
2362 |
#, php-format
|
2363 |
msgid "Active <span class=\"count\">(%s)</span>"
|
2364 |
msgid_plural "Active <span class=\"count\">(%s)</span>"
|
2365 |
msgstr[0] "Actif <span class=\"count\">(%s)</span>"
|
2366 |
msgstr[1] "Actif <span class=\"count\">(%s)</span>"
|
2367 |
|
2368 |
+
#: includes/modules/module.php:149
|
2369 |
msgid "Export "
|
2370 |
msgstr "Exporter "
|
2371 |
|
2372 |
+
#: includes/modules/module.php:213
|
2373 |
msgid "Active"
|
2374 |
msgstr "Actif"
|
2375 |
|
2376 |
+
#: includes/modules/module.php:213
|
2377 |
msgid "Inactive"
|
2378 |
msgstr "Inactif"
|
2379 |
|
2385 |
msgid "Post ID"
|
2386 |
msgstr "ID de l'article"
|
2387 |
|
2388 |
+
#: includes/modules/options-pages.php:26 includes/modules/options.class.php:201
|
2389 |
#: includes/modules/options.php:453
|
2390 |
msgid "Autoload"
|
2391 |
msgstr "Chargement automatique"
|
2402 |
msgid "Option"
|
2403 |
msgstr "Option"
|
2404 |
|
2405 |
+
#: includes/modules/options.class.php:103
|
2406 |
msgid "No options avaliable."
|
2407 |
msgstr "Aucune option disponible."
|
2408 |
|
2409 |
+
#: includes/modules/options.class.php:198 pro/includes/modules/dev.php:68
|
2410 |
#: pro/includes/modules/dev.php:145 pro/includes/modules/dev.php:204
|
2411 |
#: pro/includes/modules/dev.php:255 pro/includes/modules/dev.php:292
|
2412 |
#: pro/includes/modules/dev.php:340 pro/includes/modules/dev.php:388
|
2503 |
msgid "Clear"
|
2504 |
msgstr "Effacer"
|
2505 |
|
2506 |
+
#: pro/assets/js/acfe-pro-input.js:983
|
2507 |
msgid "Maximum items reached ({max} items)"
|
2508 |
msgstr "Nombre maximal d’objets atteints ({max} éléments)"
|
2509 |
|
2510 |
+
#: pro/assets/js/acfe-pro-input.js:1098
|
2511 |
msgid "Edit File"
|
2512 |
msgstr "Modifier le fichier"
|
2513 |
|
2514 |
+
#: pro/assets/js/acfe-pro-input.js:1099
|
2515 |
msgid "Update File"
|
2516 |
msgstr "Mettre à jour le fichier"
|
2517 |
|
2518 |
+
#: pro/assets/js/acfe-pro-input.js:1551
|
2519 |
msgid "This field has a limit of {max} {label} {identifier}"
|
2520 |
msgstr "Ce champ a une limite de {Max} {label} {identificateur}"
|
2521 |
|
2522 |
+
#: pro/assets/js/acfe-pro-input.js:1552
|
2523 |
#: pro/includes/fields/field-flexible-content-locations.php:180
|
2524 |
msgid "layout"
|
2525 |
msgid_plural "layouts"
|
2526 |
msgstr[0] "disposition"
|
2527 |
msgstr[1] "mises en page"
|
2528 |
|
2529 |
+
#: pro/assets/js/acfe-pro-input.js:3637
|
2530 |
msgid "OK"
|
2531 |
msgstr "OK"
|
2532 |
|
2533 |
+
#: pro/assets/js/acfe-pro-input.js:3637
|
2534 |
msgid "Cancel"
|
2535 |
msgstr "Annuler"
|
2536 |
|
2627 |
msgid "Block Types"
|
2628 |
msgstr "Types de bloc"
|
2629 |
|
2630 |
+
#: pro/includes/fields/field-block-types.php:62
|
2631 |
msgid "Allow Block Types"
|
2632 |
msgstr "Autoriser les types de blocs"
|
2633 |
|
2634 |
+
#: pro/includes/fields/field-block-types.php:70
|
2635 |
msgid "All block types"
|
2636 |
msgstr "Tous types de blocs"
|
2637 |
|
2638 |
+
#: pro/includes/fields/field-block-types.php:103
|
2639 |
msgid "Block type object"
|
2640 |
msgstr "Objet de type bloc"
|
2641 |
|
2642 |
+
#: pro/includes/fields/field-block-types.php:104
|
2643 |
msgid "Block type name"
|
2644 |
msgstr "Nom du type de bloc"
|
2645 |
|
2683 |
msgstr "Saisie de texte"
|
2684 |
|
2685 |
#: pro/includes/fields/field-color-picker.php:207
|
2686 |
+
#: pro/includes/fields/field-date-range-picker.php:239
|
2687 |
msgid "Allow null"
|
2688 |
msgstr "Autoriser une valeur « null »"
|
2689 |
|
2757 |
|
2758 |
#: pro/includes/fields/field-countries.php:113
|
2759 |
#: pro/includes/fields/field-currencies.php:87
|
2760 |
+
#: pro/includes/fields/field-date-range-picker.php:53
|
2761 |
#: pro/includes/fields/field-image-sizes.php:116
|
2762 |
#: pro/includes/fields/field-languages.php:131
|
2763 |
#: pro/includes/fields/field-payment-cart.php:88
|
2766 |
|
2767 |
#: pro/includes/fields/field-countries.php:114
|
2768 |
#: pro/includes/fields/field-currencies.php:88
|
2769 |
+
#: pro/includes/fields/field-date-range-picker.php:54
|
2770 |
#: pro/includes/fields/field-languages.php:132
|
2771 |
#: pro/includes/fields/field-payment-cart.php:89
|
2772 |
msgid "The format displayed when editing a post"
|
2774 |
|
2775 |
#: pro/includes/fields/field-countries.php:122
|
2776 |
#: pro/includes/fields/field-currencies.php:96
|
2777 |
+
#: pro/includes/fields/field-date-range-picker.php:62
|
2778 |
+
#: pro/includes/fields/field-date-range-picker.php:78
|
2779 |
#: pro/includes/fields/field-languages.php:140
|
2780 |
#: pro/includes/fields/field-payment-cart.php:96
|
2781 |
msgid "Custom:"
|
2836 |
|
2837 |
#: pro/includes/fields/field-date-picker.php:35
|
2838 |
#: pro/includes/fields/field-date-picker.php:117
|
2839 |
+
#: pro/includes/fields/field-date-range-picker.php:163
|
2840 |
msgid "Date Restriction"
|
2841 |
msgstr "Date Restriction"
|
2842 |
|
2843 |
#: pro/includes/fields/field-date-picker.php:60
|
2844 |
#: pro/includes/fields/field-date-picker.php:167
|
2845 |
+
#: pro/includes/fields/field-date-range-picker.php:219
|
2846 |
msgid "No Weekends"
|
2847 |
msgstr "Pas de week-end"
|
2848 |
|
2870 |
msgid "Date Range Picker"
|
2871 |
msgstr "Sélecteur de plages de dates"
|
2872 |
|
2873 |
+
#: pro/includes/fields/field-date-range-picker.php:68
|
2874 |
msgid "Return Format"
|
2875 |
msgstr "Format de retour"
|
2876 |
|
2877 |
+
#: pro/includes/fields/field-date-range-picker.php:69
|
2878 |
msgid "The format returned via template functions"
|
2879 |
msgstr "Le format renvoyé par l'intermédiaire des fonctions de modèle"
|
2880 |
|
2881 |
+
#: pro/includes/fields/field-date-range-picker.php:84
|
2882 |
msgid "Week Starts On"
|
2883 |
msgstr "La semaine débute le"
|
2884 |
|
2885 |
+
#: pro/includes/fields/field-date-range-picker.php:101
|
2886 |
msgid "Separator"
|
2887 |
msgstr "Séparateur"
|
2888 |
|
2889 |
+
#: pro/includes/fields/field-date-range-picker.php:109
|
2890 |
msgid "Default Date"
|
2891 |
msgstr "Date par Défaut"
|
2892 |
|
2893 |
+
#: pro/includes/fields/field-date-range-picker.php:136
|
2894 |
msgid "Range Restriction"
|
2895 |
msgstr "Restriction de plage"
|
2896 |
|
2897 |
+
#: pro/includes/fields/field-date-range-picker.php:192
|
2898 |
msgid "Custom Ranges"
|
2899 |
msgstr "Plages personnalisées"
|
2900 |
|
2901 |
+
#: pro/includes/fields/field-date-range-picker.php:209
|
2902 |
+
msgid "Show Dropdowns"
|
2903 |
+
msgstr "Autoriser les menus déroulants"
|
2904 |
+
|
2905 |
+
#: pro/includes/fields/field-date-range-picker.php:229
|
2906 |
msgid "Auto Close on Selection"
|
2907 |
msgstr "Fermeture automatique lors de la sélection"
|
2908 |
|
3341 |
msgstr "Choisissez vos passerelles de paiement"
|
3342 |
|
3343 |
#: pro/includes/fields/field-payment.php:79
|
3344 |
+
#: pro/includes/fields/field-payment.php:392
|
3345 |
+
#: pro/includes/fields/field-payment.php:1203
|
3346 |
msgid "Amount"
|
3347 |
msgstr "Montant"
|
3348 |
|
3430 |
msgstr "Vos informations d’identification de production PayPal"
|
3431 |
|
3432 |
#: pro/includes/fields/field-payment.php:314
|
|
|
|
|
3433 |
msgid "Mode"
|
3434 |
msgstr "Mode"
|
3435 |
|
3438 |
msgstr "Changer de mode API"
|
3439 |
|
3440 |
#: pro/includes/fields/field-payment.php:320
|
3441 |
+
#: pro/includes/fields/field-payment.php:388
|
3442 |
+
#: pro/includes/fields/field-payment.php:1170
|
3443 |
+
#: pro/includes/fields/field-payment.php:1201
|
3444 |
msgid "Test"
|
3445 |
msgstr "Test"
|
3446 |
|
3447 |
#: pro/includes/fields/field-payment.php:321
|
3448 |
+
#: pro/includes/fields/field-payment.php:1171
|
3449 |
msgid "Production"
|
3450 |
msgstr "Production"
|
3451 |
|
3452 |
+
#: pro/includes/fields/field-payment.php:388
|
3453 |
+
#: pro/includes/fields/field-payment.php:1201
|
|
|
|
|
|
|
|
|
3454 |
msgid "Gateway"
|
3455 |
msgstr "Passerelle"
|
3456 |
|
3457 |
+
#: pro/includes/fields/field-payment.php:397
|
3458 |
+
#: pro/includes/fields/field-payment.php:1206
|
3459 |
msgid "Items"
|
3460 |
msgstr "Articles"
|
3461 |
|
3462 |
+
#: pro/includes/fields/field-payment.php:402
|
3463 |
+
#: pro/includes/fields/field-payment.php:1209
|
3464 |
#: pro/includes/fields/field-post-field.php:38
|
3465 |
msgid "Date"
|
3466 |
msgstr "Date"
|
3467 |
|
3468 |
+
#: pro/includes/fields/field-payment.php:406
|
3469 |
+
#: pro/includes/fields/field-payment.php:1211
|
3470 |
msgid "IP Address"
|
3471 |
msgstr "Adresse IP"
|
3472 |
|
3473 |
+
#: pro/includes/fields/field-payment.php:410
|
3474 |
+
#: pro/includes/fields/field-payment.php:1213
|
3475 |
msgid "Payment ID"
|
3476 |
msgstr "ID du Paiement"
|
3477 |
|
3478 |
+
#: pro/includes/fields/field-payment.php:414
|
3479 |
msgid "Payment Object"
|
3480 |
msgstr "Objet de Paiement"
|
3481 |
|
3482 |
+
#: pro/includes/fields/field-payment.php:501
|
3483 |
msgid "PayPal Checkout"
|
3484 |
msgstr "Paiement PayPal"
|
3485 |
|
3486 |
+
#: pro/includes/fields/field-payment.php:609
|
3487 |
msgid "Amount can't be null"
|
3488 |
msgstr "Le montant ne peut pas être nul"
|
3489 |
|
3490 |
+
#: pro/includes/fields/field-payment.php:686
|
3491 |
msgid "Payment failed"
|
3492 |
msgstr "Échec de paiement"
|
3493 |
|
3494 |
+
#: pro/includes/fields/field-payment.php:927
|
3495 |
msgid "Your card number is invalid"
|
3496 |
msgstr "Votre numéro de carte n’est pas valide"
|
3497 |
|
3662 |
msgstr "Pas de préférence"
|
3663 |
|
3664 |
#: pro/includes/fields/field-templates.php:13
|
3665 |
+
#: pro/includes/modules/templates.php:69 pro/includes/modules/templates.php:70
|
3666 |
+
#: pro/includes/modules/templates.php:72 pro/includes/modules/templates.php:74
|
3667 |
msgid "Templates"
|
3668 |
msgstr "Modèles"
|
3669 |
|
3670 |
+
#: pro/includes/fields/field-templates.php:66
|
3671 |
msgid "Allow Templates"
|
3672 |
msgstr "Autoriser les modèles"
|
3673 |
|
3674 |
+
#: pro/includes/fields/field-templates.php:74
|
3675 |
msgid "All templates"
|
3676 |
msgstr "Tous les modèles"
|
3677 |
|
3678 |
+
#: pro/includes/fields/field-templates.php:106
|
3679 |
msgid "Template ID"
|
3680 |
msgstr "ID du Template"
|
3681 |
|
3682 |
+
#: pro/includes/fields/field-templates.php:107
|
3683 |
msgid "Template name"
|
3684 |
msgstr "Nom du modèle"
|
3685 |
|
3686 |
#: pro/includes/fields/field-wysiwyg.php:38
|
3687 |
+
msgid "Auto initialization"
|
3688 |
+
msgstr "Initialisation automatique"
|
3689 |
+
|
3690 |
+
#: pro/includes/fields/field-wysiwyg.php:39
|
3691 |
+
msgid "Automatically initialize TinyMCE when shown"
|
3692 |
+
msgstr "Initialiser automatiquement de TinyMCE lorsqu’il est affiché"
|
3693 |
+
|
3694 |
+
#: pro/includes/fields/field-wysiwyg.php:61
|
3695 |
+
#: pro/includes/fields/field-wysiwyg.php:81
|
3696 |
+
#: pro/includes/fields/field-wysiwyg.php:103
|
3697 |
msgid "Height"
|
3698 |
msgstr "Hauteur"
|
3699 |
|
3700 |
+
#: pro/includes/fields/field-wysiwyg.php:126
|
3701 |
msgid "Valid Elements"
|
3702 |
msgstr "Éléments valides"
|
3703 |
|
3704 |
+
#: pro/includes/fields/field-wysiwyg.php:129
|
3705 |
msgid "Set custom valid HTML tags"
|
3706 |
msgstr "Définir des balises HTML valides personnalisées"
|
3707 |
|
3708 |
+
#: pro/includes/fields/field-wysiwyg.php:147
|
3709 |
msgid "Custom Style"
|
3710 |
msgstr "Style personnalisé"
|
3711 |
|
3712 |
+
#: pro/includes/fields/field-wysiwyg.php:150
|
3713 |
msgid "Add multiple files separated with comma"
|
3714 |
msgstr "Ajouter plusieurs fichiers séparés par une virgule"
|
3715 |
|
3716 |
+
#: pro/includes/fields/field-wysiwyg.php:161
|
3717 |
msgid "Disable WP Style"
|
3718 |
msgstr "Désactiver le style WP"
|
3719 |
|
3720 |
+
#: pro/includes/fields/field-wysiwyg.php:164
|
3721 |
msgid "Remove TinyMCE builtin stylesheets"
|
3722 |
msgstr "Supprimer les feuilles de style intégrées TinyMCE"
|
3723 |
|
3724 |
+
#: pro/includes/fields/field-wysiwyg.php:173
|
3725 |
msgid "Autoresize"
|
3726 |
msgstr "Mise en forme automatique"
|
3727 |
|
3728 |
+
#: pro/includes/fields/field-wysiwyg.php:176
|
3729 |
msgid "Height will be based on the editor content"
|
3730 |
msgstr "La hauteur sera basée sur le contenu de l’éditeur"
|
3731 |
|
3732 |
+
#: pro/includes/fields/field-wysiwyg.php:185
|
3733 |
msgid "Disable Resize"
|
3734 |
msgstr "Désactiver le redimensionnement"
|
3735 |
|
3736 |
+
#: pro/includes/fields/field-wysiwyg.php:188
|
3737 |
msgid "Remove the editor resize functionality"
|
3738 |
msgstr "Supprimer la fonctionnalité de redimensionnement de l’éditeur"
|
3739 |
|
3740 |
+
#: pro/includes/fields/field-wysiwyg.php:197
|
3741 |
msgid "Disable Path"
|
3742 |
msgstr "Désactiver le chemin d’accès"
|
3743 |
|
3744 |
+
#: pro/includes/fields/field-wysiwyg.php:200
|
3745 |
msgid "Hide the editor path status bar"
|
3746 |
msgstr "Masquer la barre d’état du chemin d’accès de l’éditeur"
|
3747 |
|
3748 |
+
#: pro/includes/fields/field-wysiwyg.php:209
|
3749 |
msgid "Menu Bar"
|
3750 |
msgstr "Barre de menu"
|
3751 |
|
3752 |
+
#: pro/includes/fields/field-wysiwyg.php:212
|
3753 |
msgid "Show the menu bar on top of the editor"
|
3754 |
msgstr "Afficher la barre de menus en haut de l’éditeur"
|
3755 |
|
3756 |
+
#: pro/includes/fields/field-wysiwyg.php:221
|
3757 |
msgid "Transparent Editor"
|
3758 |
msgstr "Éditeur transparent"
|
3759 |
|
3760 |
+
#: pro/includes/fields/field-wysiwyg.php:224
|
3761 |
msgid "Set the editor's background as transparent"
|
3762 |
msgstr "Définir l’arrière-plan de l’éditeur comme transparent"
|
3763 |
|
3764 |
+
#: pro/includes/fields/field-wysiwyg.php:233
|
3765 |
msgid "Merge Toolbars"
|
3766 |
msgstr "Fusionner les barres d’outils"
|
3767 |
|
3768 |
+
#: pro/includes/fields/field-wysiwyg.php:236
|
3769 |
msgid "Glue editor toolbars together"
|
3770 |
msgstr "Coller les barres d’outils de l’éditeur ensemble"
|
3771 |
|
3772 |
+
#: pro/includes/fields/field-wysiwyg.php:245
|
3773 |
msgid "Customize Toolbar"
|
3774 |
msgstr "Personnaliser la barre d’outils"
|
3775 |
|
3776 |
+
#: pro/includes/fields/field-wysiwyg.php:313
|
3777 |
msgid "+ Add button"
|
3778 |
msgstr "+ Bouton Ajouter"
|
3779 |
|
3780 |
+
#: pro/includes/fields/field-wysiwyg.php:409
|
3781 |
msgid "Custom Toolbar Buttons"
|
3782 |
msgstr "Boutons de barre d’outils personnalisés"
|
3783 |
|
4050 |
msgid "Users"
|
4051 |
msgstr "Utilisateurs"
|
4052 |
|
4053 |
+
#: pro/includes/modules/global-field-condition.php:59
|
4054 |
msgid "Set as Global Conditional Logic"
|
4055 |
msgstr "Définir comme logique conditionnelle globale"
|
4056 |
|
4109 |
msgid "Locations"
|
4110 |
msgstr "Emplacements"
|
4111 |
|
4112 |
+
#: pro/includes/modules/templates.php:73
|
4113 |
msgid "Template"
|
4114 |
msgstr "Modèle"
|
4115 |
|
4116 |
+
#: pro/includes/modules/templates.php:75
|
4117 |
msgid "Edit Template"
|
4118 |
msgstr "Modifier le modèle"
|
4119 |
|
4120 |
+
#: pro/includes/modules/templates.php:76
|
4121 |
msgid "New Template"
|
4122 |
msgstr "Nouveau modèle"
|
4123 |
|
4124 |
+
#: pro/includes/modules/templates.php:172
|
4125 |
msgid "You are currently editing a Dynamic Template."
|
4126 |
msgstr "Vous modifiez actuellement un modèle dynamique."
|
4127 |
|
4128 |
+
#: pro/includes/modules/templates.php:198
|
4129 |
msgid "Instructions"
|
4130 |
msgstr "Instructions"
|
4131 |
|
4132 |
+
#: pro/includes/modules/templates.php:685
|
4133 |
msgid "Dynamic Template"
|
4134 |
msgstr "Modèle dynamique"
|
4135 |
|
4136 |
+
#: pro/includes/modules/templates.php:697
|
4137 |
msgid "is equal to"
|
4138 |
msgstr "est égal à"
|
4139 |
|
4140 |
+
#: pro/includes/modules/templates.php:719
|
4141 |
+
msgid "No templates found"
|
4142 |
+
msgstr "Aucun modèle trouvé"
|
4143 |
|
4144 |
#: pro/includes/updater.php:252
|
4145 |
#, php-format
|
4279 |
msgid "https://www.acf-extended.com"
|
4280 |
msgstr "https://www.acf-extended.com"
|
4281 |
|
4282 |
+
#~ msgid "Payment meta is invalid."
|
4283 |
+
#~ msgstr "Les données meta du paiement sont invalides."
|
4284 |
+
|
4285 |
#~ msgid "Read more..."
|
4286 |
#~ msgstr "Lire la suite…"
|
4287 |
|
lang/acfe.pot
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
#, fuzzy
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
-
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Advanced Custom Fields: Extended\n"
|
6 |
-
"POT-Creation-Date: 2021-
|
7 |
"PO-Revision-Date: 2021-07-27 23:12+0200\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: https://www.acf-extended.com\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"
|
|
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
16 |
"X-Poedit-WPHeader: acf-extended.php\n"
|
@@ -22,26 +22,26 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPathExcluded-0: *.min.js\n"
|
23 |
"X-Poedit-SearchPathExcluded-1: .build\n"
|
24 |
|
25 |
-
#: assets/js/acfe-admin.js:
|
26 |
#: includes/modules/options.php:469 pro/includes/updates.php:361
|
27 |
msgid "Yes"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: assets/js/acfe-admin.js:
|
31 |
#: includes/modules/options.php:468 pro/includes/updates.php:373
|
32 |
msgid "No"
|
33 |
msgstr ""
|
34 |
|
35 |
#: assets/js/acfe-input.js:106 assets/js/acfe-input.js:370
|
36 |
#: assets/js/acfe-input.js:734 assets/js/acfe-input.js:1511
|
37 |
-
#: assets/js/acfe-input.js:
|
38 |
#: includes/field-groups/field-group-meta.php:145
|
39 |
#: includes/fields-settings/data.php:81
|
40 |
#: includes/fields/field-flexible-content.php:616
|
41 |
#: includes/fields/field-flexible-content.php:622 includes/modules/dev.php:129
|
42 |
-
#: pro/assets/js/acfe-pro-admin.js:
|
43 |
#: pro/includes/field-groups/field-group-ui.php:237
|
44 |
-
#: pro/includes/fields/field-payment.php:
|
45 |
#: pro/includes/modules/dev.php:154 pro/includes/modules/dev.php:213
|
46 |
#: pro/includes/modules/dev.php:297 pro/includes/modules/dev.php:345
|
47 |
#: pro/includes/modules/dev.php:393 pro/includes/modules/dev.php:441
|
@@ -179,7 +179,7 @@ msgid ""
|
|
179 |
msgstr ""
|
180 |
|
181 |
#: includes/admin/tools/module-import.php:24
|
182 |
-
#: pro/assets/js/acfe-pro-input.js:
|
183 |
#: pro/includes/admin/tools/settings-import.php:27
|
184 |
msgid "Select File"
|
185 |
msgstr ""
|
@@ -295,7 +295,7 @@ msgstr ""
|
|
295 |
msgid "Add New"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: includes/assets.php:101 pro/assets/js/acfe-pro-input.js:
|
299 |
msgid "Read more"
|
300 |
msgstr ""
|
301 |
|
@@ -303,7 +303,7 @@ msgstr ""
|
|
303 |
msgid "Details"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: includes/assets.php:103 pro/assets/js/acfe-pro-admin.js:
|
307 |
msgid "Debug"
|
308 |
msgstr ""
|
309 |
|
@@ -400,7 +400,7 @@ msgid "Key"
|
|
400 |
msgstr ""
|
401 |
|
402 |
#: includes/field-groups/field-group-meta.php:74
|
403 |
-
#: includes/fields/field-hidden.php:43 includes/modules/options.class.php:
|
404 |
#: pro/includes/field-groups/field-group-ui.php:172
|
405 |
#: pro/includes/fields/field-color-picker.php:132
|
406 |
#: pro/includes/fields/field-image-selector.php:147
|
@@ -495,12 +495,12 @@ msgid "Select %s"
|
|
495 |
msgstr ""
|
496 |
|
497 |
#: includes/field-groups/field-groups-local.php:224
|
498 |
-
#: includes/field-groups/field-groups.php:
|
499 |
msgid "Export PHP"
|
500 |
msgstr ""
|
501 |
|
502 |
#: includes/field-groups/field-groups-local.php:225
|
503 |
-
#: includes/field-groups/field-groups.php:
|
504 |
msgid "Export Json"
|
505 |
msgstr ""
|
506 |
|
@@ -604,31 +604,31 @@ msgstr ""
|
|
604 |
msgid "Review"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: includes/field-groups/field-groups.php:
|
608 |
-
#: includes/field-groups/field-groups.php:
|
609 |
msgctxt "post status"
|
610 |
msgid "Disabled"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: includes/field-groups/field-groups.php:
|
614 |
msgid "Alternative title"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: includes/field-groups/field-groups.php:
|
618 |
-
#: includes/field-groups/field-groups.php:
|
619 |
-
#: includes/field-groups/field-groups.php:
|
620 |
msgid "Located"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: includes/field-groups/field-groups.php:
|
624 |
msgid "in theme:"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: includes/field-groups/field-groups.php:
|
628 |
msgid "in plugin:"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: includes/field-groups/field-groups.php:
|
632 |
msgid "in:"
|
633 |
msgstr ""
|
634 |
|
@@ -756,7 +756,7 @@ msgstr ""
|
|
756 |
#: includes/fields/field-advanced-link.php:422
|
757 |
#: includes/fields/field-clone.php:98 includes/fields/field-clone.php:145
|
758 |
#: includes/fields/field-group.php:83 includes/fields/field-group.php:129
|
759 |
-
#: includes/modules/dev.php:467 includes/modules/options.class.php:
|
760 |
#: includes/modules/options.php:485 includes/modules/ui-settings.php:63
|
761 |
#: includes/modules/ui-term.php:87 includes/modules/ui-user.php:154
|
762 |
#: pro/includes/fields/field-file.php:653
|
@@ -911,7 +911,7 @@ msgstr ""
|
|
911 |
#: includes/fields/field-taxonomies.php:70
|
912 |
#: includes/fields/field-taxonomy-terms.php:840
|
913 |
#: includes/fields/field-user-roles.php:69
|
914 |
-
#: pro/includes/fields/field-block-types.php:
|
915 |
#: pro/includes/fields/field-countries.php:79
|
916 |
#: pro/includes/fields/field-currencies.php:79
|
917 |
#: pro/includes/fields/field-field-groups.php:89
|
@@ -926,7 +926,7 @@ msgstr ""
|
|
926 |
#: pro/includes/fields/field-payment-cart.php:80
|
927 |
#: pro/includes/fields/field-phone-number.php:144
|
928 |
#: pro/includes/fields/field-post-formats.php:72
|
929 |
-
#: pro/includes/fields/field-templates.php:
|
930 |
msgid "Default Value"
|
931 |
msgstr ""
|
932 |
|
@@ -940,13 +940,13 @@ msgstr ""
|
|
940 |
#: includes/fields/field-taxonomies.php:176
|
941 |
#: includes/fields/field-taxonomy-terms.php:905
|
942 |
#: includes/fields/field-user-roles.php:162
|
943 |
-
#: pro/includes/fields/field-block-types.php:
|
944 |
#: pro/includes/fields/field-countries.php:258
|
945 |
#: pro/includes/fields/field-currencies.php:247
|
946 |
#: pro/includes/fields/field-date-picker.php:26
|
947 |
#: pro/includes/fields/field-date-picker.php:107
|
948 |
#: pro/includes/fields/field-date-picker.php:347
|
949 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
950 |
#: pro/includes/fields/field-field-groups.php:196
|
951 |
#: pro/includes/fields/field-field-types.php:197
|
952 |
#: pro/includes/fields/field-fields.php:207
|
@@ -959,7 +959,7 @@ msgstr ""
|
|
959 |
#: pro/includes/fields/field-payment-cart.php:176
|
960 |
#: pro/includes/fields/field-phone-number.php:152
|
961 |
#: pro/includes/fields/field-post-formats.php:164
|
962 |
-
#: pro/includes/fields/field-templates.php:
|
963 |
msgid "Placeholder"
|
964 |
msgstr ""
|
965 |
|
@@ -969,7 +969,7 @@ msgstr ""
|
|
969 |
#: includes/fields/field-slug.php:48 includes/fields/field-taxonomies.php:177
|
970 |
#: includes/fields/field-taxonomy-terms.php:906
|
971 |
#: includes/fields/field-user-roles.php:163
|
972 |
-
#: pro/includes/fields/field-block-types.php:
|
973 |
#: pro/includes/fields/field-countries.php:259
|
974 |
#: pro/includes/fields/field-currencies.php:248
|
975 |
#: pro/includes/fields/field-field-groups.php:197
|
@@ -982,7 +982,7 @@ msgstr ""
|
|
982 |
#: pro/includes/fields/field-options-pages.php:194
|
983 |
#: pro/includes/fields/field-payment-cart.php:177
|
984 |
#: pro/includes/fields/field-post-formats.php:165
|
985 |
-
#: pro/includes/fields/field-templates.php:
|
986 |
msgid "Appears within the input"
|
987 |
msgstr ""
|
988 |
|
@@ -1102,7 +1102,7 @@ msgstr ""
|
|
1102 |
#: includes/fields/field-taxonomies.php:290
|
1103 |
#: includes/fields/field-taxonomy-terms.php:1041
|
1104 |
#: includes/fields/field-user-roles.php:276
|
1105 |
-
#: pro/includes/fields/field-block-types.php:
|
1106 |
#: pro/includes/fields/field-countries.php:372
|
1107 |
#: pro/includes/fields/field-currencies.php:361
|
1108 |
#: pro/includes/fields/field-field-groups.php:310
|
@@ -1117,7 +1117,7 @@ msgstr ""
|
|
1117 |
#: pro/includes/fields/field-payment-cart.php:271
|
1118 |
#: pro/includes/fields/field-payment-selector.php:92
|
1119 |
#: pro/includes/fields/field-post-formats.php:278
|
1120 |
-
#: pro/includes/fields/field-templates.php:
|
1121 |
msgid "Layout"
|
1122 |
msgstr ""
|
1123 |
|
@@ -1287,7 +1287,7 @@ msgstr ""
|
|
1287 |
#: includes/modules/forms.php:100 includes/modules/forms.php:101
|
1288 |
#: includes/modules/forms.php:103 includes/modules/forms.php:105
|
1289 |
#: includes/modules/forms.php:180 pro/includes/locations/settings.php:76
|
1290 |
-
#: pro/includes/modules/templates.php:
|
1291 |
msgid "Forms"
|
1292 |
msgstr ""
|
1293 |
|
@@ -1305,7 +1305,7 @@ msgstr ""
|
|
1305 |
#: includes/fields/field-taxonomies.php:56
|
1306 |
#: includes/fields/field-taxonomy-terms.php:826
|
1307 |
#: includes/fields/field-user-roles.php:55
|
1308 |
-
#: pro/includes/fields/field-block-types.php:
|
1309 |
#: pro/includes/fields/field-countries.php:66
|
1310 |
#: pro/includes/fields/field-currencies.php:66
|
1311 |
#: pro/includes/fields/field-field-groups.php:75
|
@@ -1317,7 +1317,7 @@ msgstr ""
|
|
1317 |
#: pro/includes/fields/field-menus.php:73
|
1318 |
#: pro/includes/fields/field-options-pages.php:73
|
1319 |
#: pro/includes/fields/field-post-formats.php:59
|
1320 |
-
#: pro/includes/fields/field-templates.php:
|
1321 |
msgid "Appearance"
|
1322 |
msgstr ""
|
1323 |
|
@@ -1327,7 +1327,7 @@ msgstr ""
|
|
1327 |
#: includes/fields/field-taxonomies.php:57
|
1328 |
#: includes/fields/field-taxonomy-terms.php:827
|
1329 |
#: includes/fields/field-user-roles.php:56
|
1330 |
-
#: pro/includes/fields/field-block-types.php:
|
1331 |
#: pro/includes/fields/field-countries.php:67
|
1332 |
#: pro/includes/fields/field-currencies.php:67
|
1333 |
#: pro/includes/fields/field-field-groups.php:76
|
@@ -1339,7 +1339,7 @@ msgstr ""
|
|
1339 |
#: pro/includes/fields/field-menus.php:74
|
1340 |
#: pro/includes/fields/field-options-pages.php:74
|
1341 |
#: pro/includes/fields/field-post-formats.php:60
|
1342 |
-
#: pro/includes/fields/field-templates.php:
|
1343 |
msgid "Select the appearance of this field"
|
1344 |
msgstr ""
|
1345 |
|
@@ -1349,7 +1349,7 @@ msgstr ""
|
|
1349 |
#: includes/fields/field-taxonomies.php:62
|
1350 |
#: includes/fields/field-taxonomy-terms.php:832
|
1351 |
#: includes/fields/field-user-roles.php:61
|
1352 |
-
#: pro/includes/fields/field-block-types.php:
|
1353 |
#: pro/includes/fields/field-countries.php:71
|
1354 |
#: pro/includes/fields/field-currencies.php:71
|
1355 |
#: pro/includes/fields/field-field-groups.php:81
|
@@ -1362,7 +1362,7 @@ msgstr ""
|
|
1362 |
#: pro/includes/fields/field-options-pages.php:79
|
1363 |
#: pro/includes/fields/field-payment-cart.php:107
|
1364 |
#: pro/includes/fields/field-post-formats.php:64
|
1365 |
-
#: pro/includes/fields/field-templates.php:
|
1366 |
msgid "Checkbox"
|
1367 |
msgstr ""
|
1368 |
|
@@ -1372,7 +1372,7 @@ msgstr ""
|
|
1372 |
#: includes/fields/field-taxonomies.php:63
|
1373 |
#: includes/fields/field-taxonomy-terms.php:833
|
1374 |
#: includes/fields/field-user-roles.php:62
|
1375 |
-
#: pro/includes/fields/field-block-types.php:
|
1376 |
#: pro/includes/fields/field-countries.php:72
|
1377 |
#: pro/includes/fields/field-currencies.php:72
|
1378 |
#: pro/includes/fields/field-field-groups.php:82
|
@@ -1384,7 +1384,7 @@ msgstr ""
|
|
1384 |
#: pro/includes/fields/field-menus.php:80
|
1385 |
#: pro/includes/fields/field-options-pages.php:80
|
1386 |
#: pro/includes/fields/field-post-formats.php:65
|
1387 |
-
#: pro/includes/fields/field-templates.php:
|
1388 |
msgid "Radio Buttons"
|
1389 |
msgstr ""
|
1390 |
|
@@ -1394,7 +1394,7 @@ msgstr ""
|
|
1394 |
#: includes/fields/field-taxonomies.php:64
|
1395 |
#: includes/fields/field-taxonomy-terms.php:834
|
1396 |
#: includes/fields/field-user-roles.php:63
|
1397 |
-
#: pro/includes/fields/field-block-types.php:
|
1398 |
#: pro/includes/fields/field-countries.php:73
|
1399 |
#: pro/includes/fields/field-currencies.php:73
|
1400 |
#: pro/includes/fields/field-field-groups.php:83
|
@@ -1406,7 +1406,7 @@ msgstr ""
|
|
1406 |
#: pro/includes/fields/field-menus.php:81
|
1407 |
#: pro/includes/fields/field-options-pages.php:81
|
1408 |
#: pro/includes/fields/field-post-formats.php:66
|
1409 |
-
#: pro/includes/fields/field-templates.php:
|
1410 |
msgctxt "noun"
|
1411 |
msgid "Select"
|
1412 |
msgstr ""
|
@@ -1417,7 +1417,7 @@ msgstr ""
|
|
1417 |
#: includes/fields/field-taxonomies.php:71
|
1418 |
#: includes/fields/field-taxonomy-terms.php:841
|
1419 |
#: includes/fields/field-user-roles.php:70
|
1420 |
-
#: pro/includes/fields/field-block-types.php:
|
1421 |
#: pro/includes/fields/field-countries.php:80
|
1422 |
#: pro/includes/fields/field-currencies.php:80
|
1423 |
#: pro/includes/fields/field-field-groups.php:90
|
@@ -1431,7 +1431,7 @@ msgstr ""
|
|
1431 |
#: pro/includes/fields/field-options-pages.php:88
|
1432 |
#: pro/includes/fields/field-payment-cart.php:81
|
1433 |
#: pro/includes/fields/field-post-formats.php:73
|
1434 |
-
#: pro/includes/fields/field-templates.php:
|
1435 |
msgid "Enter each default value on a new line"
|
1436 |
msgstr ""
|
1437 |
|
@@ -1440,7 +1440,7 @@ msgstr ""
|
|
1440 |
#: includes/fields/field-post-types.php:78
|
1441 |
#: includes/fields/field-taxonomies.php:78
|
1442 |
#: includes/fields/field-taxonomy-terms.php:848
|
1443 |
-
#: pro/includes/fields/field-block-types.php:
|
1444 |
#: pro/includes/fields/field-color-picker.php:126
|
1445 |
#: pro/includes/fields/field-countries.php:87
|
1446 |
#: pro/includes/fields/field-currencies.php:102
|
@@ -1453,7 +1453,7 @@ msgstr ""
|
|
1453 |
#: pro/includes/fields/field-menus.php:95
|
1454 |
#: pro/includes/fields/field-options-pages.php:95
|
1455 |
#: pro/includes/fields/field-phone-number.php:160
|
1456 |
-
#: pro/includes/fields/field-templates.php:
|
1457 |
msgid "Return Value"
|
1458 |
msgstr ""
|
1459 |
|
@@ -1471,7 +1471,7 @@ msgstr ""
|
|
1471 |
#: includes/fields/field-taxonomies.php:91
|
1472 |
#: includes/fields/field-taxonomy-terms.php:880
|
1473 |
#: includes/fields/field-user-roles.php:77
|
1474 |
-
#: pro/includes/fields/field-block-types.php:
|
1475 |
#: pro/includes/fields/field-countries.php:174
|
1476 |
#: pro/includes/fields/field-currencies.php:163
|
1477 |
#: pro/includes/fields/field-field-groups.php:111
|
@@ -1485,7 +1485,7 @@ msgstr ""
|
|
1485 |
#: pro/includes/fields/field-options-pages.php:108
|
1486 |
#: pro/includes/fields/field-payment-cart.php:115
|
1487 |
#: pro/includes/fields/field-post-formats.php:80
|
1488 |
-
#: pro/includes/fields/field-templates.php:
|
1489 |
msgid "Allow Null?"
|
1490 |
msgstr ""
|
1491 |
|
@@ -1495,7 +1495,7 @@ msgstr ""
|
|
1495 |
#: includes/fields/field-taxonomies.php:180
|
1496 |
#: includes/fields/field-taxonomy-terms.php:909
|
1497 |
#: includes/fields/field-user-roles.php:166
|
1498 |
-
#: pro/includes/fields/field-block-types.php:
|
1499 |
#: pro/includes/fields/field-countries.php:262
|
1500 |
#: pro/includes/fields/field-currencies.php:251
|
1501 |
#: pro/includes/fields/field-field-groups.php:200
|
@@ -1508,7 +1508,7 @@ msgstr ""
|
|
1508 |
#: pro/includes/fields/field-options-pages.php:197
|
1509 |
#: pro/includes/fields/field-payment-cart.php:180
|
1510 |
#: pro/includes/fields/field-post-formats.php:168
|
1511 |
-
#: pro/includes/fields/field-templates.php:
|
1512 |
msgctxt "verb"
|
1513 |
msgid "Select"
|
1514 |
msgstr ""
|
@@ -1520,7 +1520,7 @@ msgstr ""
|
|
1520 |
#: includes/fields/field-taxonomies.php:243
|
1521 |
#: includes/fields/field-taxonomy-terms.php:972
|
1522 |
#: includes/fields/field-user-roles.php:229
|
1523 |
-
#: pro/includes/fields/field-block-types.php:
|
1524 |
#: pro/includes/fields/field-countries.php:325
|
1525 |
#: pro/includes/fields/field-currencies.php:314
|
1526 |
#: pro/includes/fields/field-field-groups.php:263
|
@@ -1533,7 +1533,7 @@ msgstr ""
|
|
1533 |
#: pro/includes/fields/field-options-pages.php:260
|
1534 |
#: pro/includes/fields/field-payment-cart.php:243
|
1535 |
#: pro/includes/fields/field-post-formats.php:231
|
1536 |
-
#: pro/includes/fields/field-templates.php:
|
1537 |
msgid "Search Input Placeholder"
|
1538 |
msgstr ""
|
1539 |
|
@@ -1544,7 +1544,7 @@ msgstr ""
|
|
1544 |
#: includes/fields/field-taxonomies.php:244
|
1545 |
#: includes/fields/field-taxonomy-terms.php:973
|
1546 |
#: includes/fields/field-user-roles.php:230
|
1547 |
-
#: pro/includes/fields/field-block-types.php:
|
1548 |
#: pro/includes/fields/field-countries.php:326
|
1549 |
#: pro/includes/fields/field-currencies.php:315
|
1550 |
#: pro/includes/fields/field-field-groups.php:264
|
@@ -1557,7 +1557,7 @@ msgstr ""
|
|
1557 |
#: pro/includes/fields/field-options-pages.php:261
|
1558 |
#: pro/includes/fields/field-payment-cart.php:244
|
1559 |
#: pro/includes/fields/field-post-formats.php:232
|
1560 |
-
#: pro/includes/fields/field-templates.php:
|
1561 |
msgid "Appears within the search input"
|
1562 |
msgstr ""
|
1563 |
|
@@ -1567,7 +1567,7 @@ msgstr ""
|
|
1567 |
#: includes/fields/field-taxonomies.php:116
|
1568 |
#: includes/fields/field-taxonomy-terms.php:1000
|
1569 |
#: includes/fields/field-user-roles.php:102
|
1570 |
-
#: pro/includes/fields/field-block-types.php:
|
1571 |
#: pro/includes/fields/field-countries.php:199
|
1572 |
#: pro/includes/fields/field-currencies.php:188
|
1573 |
#: pro/includes/fields/field-field-groups.php:136
|
@@ -1581,7 +1581,7 @@ msgstr ""
|
|
1581 |
#: pro/includes/fields/field-options-pages.php:133
|
1582 |
#: pro/includes/fields/field-payment-cart.php:140
|
1583 |
#: pro/includes/fields/field-post-formats.php:105
|
1584 |
-
#: pro/includes/fields/field-templates.php:
|
1585 |
msgid "Select multiple values?"
|
1586 |
msgstr ""
|
1587 |
|
@@ -1591,7 +1591,7 @@ msgstr ""
|
|
1591 |
#: includes/fields/field-taxonomies.php:134
|
1592 |
#: includes/fields/field-taxonomy-terms.php:862
|
1593 |
#: includes/fields/field-user-roles.php:120
|
1594 |
-
#: pro/includes/fields/field-block-types.php:
|
1595 |
#: pro/includes/fields/field-countries.php:217
|
1596 |
#: pro/includes/fields/field-currencies.php:206
|
1597 |
#: pro/includes/fields/field-field-groups.php:154
|
@@ -1605,7 +1605,7 @@ msgstr ""
|
|
1605 |
#: pro/includes/fields/field-payment-cart.php:158
|
1606 |
#: pro/includes/fields/field-payment-selector.php:112
|
1607 |
#: pro/includes/fields/field-post-formats.php:123
|
1608 |
-
#: pro/includes/fields/field-templates.php:
|
1609 |
msgid "Stylised UI"
|
1610 |
msgstr ""
|
1611 |
|
@@ -1615,7 +1615,7 @@ msgstr ""
|
|
1615 |
#: includes/fields/field-taxonomies.php:153
|
1616 |
#: includes/fields/field-taxonomy-terms.php:1018
|
1617 |
#: includes/fields/field-user-roles.php:139
|
1618 |
-
#: pro/includes/fields/field-block-types.php:
|
1619 |
#: pro/includes/fields/field-countries.php:235
|
1620 |
#: pro/includes/fields/field-currencies.php:224
|
1621 |
#: pro/includes/fields/field-field-groups.php:173
|
@@ -1627,7 +1627,7 @@ msgstr ""
|
|
1627 |
#: pro/includes/fields/field-menus.php:171
|
1628 |
#: pro/includes/fields/field-options-pages.php:170
|
1629 |
#: pro/includes/fields/field-post-formats.php:141
|
1630 |
-
#: pro/includes/fields/field-templates.php:
|
1631 |
msgid "Use AJAX to lazy load choices?"
|
1632 |
msgstr ""
|
1633 |
|
@@ -1636,7 +1636,7 @@ msgstr ""
|
|
1636 |
#: includes/fields/field-post-types.php:271
|
1637 |
#: includes/fields/field-taxonomies.php:271
|
1638 |
#: includes/fields/field-user-roles.php:257
|
1639 |
-
#: pro/includes/fields/field-block-types.php:
|
1640 |
#: pro/includes/fields/field-countries.php:353
|
1641 |
#: pro/includes/fields/field-currencies.php:342
|
1642 |
#: pro/includes/fields/field-field-groups.php:291
|
@@ -1648,7 +1648,7 @@ msgstr ""
|
|
1648 |
#: pro/includes/fields/field-menus.php:289
|
1649 |
#: pro/includes/fields/field-options-pages.php:288
|
1650 |
#: pro/includes/fields/field-post-formats.php:259
|
1651 |
-
#: pro/includes/fields/field-templates.php:
|
1652 |
msgid "Other"
|
1653 |
msgstr ""
|
1654 |
|
@@ -1657,7 +1657,7 @@ msgstr ""
|
|
1657 |
#: includes/fields/field-post-types.php:276
|
1658 |
#: includes/fields/field-taxonomies.php:276
|
1659 |
#: includes/fields/field-user-roles.php:262
|
1660 |
-
#: pro/includes/fields/field-block-types.php:
|
1661 |
#: pro/includes/fields/field-countries.php:358
|
1662 |
#: pro/includes/fields/field-currencies.php:347
|
1663 |
#: pro/includes/fields/field-field-groups.php:296
|
@@ -1669,7 +1669,7 @@ msgstr ""
|
|
1669 |
#: pro/includes/fields/field-menus.php:294
|
1670 |
#: pro/includes/fields/field-options-pages.php:293
|
1671 |
#: pro/includes/fields/field-post-formats.php:264
|
1672 |
-
#: pro/includes/fields/field-templates.php:
|
1673 |
msgid "Add 'other' choice to allow for custom values"
|
1674 |
msgstr ""
|
1675 |
|
@@ -1687,7 +1687,7 @@ msgstr ""
|
|
1687 |
#: includes/fields/field-taxonomies.php:296
|
1688 |
#: includes/fields/field-taxonomy-terms.php:1047
|
1689 |
#: includes/fields/field-user-roles.php:282
|
1690 |
-
#: pro/includes/fields/field-block-types.php:
|
1691 |
#: pro/includes/fields/field-countries.php:378
|
1692 |
#: pro/includes/fields/field-currencies.php:367
|
1693 |
#: pro/includes/fields/field-field-groups.php:316
|
@@ -1702,7 +1702,7 @@ msgstr ""
|
|
1702 |
#: pro/includes/fields/field-payment-cart.php:277
|
1703 |
#: pro/includes/fields/field-payment-selector.php:98
|
1704 |
#: pro/includes/fields/field-post-formats.php:284
|
1705 |
-
#: pro/includes/fields/field-templates.php:
|
1706 |
msgid "Vertical"
|
1707 |
msgstr ""
|
1708 |
|
@@ -1712,7 +1712,7 @@ msgstr ""
|
|
1712 |
#: includes/fields/field-taxonomies.php:297
|
1713 |
#: includes/fields/field-taxonomy-terms.php:1048
|
1714 |
#: includes/fields/field-user-roles.php:283
|
1715 |
-
#: pro/includes/fields/field-block-types.php:
|
1716 |
#: pro/includes/fields/field-countries.php:379
|
1717 |
#: pro/includes/fields/field-currencies.php:368
|
1718 |
#: pro/includes/fields/field-field-groups.php:317
|
@@ -1727,7 +1727,7 @@ msgstr ""
|
|
1727 |
#: pro/includes/fields/field-payment-cart.php:278
|
1728 |
#: pro/includes/fields/field-payment-selector.php:99
|
1729 |
#: pro/includes/fields/field-post-formats.php:285
|
1730 |
-
#: pro/includes/fields/field-templates.php:
|
1731 |
msgid "Horizontal"
|
1732 |
msgstr ""
|
1733 |
|
@@ -1737,7 +1737,7 @@ msgstr ""
|
|
1737 |
#: includes/fields/field-taxonomies.php:319
|
1738 |
#: includes/fields/field-taxonomy-terms.php:1070
|
1739 |
#: includes/fields/field-user-roles.php:305
|
1740 |
-
#: pro/includes/fields/field-block-types.php:
|
1741 |
#: pro/includes/fields/field-countries.php:401
|
1742 |
#: pro/includes/fields/field-currencies.php:390
|
1743 |
#: pro/includes/fields/field-field-groups.php:339
|
@@ -1750,7 +1750,7 @@ msgstr ""
|
|
1750 |
#: pro/includes/fields/field-options-pages.php:336
|
1751 |
#: pro/includes/fields/field-payment-cart.php:300
|
1752 |
#: pro/includes/fields/field-post-formats.php:307
|
1753 |
-
#: pro/includes/fields/field-templates.php:
|
1754 |
msgid "Toggle"
|
1755 |
msgstr ""
|
1756 |
|
@@ -1760,7 +1760,7 @@ msgstr ""
|
|
1760 |
#: includes/fields/field-taxonomies.php:320
|
1761 |
#: includes/fields/field-taxonomy-terms.php:1071
|
1762 |
#: includes/fields/field-user-roles.php:306
|
1763 |
-
#: pro/includes/fields/field-block-types.php:
|
1764 |
#: pro/includes/fields/field-countries.php:402
|
1765 |
#: pro/includes/fields/field-currencies.php:391
|
1766 |
#: pro/includes/fields/field-field-groups.php:340
|
@@ -1773,7 +1773,7 @@ msgstr ""
|
|
1773 |
#: pro/includes/fields/field-options-pages.php:337
|
1774 |
#: pro/includes/fields/field-payment-cart.php:301
|
1775 |
#: pro/includes/fields/field-post-formats.php:308
|
1776 |
-
#: pro/includes/fields/field-templates.php:
|
1777 |
msgid "Prepend an extra checkbox to toggle all choices"
|
1778 |
msgstr ""
|
1779 |
|
@@ -1782,7 +1782,7 @@ msgstr ""
|
|
1782 |
#: includes/fields/field-post-types.php:337 includes/fields/field-select.php:49
|
1783 |
#: includes/fields/field-taxonomies.php:337
|
1784 |
#: includes/fields/field-user-roles.php:323
|
1785 |
-
#: pro/includes/fields/field-block-types.php:
|
1786 |
#: pro/includes/fields/field-countries.php:419
|
1787 |
#: pro/includes/fields/field-currencies.php:408
|
1788 |
#: pro/includes/fields/field-field-groups.php:357
|
@@ -1794,7 +1794,7 @@ msgstr ""
|
|
1794 |
#: pro/includes/fields/field-menus.php:355
|
1795 |
#: pro/includes/fields/field-options-pages.php:354
|
1796 |
#: pro/includes/fields/field-post-formats.php:325
|
1797 |
-
#: pro/includes/fields/field-templates.php:
|
1798 |
msgid "Allow Custom"
|
1799 |
msgstr ""
|
1800 |
|
@@ -1803,7 +1803,7 @@ msgstr ""
|
|
1803 |
#: includes/fields/field-post-types.php:342 includes/fields/field-select.php:54
|
1804 |
#: includes/fields/field-taxonomies.php:342
|
1805 |
#: includes/fields/field-user-roles.php:328
|
1806 |
-
#: pro/includes/fields/field-block-types.php:
|
1807 |
#: pro/includes/fields/field-countries.php:424
|
1808 |
#: pro/includes/fields/field-currencies.php:413
|
1809 |
#: pro/includes/fields/field-field-groups.php:362
|
@@ -1815,7 +1815,7 @@ msgstr ""
|
|
1815 |
#: pro/includes/fields/field-menus.php:360
|
1816 |
#: pro/includes/fields/field-options-pages.php:359
|
1817 |
#: pro/includes/fields/field-post-formats.php:330
|
1818 |
-
#: pro/includes/fields/field-templates.php:
|
1819 |
msgid "Allow 'custom' values to be added"
|
1820 |
msgstr ""
|
1821 |
|
@@ -1977,12 +1977,12 @@ msgstr ""
|
|
1977 |
|
1978 |
#: includes/fields/field-recaptcha.php:242
|
1979 |
#: includes/fields/field-recaptcha.php:248
|
1980 |
-
#: pro/includes/fields/field-payment.php:
|
1981 |
-
#: pro/includes/fields/field-payment.php:
|
1982 |
-
#: pro/includes/fields/field-payment.php:
|
1983 |
-
#: pro/includes/fields/field-payment.php:
|
1984 |
-
#: pro/includes/fields/field-payment.php:
|
1985 |
-
#: pro/includes/fields/field-payment.php:
|
1986 |
msgid "An error has occured"
|
1987 |
msgstr ""
|
1988 |
|
@@ -2151,7 +2151,7 @@ msgid "Author"
|
|
2151 |
msgstr ""
|
2152 |
|
2153 |
#: includes/modules/block-types.php:24 includes/modules/forms.php:25
|
2154 |
-
#: includes/modules/options.class.php:
|
2155 |
#: includes/modules/post-types.php:24 includes/modules/taxonomies.php:24
|
2156 |
#: pro/includes/fields/field-post-field.php:42
|
2157 |
msgid "Name"
|
@@ -2177,7 +2177,7 @@ msgstr ""
|
|
2177 |
|
2178 |
#: includes/modules/dev.php:129 includes/modules/options-pages.php:315
|
2179 |
#: includes/modules/post-types.php:175 includes/modules/taxonomies.php:262
|
2180 |
-
#: pro/includes/fields/field-payment.php:
|
2181 |
#: pro/includes/modules/dev.php:154 pro/includes/modules/dev.php:213
|
2182 |
#: pro/includes/modules/dev.php:297 pro/includes/modules/dev.php:345
|
2183 |
#: pro/includes/modules/dev.php:393 pro/includes/modules/dev.php:441
|
@@ -2186,8 +2186,8 @@ msgid "View"
|
|
2186 |
msgstr ""
|
2187 |
|
2188 |
#: includes/modules/dev.php:472 includes/modules/dev.php:515
|
2189 |
-
#: includes/modules/options.class.php:
|
2190 |
-
#: includes/modules/options.class.php:
|
2191 |
msgid "Delete"
|
2192 |
msgstr ""
|
2193 |
|
@@ -2209,7 +2209,7 @@ msgstr ""
|
|
2209 |
|
2210 |
#: includes/modules/forms-action-custom.php:82
|
2211 |
#: includes/modules/forms-action-email.php:310
|
2212 |
-
#: includes/modules/forms-action-post.php:
|
2213 |
#: includes/modules/forms-action-redirect.php:87
|
2214 |
#: includes/modules/forms-action-term.php:486
|
2215 |
#: includes/modules/forms-action-user.php:982 includes/modules/forms.php:174
|
@@ -2319,22 +2319,22 @@ msgstr ""
|
|
2319 |
msgid "Input is invalid: Must be a json string or an array."
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: includes/modules/module.php:
|
2323 |
#, php-format
|
2324 |
msgid "Active <span class=\"count\">(%s)</span>"
|
2325 |
msgid_plural "Active <span class=\"count\">(%s)</span>"
|
2326 |
msgstr[0] ""
|
2327 |
msgstr[1] ""
|
2328 |
|
2329 |
-
#: includes/modules/module.php:
|
2330 |
msgid "Export "
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#: includes/modules/module.php:
|
2334 |
msgid "Active"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
-
#: includes/modules/module.php:
|
2338 |
msgid "Inactive"
|
2339 |
msgstr ""
|
2340 |
|
@@ -2346,7 +2346,7 @@ msgstr ""
|
|
2346 |
msgid "Post ID"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: includes/modules/options-pages.php:26 includes/modules/options.class.php:
|
2350 |
#: includes/modules/options.php:453
|
2351 |
msgid "Autoload"
|
2352 |
msgstr ""
|
@@ -2363,11 +2363,11 @@ msgstr ""
|
|
2363 |
msgid "Option"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: includes/modules/options.class.php:
|
2367 |
msgid "No options avaliable."
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: includes/modules/options.class.php:
|
2371 |
#: pro/includes/modules/dev.php:145 pro/includes/modules/dev.php:204
|
2372 |
#: pro/includes/modules/dev.php:255 pro/includes/modules/dev.php:292
|
2373 |
#: pro/includes/modules/dev.php:340 pro/includes/modules/dev.php:388
|
@@ -2462,34 +2462,34 @@ msgstr ""
|
|
2462 |
msgid "Clear"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
-
#: pro/assets/js/acfe-pro-input.js:
|
2466 |
msgid "Maximum items reached ({max} items)"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
-
#: pro/assets/js/acfe-pro-input.js:
|
2470 |
msgid "Edit File"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#: pro/assets/js/acfe-pro-input.js:
|
2474 |
msgid "Update File"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#: pro/assets/js/acfe-pro-input.js:
|
2478 |
msgid "This field has a limit of {max} {label} {identifier}"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: pro/assets/js/acfe-pro-input.js:
|
2482 |
#: pro/includes/fields/field-flexible-content-locations.php:180
|
2483 |
msgid "layout"
|
2484 |
msgid_plural "layouts"
|
2485 |
msgstr[0] ""
|
2486 |
msgstr[1] ""
|
2487 |
|
2488 |
-
#: pro/assets/js/acfe-pro-input.js:
|
2489 |
msgid "OK"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
-
#: pro/assets/js/acfe-pro-input.js:
|
2493 |
msgid "Cancel"
|
2494 |
msgstr ""
|
2495 |
|
@@ -2586,19 +2586,19 @@ msgstr ""
|
|
2586 |
msgid "Block Types"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: pro/includes/fields/field-block-types.php:
|
2590 |
msgid "Allow Block Types"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: pro/includes/fields/field-block-types.php:
|
2594 |
msgid "All block types"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#: pro/includes/fields/field-block-types.php:
|
2598 |
msgid "Block type object"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#: pro/includes/fields/field-block-types.php:
|
2602 |
msgid "Block type name"
|
2603 |
msgstr ""
|
2604 |
|
@@ -2642,7 +2642,7 @@ msgid "Text Input"
|
|
2642 |
msgstr ""
|
2643 |
|
2644 |
#: pro/includes/fields/field-color-picker.php:207
|
2645 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2646 |
msgid "Allow null"
|
2647 |
msgstr ""
|
2648 |
|
@@ -2714,7 +2714,7 @@ msgstr ""
|
|
2714 |
|
2715 |
#: pro/includes/fields/field-countries.php:113
|
2716 |
#: pro/includes/fields/field-currencies.php:87
|
2717 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2718 |
#: pro/includes/fields/field-image-sizes.php:116
|
2719 |
#: pro/includes/fields/field-languages.php:131
|
2720 |
#: pro/includes/fields/field-payment-cart.php:88
|
@@ -2723,7 +2723,7 @@ msgstr ""
|
|
2723 |
|
2724 |
#: pro/includes/fields/field-countries.php:114
|
2725 |
#: pro/includes/fields/field-currencies.php:88
|
2726 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2727 |
#: pro/includes/fields/field-languages.php:132
|
2728 |
#: pro/includes/fields/field-payment-cart.php:89
|
2729 |
msgid "The format displayed when editing a post"
|
@@ -2731,8 +2731,8 @@ msgstr ""
|
|
2731 |
|
2732 |
#: pro/includes/fields/field-countries.php:122
|
2733 |
#: pro/includes/fields/field-currencies.php:96
|
2734 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2735 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2736 |
#: pro/includes/fields/field-languages.php:140
|
2737 |
#: pro/includes/fields/field-payment-cart.php:96
|
2738 |
msgid "Custom:"
|
@@ -2793,13 +2793,13 @@ msgstr ""
|
|
2793 |
|
2794 |
#: pro/includes/fields/field-date-picker.php:35
|
2795 |
#: pro/includes/fields/field-date-picker.php:117
|
2796 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2797 |
msgid "Date Restriction"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
#: pro/includes/fields/field-date-picker.php:60
|
2801 |
#: pro/includes/fields/field-date-picker.php:167
|
2802 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2803 |
msgid "No Weekends"
|
2804 |
msgstr ""
|
2805 |
|
@@ -2827,35 +2827,39 @@ msgstr ""
|
|
2827 |
msgid "Date Range Picker"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2831 |
msgid "Return Format"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2835 |
msgid "The format returned via template functions"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2839 |
msgid "Week Starts On"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2843 |
msgid "Separator"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2847 |
msgid "Default Date"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2851 |
msgid "Range Restriction"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
2855 |
msgid "Custom Ranges"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
-
#: pro/includes/fields/field-date-range-picker.php:
|
|
|
|
|
|
|
|
|
2859 |
msgid "Auto Close on Selection"
|
2860 |
msgstr ""
|
2861 |
|
@@ -3287,8 +3291,8 @@ msgid "Choose your payment gateways"
|
|
3287 |
msgstr ""
|
3288 |
|
3289 |
#: pro/includes/fields/field-payment.php:79
|
3290 |
-
#: pro/includes/fields/field-payment.php:
|
3291 |
-
#: pro/includes/fields/field-payment.php:
|
3292 |
msgid "Amount"
|
3293 |
msgstr ""
|
3294 |
|
@@ -3375,8 +3379,6 @@ msgid "Your PayPal Production Credentials"
|
|
3375 |
msgstr ""
|
3376 |
|
3377 |
#: pro/includes/fields/field-payment.php:314
|
3378 |
-
#: pro/includes/fields/field-payment.php:417
|
3379 |
-
#: pro/includes/fields/field-payment.php:1151
|
3380 |
msgid "Mode"
|
3381 |
msgstr ""
|
3382 |
|
@@ -3385,62 +3387,60 @@ msgid "Switch API mode"
|
|
3385 |
msgstr ""
|
3386 |
|
3387 |
#: pro/includes/fields/field-payment.php:320
|
3388 |
-
#: pro/includes/fields/field-payment.php:
|
|
|
|
|
3389 |
msgid "Test"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
#: pro/includes/fields/field-payment.php:321
|
3393 |
-
#: pro/includes/fields/field-payment.php:
|
3394 |
msgid "Production"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
-
#: pro/includes/fields/field-payment.php:
|
3398 |
-
|
3399 |
-
msgstr ""
|
3400 |
-
|
3401 |
-
#: pro/includes/fields/field-payment.php:412
|
3402 |
-
#: pro/includes/fields/field-payment.php:1148
|
3403 |
msgid "Gateway"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: pro/includes/fields/field-payment.php:
|
3407 |
-
#: pro/includes/fields/field-payment.php:
|
3408 |
msgid "Items"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
-
#: pro/includes/fields/field-payment.php:
|
3412 |
-
#: pro/includes/fields/field-payment.php:
|
3413 |
#: pro/includes/fields/field-post-field.php:38
|
3414 |
msgid "Date"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
-
#: pro/includes/fields/field-payment.php:
|
3418 |
-
#: pro/includes/fields/field-payment.php:
|
3419 |
msgid "IP Address"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: pro/includes/fields/field-payment.php:
|
3423 |
-
#: pro/includes/fields/field-payment.php:
|
3424 |
msgid "Payment ID"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
-
#: pro/includes/fields/field-payment.php:
|
3428 |
msgid "Payment Object"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
-
#: pro/includes/fields/field-payment.php:
|
3432 |
msgid "PayPal Checkout"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
-
#: pro/includes/fields/field-payment.php:
|
3436 |
msgid "Amount can't be null"
|
3437 |
msgstr ""
|
3438 |
|
3439 |
-
#: pro/includes/fields/field-payment.php:
|
3440 |
msgid "Payment failed"
|
3441 |
msgstr ""
|
3442 |
|
3443 |
-
#: pro/includes/fields/field-payment.php:
|
3444 |
msgid "Your card number is invalid"
|
3445 |
msgstr ""
|
3446 |
|
@@ -3611,114 +3611,122 @@ msgid "No Preference"
|
|
3611 |
msgstr ""
|
3612 |
|
3613 |
#: pro/includes/fields/field-templates.php:13
|
3614 |
-
#: pro/includes/modules/templates.php:
|
3615 |
-
#: pro/includes/modules/templates.php:
|
3616 |
msgid "Templates"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
-
#: pro/includes/fields/field-templates.php:
|
3620 |
msgid "Allow Templates"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
-
#: pro/includes/fields/field-templates.php:
|
3624 |
msgid "All templates"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
-
#: pro/includes/fields/field-templates.php:
|
3628 |
msgid "Template ID"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
-
#: pro/includes/fields/field-templates.php:
|
3632 |
msgid "Template name"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
#: pro/includes/fields/field-wysiwyg.php:38
|
3636 |
-
|
3637 |
-
|
3638 |
-
|
|
|
|
|
3639 |
msgstr ""
|
3640 |
|
|
|
|
|
3641 |
#: pro/includes/fields/field-wysiwyg.php:103
|
|
|
|
|
|
|
|
|
3642 |
msgid "Valid Elements"
|
3643 |
msgstr ""
|
3644 |
|
3645 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3646 |
msgid "Set custom valid HTML tags"
|
3647 |
msgstr ""
|
3648 |
|
3649 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3650 |
msgid "Custom Style"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3654 |
msgid "Add multiple files separated with comma"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3658 |
msgid "Disable WP Style"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3662 |
msgid "Remove TinyMCE builtin stylesheets"
|
3663 |
msgstr ""
|
3664 |
|
3665 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3666 |
msgid "Autoresize"
|
3667 |
msgstr ""
|
3668 |
|
3669 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3670 |
msgid "Height will be based on the editor content"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3674 |
msgid "Disable Resize"
|
3675 |
msgstr ""
|
3676 |
|
3677 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3678 |
msgid "Remove the editor resize functionality"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3682 |
msgid "Disable Path"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3686 |
msgid "Hide the editor path status bar"
|
3687 |
msgstr ""
|
3688 |
|
3689 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3690 |
msgid "Menu Bar"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3694 |
msgid "Show the menu bar on top of the editor"
|
3695 |
msgstr ""
|
3696 |
|
3697 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3698 |
msgid "Transparent Editor"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3702 |
msgid "Set the editor's background as transparent"
|
3703 |
msgstr ""
|
3704 |
|
3705 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3706 |
msgid "Merge Toolbars"
|
3707 |
msgstr ""
|
3708 |
|
3709 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3710 |
msgid "Glue editor toolbars together"
|
3711 |
msgstr ""
|
3712 |
|
3713 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3714 |
msgid "Customize Toolbar"
|
3715 |
msgstr ""
|
3716 |
|
3717 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3718 |
msgid "+ Add button"
|
3719 |
msgstr ""
|
3720 |
|
3721 |
-
#: pro/includes/fields/field-wysiwyg.php:
|
3722 |
msgid "Custom Toolbar Buttons"
|
3723 |
msgstr ""
|
3724 |
|
@@ -3991,7 +3999,7 @@ msgstr ""
|
|
3991 |
msgid "Users"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
#: pro/includes/modules/global-field-condition.php:
|
3995 |
msgid "Set as Global Conditional Logic"
|
3996 |
msgstr ""
|
3997 |
|
@@ -4050,36 +4058,36 @@ msgstr ""
|
|
4050 |
msgid "Locations"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
-
#: pro/includes/modules/templates.php:
|
4054 |
msgid "Template"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
-
#: pro/includes/modules/templates.php:
|
4058 |
msgid "Edit Template"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
-
#: pro/includes/modules/templates.php:
|
4062 |
msgid "New Template"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
-
#: pro/includes/modules/templates.php:
|
4066 |
msgid "You are currently editing a Dynamic Template."
|
4067 |
msgstr ""
|
4068 |
|
4069 |
-
#: pro/includes/modules/templates.php:
|
4070 |
msgid "Instructions"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
-
#: pro/includes/modules/templates.php:
|
4074 |
msgid "Dynamic Template"
|
4075 |
msgstr ""
|
4076 |
|
4077 |
-
#: pro/includes/modules/templates.php:
|
4078 |
msgid "is equal to"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
-
#: pro/includes/modules/templates.php:
|
4082 |
-
msgid "No
|
4083 |
msgstr ""
|
4084 |
|
4085 |
#: pro/includes/updater.php:252
|
1 |
#, fuzzy
|
2 |
msgid ""
|
3 |
msgstr ""
|
|
|
4 |
"Project-Id-Version: Advanced Custom Fields: Extended\n"
|
5 |
+
"POT-Creation-Date: 2021-12-23 07:26+0100\n"
|
6 |
"PO-Revision-Date: 2021-07-27 23:12+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: https://www.acf-extended.com\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
13 |
+
"X-Generator: Poedit 3.0.1\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
16 |
"X-Poedit-WPHeader: acf-extended.php\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.min.js\n"
|
23 |
"X-Poedit-SearchPathExcluded-1: .build\n"
|
24 |
|
25 |
+
#: assets/js/acfe-admin.js:476 includes/modules/options-pages.php:301
|
26 |
#: includes/modules/options.php:469 pro/includes/updates.php:361
|
27 |
msgid "Yes"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: assets/js/acfe-admin.js:477 includes/modules/options-pages.php:297
|
31 |
#: includes/modules/options.php:468 pro/includes/updates.php:373
|
32 |
msgid "No"
|
33 |
msgstr ""
|
34 |
|
35 |
#: assets/js/acfe-input.js:106 assets/js/acfe-input.js:370
|
36 |
#: assets/js/acfe-input.js:734 assets/js/acfe-input.js:1511
|
37 |
+
#: assets/js/acfe-input.js:2269 includes/assets.php:100
|
38 |
#: includes/field-groups/field-group-meta.php:145
|
39 |
#: includes/fields-settings/data.php:81
|
40 |
#: includes/fields/field-flexible-content.php:616
|
41 |
#: includes/fields/field-flexible-content.php:622 includes/modules/dev.php:129
|
42 |
+
#: pro/assets/js/acfe-pro-admin.js:377 pro/assets/js/acfe-pro-input.js:631
|
43 |
#: pro/includes/field-groups/field-group-ui.php:237
|
44 |
+
#: pro/includes/fields/field-payment.php:414 pro/includes/modules/dev.php:77
|
45 |
#: pro/includes/modules/dev.php:154 pro/includes/modules/dev.php:213
|
46 |
#: pro/includes/modules/dev.php:297 pro/includes/modules/dev.php:345
|
47 |
#: pro/includes/modules/dev.php:393 pro/includes/modules/dev.php:441
|
179 |
msgstr ""
|
180 |
|
181 |
#: includes/admin/tools/module-import.php:24
|
182 |
+
#: pro/assets/js/acfe-pro-input.js:1054 pro/assets/js/acfe-pro-input.js:1072
|
183 |
#: pro/includes/admin/tools/settings-import.php:27
|
184 |
msgid "Select File"
|
185 |
msgstr ""
|
295 |
msgid "Add New"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: includes/assets.php:101 pro/assets/js/acfe-pro-input.js:4986
|
299 |
msgid "Read more"
|
300 |
msgstr ""
|
301 |
|
303 |
msgid "Details"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: includes/assets.php:103 pro/assets/js/acfe-pro-admin.js:377
|
307 |
msgid "Debug"
|
308 |
msgstr ""
|
309 |
|
400 |
msgstr ""
|
401 |
|
402 |
#: includes/field-groups/field-group-meta.php:74
|
403 |
+
#: includes/fields/field-hidden.php:43 includes/modules/options.class.php:200
|
404 |
#: pro/includes/field-groups/field-group-ui.php:172
|
405 |
#: pro/includes/fields/field-color-picker.php:132
|
406 |
#: pro/includes/fields/field-image-selector.php:147
|
495 |
msgstr ""
|
496 |
|
497 |
#: includes/field-groups/field-groups-local.php:224
|
498 |
+
#: includes/field-groups/field-groups.php:712
|
499 |
msgid "Export PHP"
|
500 |
msgstr ""
|
501 |
|
502 |
#: includes/field-groups/field-groups-local.php:225
|
503 |
+
#: includes/field-groups/field-groups.php:713
|
504 |
msgid "Export Json"
|
505 |
msgstr ""
|
506 |
|
604 |
msgid "Review"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: includes/field-groups/field-groups.php:643
|
608 |
+
#: includes/field-groups/field-groups.php:653 includes/modules/module.php:322
|
609 |
msgctxt "post status"
|
610 |
msgid "Disabled"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: includes/field-groups/field-groups.php:664
|
614 |
msgid "Alternative title"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: includes/field-groups/field-groups.php:780
|
618 |
+
#: includes/field-groups/field-groups.php:790
|
619 |
+
#: includes/field-groups/field-groups.php:800
|
620 |
msgid "Located"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: includes/field-groups/field-groups.php:783
|
624 |
msgid "in theme:"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: includes/field-groups/field-groups.php:793
|
628 |
msgid "in plugin:"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: includes/field-groups/field-groups.php:803
|
632 |
msgid "in:"
|
633 |
msgstr ""
|
634 |
|
756 |
#: includes/fields/field-advanced-link.php:422
|
757 |
#: includes/fields/field-clone.php:98 includes/fields/field-clone.php:145
|
758 |
#: includes/fields/field-group.php:83 includes/fields/field-group.php:129
|
759 |
+
#: includes/modules/dev.php:467 includes/modules/options.class.php:181
|
760 |
#: includes/modules/options.php:485 includes/modules/ui-settings.php:63
|
761 |
#: includes/modules/ui-term.php:87 includes/modules/ui-user.php:154
|
762 |
#: pro/includes/fields/field-file.php:653
|
911 |
#: includes/fields/field-taxonomies.php:70
|
912 |
#: includes/fields/field-taxonomy-terms.php:840
|
913 |
#: includes/fields/field-user-roles.php:69
|
914 |
+
#: pro/includes/fields/field-block-types.php:89
|
915 |
#: pro/includes/fields/field-countries.php:79
|
916 |
#: pro/includes/fields/field-currencies.php:79
|
917 |
#: pro/includes/fields/field-field-groups.php:89
|
926 |
#: pro/includes/fields/field-payment-cart.php:80
|
927 |
#: pro/includes/fields/field-phone-number.php:144
|
928 |
#: pro/includes/fields/field-post-formats.php:72
|
929 |
+
#: pro/includes/fields/field-templates.php:93
|
930 |
msgid "Default Value"
|
931 |
msgstr ""
|
932 |
|
940 |
#: includes/fields/field-taxonomies.php:176
|
941 |
#: includes/fields/field-taxonomy-terms.php:905
|
942 |
#: includes/fields/field-user-roles.php:162
|
943 |
+
#: pro/includes/fields/field-block-types.php:194
|
944 |
#: pro/includes/fields/field-countries.php:258
|
945 |
#: pro/includes/fields/field-currencies.php:247
|
946 |
#: pro/includes/fields/field-date-picker.php:26
|
947 |
#: pro/includes/fields/field-date-picker.php:107
|
948 |
#: pro/includes/fields/field-date-picker.php:347
|
949 |
+
#: pro/includes/fields/field-date-range-picker.php:93
|
950 |
#: pro/includes/fields/field-field-groups.php:196
|
951 |
#: pro/includes/fields/field-field-types.php:197
|
952 |
#: pro/includes/fields/field-fields.php:207
|
959 |
#: pro/includes/fields/field-payment-cart.php:176
|
960 |
#: pro/includes/fields/field-phone-number.php:152
|
961 |
#: pro/includes/fields/field-post-formats.php:164
|
962 |
+
#: pro/includes/fields/field-templates.php:199
|
963 |
msgid "Placeholder"
|
964 |
msgstr ""
|
965 |
|
969 |
#: includes/fields/field-slug.php:48 includes/fields/field-taxonomies.php:177
|
970 |
#: includes/fields/field-taxonomy-terms.php:906
|
971 |
#: includes/fields/field-user-roles.php:163
|
972 |
+
#: pro/includes/fields/field-block-types.php:195
|
973 |
#: pro/includes/fields/field-countries.php:259
|
974 |
#: pro/includes/fields/field-currencies.php:248
|
975 |
#: pro/includes/fields/field-field-groups.php:197
|
982 |
#: pro/includes/fields/field-options-pages.php:194
|
983 |
#: pro/includes/fields/field-payment-cart.php:177
|
984 |
#: pro/includes/fields/field-post-formats.php:165
|
985 |
+
#: pro/includes/fields/field-templates.php:200
|
986 |
msgid "Appears within the input"
|
987 |
msgstr ""
|
988 |
|
1102 |
#: includes/fields/field-taxonomies.php:290
|
1103 |
#: includes/fields/field-taxonomy-terms.php:1041
|
1104 |
#: includes/fields/field-user-roles.php:276
|
1105 |
+
#: pro/includes/fields/field-block-types.php:308
|
1106 |
#: pro/includes/fields/field-countries.php:372
|
1107 |
#: pro/includes/fields/field-currencies.php:361
|
1108 |
#: pro/includes/fields/field-field-groups.php:310
|
1117 |
#: pro/includes/fields/field-payment-cart.php:271
|
1118 |
#: pro/includes/fields/field-payment-selector.php:92
|
1119 |
#: pro/includes/fields/field-post-formats.php:278
|
1120 |
+
#: pro/includes/fields/field-templates.php:313
|
1121 |
msgid "Layout"
|
1122 |
msgstr ""
|
1123 |
|
1287 |
#: includes/modules/forms.php:100 includes/modules/forms.php:101
|
1288 |
#: includes/modules/forms.php:103 includes/modules/forms.php:105
|
1289 |
#: includes/modules/forms.php:180 pro/includes/locations/settings.php:76
|
1290 |
+
#: pro/includes/modules/templates.php:684
|
1291 |
msgid "Forms"
|
1292 |
msgstr ""
|
1293 |
|
1305 |
#: includes/fields/field-taxonomies.php:56
|
1306 |
#: includes/fields/field-taxonomy-terms.php:826
|
1307 |
#: includes/fields/field-user-roles.php:55
|
1308 |
+
#: pro/includes/fields/field-block-types.php:75
|
1309 |
#: pro/includes/fields/field-countries.php:66
|
1310 |
#: pro/includes/fields/field-currencies.php:66
|
1311 |
#: pro/includes/fields/field-field-groups.php:75
|
1317 |
#: pro/includes/fields/field-menus.php:73
|
1318 |
#: pro/includes/fields/field-options-pages.php:73
|
1319 |
#: pro/includes/fields/field-post-formats.php:59
|
1320 |
+
#: pro/includes/fields/field-templates.php:79
|
1321 |
msgid "Appearance"
|
1322 |
msgstr ""
|
1323 |
|
1327 |
#: includes/fields/field-taxonomies.php:57
|
1328 |
#: includes/fields/field-taxonomy-terms.php:827
|
1329 |
#: includes/fields/field-user-roles.php:56
|
1330 |
+
#: pro/includes/fields/field-block-types.php:76
|
1331 |
#: pro/includes/fields/field-countries.php:67
|
1332 |
#: pro/includes/fields/field-currencies.php:67
|
1333 |
#: pro/includes/fields/field-field-groups.php:76
|
1339 |
#: pro/includes/fields/field-menus.php:74
|
1340 |
#: pro/includes/fields/field-options-pages.php:74
|
1341 |
#: pro/includes/fields/field-post-formats.php:60
|
1342 |
+
#: pro/includes/fields/field-templates.php:80
|
1343 |
msgid "Select the appearance of this field"
|
1344 |
msgstr ""
|
1345 |
|
1349 |
#: includes/fields/field-taxonomies.php:62
|
1350 |
#: includes/fields/field-taxonomy-terms.php:832
|
1351 |
#: includes/fields/field-user-roles.php:61
|
1352 |
+
#: pro/includes/fields/field-block-types.php:81
|
1353 |
#: pro/includes/fields/field-countries.php:71
|
1354 |
#: pro/includes/fields/field-currencies.php:71
|
1355 |
#: pro/includes/fields/field-field-groups.php:81
|
1362 |
#: pro/includes/fields/field-options-pages.php:79
|
1363 |
#: pro/includes/fields/field-payment-cart.php:107
|
1364 |
#: pro/includes/fields/field-post-formats.php:64
|
1365 |
+
#: pro/includes/fields/field-templates.php:85
|
1366 |
msgid "Checkbox"
|
1367 |
msgstr ""
|
1368 |
|
1372 |
#: includes/fields/field-taxonomies.php:63
|
1373 |
#: includes/fields/field-taxonomy-terms.php:833
|
1374 |
#: includes/fields/field-user-roles.php:62
|
1375 |
+
#: pro/includes/fields/field-block-types.php:82
|
1376 |
#: pro/includes/fields/field-countries.php:72
|
1377 |
#: pro/includes/fields/field-currencies.php:72
|
1378 |
#: pro/includes/fields/field-field-groups.php:82
|
1384 |
#: pro/includes/fields/field-menus.php:80
|
1385 |
#: pro/includes/fields/field-options-pages.php:80
|
1386 |
#: pro/includes/fields/field-post-formats.php:65
|
1387 |
+
#: pro/includes/fields/field-templates.php:86
|
1388 |
msgid "Radio Buttons"
|
1389 |
msgstr ""
|
1390 |
|
1394 |
#: includes/fields/field-taxonomies.php:64
|
1395 |
#: includes/fields/field-taxonomy-terms.php:834
|
1396 |
#: includes/fields/field-user-roles.php:63
|
1397 |
+
#: pro/includes/fields/field-block-types.php:83
|
1398 |
#: pro/includes/fields/field-countries.php:73
|
1399 |
#: pro/includes/fields/field-currencies.php:73
|
1400 |
#: pro/includes/fields/field-field-groups.php:83
|
1406 |
#: pro/includes/fields/field-menus.php:81
|
1407 |
#: pro/includes/fields/field-options-pages.php:81
|
1408 |
#: pro/includes/fields/field-post-formats.php:66
|
1409 |
+
#: pro/includes/fields/field-templates.php:87
|
1410 |
msgctxt "noun"
|
1411 |
msgid "Select"
|
1412 |
msgstr ""
|
1417 |
#: includes/fields/field-taxonomies.php:71
|
1418 |
#: includes/fields/field-taxonomy-terms.php:841
|
1419 |
#: includes/fields/field-user-roles.php:70
|
1420 |
+
#: pro/includes/fields/field-block-types.php:90
|
1421 |
#: pro/includes/fields/field-countries.php:80
|
1422 |
#: pro/includes/fields/field-currencies.php:80
|
1423 |
#: pro/includes/fields/field-field-groups.php:90
|
1431 |
#: pro/includes/fields/field-options-pages.php:88
|
1432 |
#: pro/includes/fields/field-payment-cart.php:81
|
1433 |
#: pro/includes/fields/field-post-formats.php:73
|
1434 |
+
#: pro/includes/fields/field-templates.php:94
|
1435 |
msgid "Enter each default value on a new line"
|
1436 |
msgstr ""
|
1437 |
|
1440 |
#: includes/fields/field-post-types.php:78
|
1441 |
#: includes/fields/field-taxonomies.php:78
|
1442 |
#: includes/fields/field-taxonomy-terms.php:848
|
1443 |
+
#: pro/includes/fields/field-block-types.php:97
|
1444 |
#: pro/includes/fields/field-color-picker.php:126
|
1445 |
#: pro/includes/fields/field-countries.php:87
|
1446 |
#: pro/includes/fields/field-currencies.php:102
|
1453 |
#: pro/includes/fields/field-menus.php:95
|
1454 |
#: pro/includes/fields/field-options-pages.php:95
|
1455 |
#: pro/includes/fields/field-phone-number.php:160
|
1456 |
+
#: pro/includes/fields/field-templates.php:101
|
1457 |
msgid "Return Value"
|
1458 |
msgstr ""
|
1459 |
|
1471 |
#: includes/fields/field-taxonomies.php:91
|
1472 |
#: includes/fields/field-taxonomy-terms.php:880
|
1473 |
#: includes/fields/field-user-roles.php:77
|
1474 |
+
#: pro/includes/fields/field-block-types.php:110
|
1475 |
#: pro/includes/fields/field-countries.php:174
|
1476 |
#: pro/includes/fields/field-currencies.php:163
|
1477 |
#: pro/includes/fields/field-field-groups.php:111
|
1485 |
#: pro/includes/fields/field-options-pages.php:108
|
1486 |
#: pro/includes/fields/field-payment-cart.php:115
|
1487 |
#: pro/includes/fields/field-post-formats.php:80
|
1488 |
+
#: pro/includes/fields/field-templates.php:114
|
1489 |
msgid "Allow Null?"
|
1490 |
msgstr ""
|
1491 |
|
1495 |
#: includes/fields/field-taxonomies.php:180
|
1496 |
#: includes/fields/field-taxonomy-terms.php:909
|
1497 |
#: includes/fields/field-user-roles.php:166
|
1498 |
+
#: pro/includes/fields/field-block-types.php:198
|
1499 |
#: pro/includes/fields/field-countries.php:262
|
1500 |
#: pro/includes/fields/field-currencies.php:251
|
1501 |
#: pro/includes/fields/field-field-groups.php:200
|
1508 |
#: pro/includes/fields/field-options-pages.php:197
|
1509 |
#: pro/includes/fields/field-payment-cart.php:180
|
1510 |
#: pro/includes/fields/field-post-formats.php:168
|
1511 |
+
#: pro/includes/fields/field-templates.php:203
|
1512 |
msgctxt "verb"
|
1513 |
msgid "Select"
|
1514 |
msgstr ""
|
1520 |
#: includes/fields/field-taxonomies.php:243
|
1521 |
#: includes/fields/field-taxonomy-terms.php:972
|
1522 |
#: includes/fields/field-user-roles.php:229
|
1523 |
+
#: pro/includes/fields/field-block-types.php:261
|
1524 |
#: pro/includes/fields/field-countries.php:325
|
1525 |
#: pro/includes/fields/field-currencies.php:314
|
1526 |
#: pro/includes/fields/field-field-groups.php:263
|
1533 |
#: pro/includes/fields/field-options-pages.php:260
|
1534 |
#: pro/includes/fields/field-payment-cart.php:243
|
1535 |
#: pro/includes/fields/field-post-formats.php:231
|
1536 |
+
#: pro/includes/fields/field-templates.php:266
|
1537 |
msgid "Search Input Placeholder"
|
1538 |
msgstr ""
|
1539 |
|
1544 |
#: includes/fields/field-taxonomies.php:244
|
1545 |
#: includes/fields/field-taxonomy-terms.php:973
|
1546 |
#: includes/fields/field-user-roles.php:230
|
1547 |
+
#: pro/includes/fields/field-block-types.php:262
|
1548 |
#: pro/includes/fields/field-countries.php:326
|
1549 |
#: pro/includes/fields/field-currencies.php:315
|
1550 |
#: pro/includes/fields/field-field-groups.php:264
|
1557 |
#: pro/includes/fields/field-options-pages.php:261
|
1558 |
#: pro/includes/fields/field-payment-cart.php:244
|
1559 |
#: pro/includes/fields/field-post-formats.php:232
|
1560 |
+
#: pro/includes/fields/field-templates.php:267
|
1561 |
msgid "Appears within the search input"
|
1562 |
msgstr ""
|
1563 |
|
1567 |
#: includes/fields/field-taxonomies.php:116
|
1568 |
#: includes/fields/field-taxonomy-terms.php:1000
|
1569 |
#: includes/fields/field-user-roles.php:102
|
1570 |
+
#: pro/includes/fields/field-block-types.php:135
|
1571 |
#: pro/includes/fields/field-countries.php:199
|
1572 |
#: pro/includes/fields/field-currencies.php:188
|
1573 |
#: pro/includes/fields/field-field-groups.php:136
|
1581 |
#: pro/includes/fields/field-options-pages.php:133
|
1582 |
#: pro/includes/fields/field-payment-cart.php:140
|
1583 |
#: pro/includes/fields/field-post-formats.php:105
|
1584 |
+
#: pro/includes/fields/field-templates.php:139
|
1585 |
msgid "Select multiple values?"
|
1586 |
msgstr ""
|
1587 |
|
1591 |
#: includes/fields/field-taxonomies.php:134
|
1592 |
#: includes/fields/field-taxonomy-terms.php:862
|
1593 |
#: includes/fields/field-user-roles.php:120
|
1594 |
+
#: pro/includes/fields/field-block-types.php:153
|
1595 |
#: pro/includes/fields/field-countries.php:217
|
1596 |
#: pro/includes/fields/field-currencies.php:206
|
1597 |
#: pro/includes/fields/field-field-groups.php:154
|
1605 |
#: pro/includes/fields/field-payment-cart.php:158
|
1606 |
#: pro/includes/fields/field-payment-selector.php:112
|
1607 |
#: pro/includes/fields/field-post-formats.php:123
|
1608 |
+
#: pro/includes/fields/field-templates.php:157
|
1609 |
msgid "Stylised UI"
|
1610 |
msgstr ""
|
1611 |
|
1615 |
#: includes/fields/field-taxonomies.php:153
|
1616 |
#: includes/fields/field-taxonomy-terms.php:1018
|
1617 |
#: includes/fields/field-user-roles.php:139
|
1618 |
+
#: pro/includes/fields/field-block-types.php:171
|
1619 |
#: pro/includes/fields/field-countries.php:235
|
1620 |
#: pro/includes/fields/field-currencies.php:224
|
1621 |
#: pro/includes/fields/field-field-groups.php:173
|
1627 |
#: pro/includes/fields/field-menus.php:171
|
1628 |
#: pro/includes/fields/field-options-pages.php:170
|
1629 |
#: pro/includes/fields/field-post-formats.php:141
|
1630 |
+
#: pro/includes/fields/field-templates.php:176
|
1631 |
msgid "Use AJAX to lazy load choices?"
|
1632 |
msgstr ""
|
1633 |
|
1636 |
#: includes/fields/field-post-types.php:271
|
1637 |
#: includes/fields/field-taxonomies.php:271
|
1638 |
#: includes/fields/field-user-roles.php:257
|
1639 |
+
#: pro/includes/fields/field-block-types.php:289
|
1640 |
#: pro/includes/fields/field-countries.php:353
|
1641 |
#: pro/includes/fields/field-currencies.php:342
|
1642 |
#: pro/includes/fields/field-field-groups.php:291
|
1648 |
#: pro/includes/fields/field-menus.php:289
|
1649 |
#: pro/includes/fields/field-options-pages.php:288
|
1650 |
#: pro/includes/fields/field-post-formats.php:259
|
1651 |
+
#: pro/includes/fields/field-templates.php:294
|
1652 |
msgid "Other"
|
1653 |
msgstr ""
|
1654 |
|
1657 |
#: includes/fields/field-post-types.php:276
|
1658 |
#: includes/fields/field-taxonomies.php:276
|
1659 |
#: includes/fields/field-user-roles.php:262
|
1660 |
+
#: pro/includes/fields/field-block-types.php:294
|
1661 |
#: pro/includes/fields/field-countries.php:358
|
1662 |
#: pro/includes/fields/field-currencies.php:347
|
1663 |
#: pro/includes/fields/field-field-groups.php:296
|
1669 |
#: pro/includes/fields/field-menus.php:294
|
1670 |
#: pro/includes/fields/field-options-pages.php:293
|
1671 |
#: pro/includes/fields/field-post-formats.php:264
|
1672 |
+
#: pro/includes/fields/field-templates.php:299
|
1673 |
msgid "Add 'other' choice to allow for custom values"
|
1674 |
msgstr ""
|
1675 |
|
1687 |
#: includes/fields/field-taxonomies.php:296
|
1688 |
#: includes/fields/field-taxonomy-terms.php:1047
|
1689 |
#: includes/fields/field-user-roles.php:282
|
1690 |
+
#: pro/includes/fields/field-block-types.php:314
|
1691 |
#: pro/includes/fields/field-countries.php:378
|
1692 |
#: pro/includes/fields/field-currencies.php:367
|
1693 |
#: pro/includes/fields/field-field-groups.php:316
|
1702 |
#: pro/includes/fields/field-payment-cart.php:277
|
1703 |
#: pro/includes/fields/field-payment-selector.php:98
|
1704 |
#: pro/includes/fields/field-post-formats.php:284
|
1705 |
+
#: pro/includes/fields/field-templates.php:319
|
1706 |
msgid "Vertical"
|
1707 |
msgstr ""
|
1708 |
|
1712 |
#: includes/fields/field-taxonomies.php:297
|
1713 |
#: includes/fields/field-taxonomy-terms.php:1048
|
1714 |
#: includes/fields/field-user-roles.php:283
|
1715 |
+
#: pro/includes/fields/field-block-types.php:315
|
1716 |
#: pro/includes/fields/field-countries.php:379
|
1717 |
#: pro/includes/fields/field-currencies.php:368
|
1718 |
#: pro/includes/fields/field-field-groups.php:317
|
1727 |
#: pro/includes/fields/field-payment-cart.php:278
|
1728 |
#: pro/includes/fields/field-payment-selector.php:99
|
1729 |
#: pro/includes/fields/field-post-formats.php:285
|
1730 |
+
#: pro/includes/fields/field-templates.php:320
|
1731 |
msgid "Horizontal"
|
1732 |
msgstr ""
|
1733 |
|
1737 |
#: includes/fields/field-taxonomies.php:319
|
1738 |
#: includes/fields/field-taxonomy-terms.php:1070
|
1739 |
#: includes/fields/field-user-roles.php:305
|
1740 |
+
#: pro/includes/fields/field-block-types.php:337
|
1741 |
#: pro/includes/fields/field-countries.php:401
|
1742 |
#: pro/includes/fields/field-currencies.php:390
|
1743 |
#: pro/includes/fields/field-field-groups.php:339
|
1750 |
#: pro/includes/fields/field-options-pages.php:336
|
1751 |
#: pro/includes/fields/field-payment-cart.php:300
|
1752 |
#: pro/includes/fields/field-post-formats.php:307
|
1753 |
+
#: pro/includes/fields/field-templates.php:342
|
1754 |
msgid "Toggle"
|
1755 |
msgstr ""
|
1756 |
|
1760 |
#: includes/fields/field-taxonomies.php:320
|
1761 |
#: includes/fields/field-taxonomy-terms.php:1071
|
1762 |
#: includes/fields/field-user-roles.php:306
|
1763 |
+
#: pro/includes/fields/field-block-types.php:338
|
1764 |
#: pro/includes/fields/field-countries.php:402
|
1765 |
#: pro/includes/fields/field-currencies.php:391
|
1766 |
#: pro/includes/fields/field-field-groups.php:340
|
1773 |
#: pro/includes/fields/field-options-pages.php:337
|
1774 |
#: pro/includes/fields/field-payment-cart.php:301
|
1775 |
#: pro/includes/fields/field-post-formats.php:308
|
1776 |
+
#: pro/includes/fields/field-templates.php:343
|
1777 |
msgid "Prepend an extra checkbox to toggle all choices"
|
1778 |
msgstr ""
|
1779 |
|
1782 |
#: includes/fields/field-post-types.php:337 includes/fields/field-select.php:49
|
1783 |
#: includes/fields/field-taxonomies.php:337
|
1784 |
#: includes/fields/field-user-roles.php:323
|
1785 |
+
#: pro/includes/fields/field-block-types.php:355
|
1786 |
#: pro/includes/fields/field-countries.php:419
|
1787 |
#: pro/includes/fields/field-currencies.php:408
|
1788 |
#: pro/includes/fields/field-field-groups.php:357
|
1794 |
#: pro/includes/fields/field-menus.php:355
|
1795 |
#: pro/includes/fields/field-options-pages.php:354
|
1796 |
#: pro/includes/fields/field-post-formats.php:325
|
1797 |
+
#: pro/includes/fields/field-templates.php:360
|
1798 |
msgid "Allow Custom"
|
1799 |
msgstr ""
|
1800 |
|
1803 |
#: includes/fields/field-post-types.php:342 includes/fields/field-select.php:54
|
1804 |
#: includes/fields/field-taxonomies.php:342
|
1805 |
#: includes/fields/field-user-roles.php:328
|
1806 |
+
#: pro/includes/fields/field-block-types.php:360
|
1807 |
#: pro/includes/fields/field-countries.php:424
|
1808 |
#: pro/includes/fields/field-currencies.php:413
|
1809 |
#: pro/includes/fields/field-field-groups.php:362
|
1815 |
#: pro/includes/fields/field-menus.php:360
|
1816 |
#: pro/includes/fields/field-options-pages.php:359
|
1817 |
#: pro/includes/fields/field-post-formats.php:330
|
1818 |
+
#: pro/includes/fields/field-templates.php:365
|
1819 |
msgid "Allow 'custom' values to be added"
|
1820 |
msgstr ""
|
1821 |
|
1977 |
|
1978 |
#: includes/fields/field-recaptcha.php:242
|
1979 |
#: includes/fields/field-recaptcha.php:248
|
1980 |
+
#: pro/includes/fields/field-payment.php:552
|
1981 |
+
#: pro/includes/fields/field-payment.php:651
|
1982 |
+
#: pro/includes/fields/field-payment.php:777
|
1983 |
+
#: pro/includes/fields/field-payment.php:800
|
1984 |
+
#: pro/includes/fields/field-payment.php:848
|
1985 |
+
#: pro/includes/fields/field-payment.php:940
|
1986 |
msgid "An error has occured"
|
1987 |
msgstr ""
|
1988 |
|
2151 |
msgstr ""
|
2152 |
|
2153 |
#: includes/modules/block-types.php:24 includes/modules/forms.php:25
|
2154 |
+
#: includes/modules/options.class.php:199 includes/modules/options.php:331
|
2155 |
#: includes/modules/post-types.php:24 includes/modules/taxonomies.php:24
|
2156 |
#: pro/includes/fields/field-post-field.php:42
|
2157 |
msgid "Name"
|
2177 |
|
2178 |
#: includes/modules/dev.php:129 includes/modules/options-pages.php:315
|
2179 |
#: includes/modules/post-types.php:175 includes/modules/taxonomies.php:262
|
2180 |
+
#: pro/includes/fields/field-payment.php:414 pro/includes/modules/dev.php:77
|
2181 |
#: pro/includes/modules/dev.php:154 pro/includes/modules/dev.php:213
|
2182 |
#: pro/includes/modules/dev.php:297 pro/includes/modules/dev.php:345
|
2183 |
#: pro/includes/modules/dev.php:393 pro/includes/modules/dev.php:441
|
2186 |
msgstr ""
|
2187 |
|
2188 |
#: includes/modules/dev.php:472 includes/modules/dev.php:515
|
2189 |
+
#: includes/modules/options.class.php:182
|
2190 |
+
#: includes/modules/options.class.php:234 includes/modules/options.php:502
|
2191 |
msgid "Delete"
|
2192 |
msgstr ""
|
2193 |
|
2209 |
|
2210 |
#: includes/modules/forms-action-custom.php:82
|
2211 |
#: includes/modules/forms-action-email.php:310
|
2212 |
+
#: includes/modules/forms-action-post.php:836
|
2213 |
#: includes/modules/forms-action-redirect.php:87
|
2214 |
#: includes/modules/forms-action-term.php:486
|
2215 |
#: includes/modules/forms-action-user.php:982 includes/modules/forms.php:174
|
2319 |
msgid "Input is invalid: Must be a json string or an array."
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: includes/modules/module.php:96
|
2323 |
#, php-format
|
2324 |
msgid "Active <span class=\"count\">(%s)</span>"
|
2325 |
msgid_plural "Active <span class=\"count\">(%s)</span>"
|
2326 |
msgstr[0] ""
|
2327 |
msgstr[1] ""
|
2328 |
|
2329 |
+
#: includes/modules/module.php:149
|
2330 |
msgid "Export "
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: includes/modules/module.php:213
|
2334 |
msgid "Active"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
+
#: includes/modules/module.php:213
|
2338 |
msgid "Inactive"
|
2339 |
msgstr ""
|
2340 |
|
2346 |
msgid "Post ID"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
+
#: includes/modules/options-pages.php:26 includes/modules/options.class.php:201
|
2350 |
#: includes/modules/options.php:453
|
2351 |
msgid "Autoload"
|
2352 |
msgstr ""
|
2363 |
msgid "Option"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: includes/modules/options.class.php:103
|
2367 |
msgid "No options avaliable."
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: includes/modules/options.class.php:198 pro/includes/modules/dev.php:68
|
2371 |
#: pro/includes/modules/dev.php:145 pro/includes/modules/dev.php:204
|
2372 |
#: pro/includes/modules/dev.php:255 pro/includes/modules/dev.php:292
|
2373 |
#: pro/includes/modules/dev.php:340 pro/includes/modules/dev.php:388
|
2462 |
msgid "Clear"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: pro/assets/js/acfe-pro-input.js:983
|
2466 |
msgid "Maximum items reached ({max} items)"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: pro/assets/js/acfe-pro-input.js:1098
|
2470 |
msgid "Edit File"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: pro/assets/js/acfe-pro-input.js:1099
|
2474 |
msgid "Update File"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: pro/assets/js/acfe-pro-input.js:1551
|
2478 |
msgid "This field has a limit of {max} {label} {identifier}"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
+
#: pro/assets/js/acfe-pro-input.js:1552
|
2482 |
#: pro/includes/fields/field-flexible-content-locations.php:180
|
2483 |
msgid "layout"
|
2484 |
msgid_plural "layouts"
|
2485 |
msgstr[0] ""
|
2486 |
msgstr[1] ""
|
2487 |
|
2488 |
+
#: pro/assets/js/acfe-pro-input.js:3637
|
2489 |
msgid "OK"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
+
#: pro/assets/js/acfe-pro-input.js:3637
|
2493 |
msgid "Cancel"
|
2494 |
msgstr ""
|
2495 |
|
2586 |
msgid "Block Types"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
+
#: pro/includes/fields/field-block-types.php:62
|
2590 |
msgid "Allow Block Types"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: pro/includes/fields/field-block-types.php:70
|
2594 |
msgid "All block types"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: pro/includes/fields/field-block-types.php:103
|
2598 |
msgid "Block type object"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
+
#: pro/includes/fields/field-block-types.php:104
|
2602 |
msgid "Block type name"
|
2603 |
msgstr ""
|
2604 |
|
2642 |
msgstr ""
|
2643 |
|
2644 |
#: pro/includes/fields/field-color-picker.php:207
|
2645 |
+
#: pro/includes/fields/field-date-range-picker.php:239
|
2646 |
msgid "Allow null"
|
2647 |
msgstr ""
|
2648 |
|
2714 |
|
2715 |
#: pro/includes/fields/field-countries.php:113
|
2716 |
#: pro/includes/fields/field-currencies.php:87
|
2717 |
+
#: pro/includes/fields/field-date-range-picker.php:53
|
2718 |
#: pro/includes/fields/field-image-sizes.php:116
|
2719 |
#: pro/includes/fields/field-languages.php:131
|
2720 |
#: pro/includes/fields/field-payment-cart.php:88
|
2723 |
|
2724 |
#: pro/includes/fields/field-countries.php:114
|
2725 |
#: pro/includes/fields/field-currencies.php:88
|
2726 |
+
#: pro/includes/fields/field-date-range-picker.php:54
|
2727 |
#: pro/includes/fields/field-languages.php:132
|
2728 |
#: pro/includes/fields/field-payment-cart.php:89
|
2729 |
msgid "The format displayed when editing a post"
|
2731 |
|
2732 |
#: pro/includes/fields/field-countries.php:122
|
2733 |
#: pro/includes/fields/field-currencies.php:96
|
2734 |
+
#: pro/includes/fields/field-date-range-picker.php:62
|
2735 |
+
#: pro/includes/fields/field-date-range-picker.php:78
|
2736 |
#: pro/includes/fields/field-languages.php:140
|
2737 |
#: pro/includes/fields/field-payment-cart.php:96
|
2738 |
msgid "Custom:"
|
2793 |
|
2794 |
#: pro/includes/fields/field-date-picker.php:35
|
2795 |
#: pro/includes/fields/field-date-picker.php:117
|
2796 |
+
#: pro/includes/fields/field-date-range-picker.php:163
|
2797 |
msgid "Date Restriction"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
#: pro/includes/fields/field-date-picker.php:60
|
2801 |
#: pro/includes/fields/field-date-picker.php:167
|
2802 |
+
#: pro/includes/fields/field-date-range-picker.php:219
|
2803 |
msgid "No Weekends"
|
2804 |
msgstr ""
|
2805 |
|
2827 |
msgid "Date Range Picker"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: pro/includes/fields/field-date-range-picker.php:68
|
2831 |
msgid "Return Format"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: pro/includes/fields/field-date-range-picker.php:69
|
2835 |
msgid "The format returned via template functions"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: pro/includes/fields/field-date-range-picker.php:84
|
2839 |
msgid "Week Starts On"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: pro/includes/fields/field-date-range-picker.php:101
|
2843 |
msgid "Separator"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: pro/includes/fields/field-date-range-picker.php:109
|
2847 |
msgid "Default Date"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: pro/includes/fields/field-date-range-picker.php:136
|
2851 |
msgid "Range Restriction"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: pro/includes/fields/field-date-range-picker.php:192
|
2855 |
msgid "Custom Ranges"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: pro/includes/fields/field-date-range-picker.php:209
|
2859 |
+
msgid "Show Dropdowns"
|
2860 |
+
msgstr ""
|
2861 |
+
|
2862 |
+
#: pro/includes/fields/field-date-range-picker.php:229
|
2863 |
msgid "Auto Close on Selection"
|
2864 |
msgstr ""
|
2865 |
|
3291 |
msgstr ""
|
3292 |
|
3293 |
#: pro/includes/fields/field-payment.php:79
|
3294 |
+
#: pro/includes/fields/field-payment.php:392
|
3295 |
+
#: pro/includes/fields/field-payment.php:1203
|
3296 |
msgid "Amount"
|
3297 |
msgstr ""
|
3298 |
|
3379 |
msgstr ""
|
3380 |
|
3381 |
#: pro/includes/fields/field-payment.php:314
|
|
|
|
|
3382 |
msgid "Mode"
|
3383 |
msgstr ""
|
3384 |
|
3387 |
msgstr ""
|
3388 |
|
3389 |
#: pro/includes/fields/field-payment.php:320
|
3390 |
+
#: pro/includes/fields/field-payment.php:388
|
3391 |
+
#: pro/includes/fields/field-payment.php:1170
|
3392 |
+
#: pro/includes/fields/field-payment.php:1201
|
3393 |
msgid "Test"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
#: pro/includes/fields/field-payment.php:321
|
3397 |
+
#: pro/includes/fields/field-payment.php:1171
|
3398 |
msgid "Production"
|
3399 |
msgstr ""
|
3400 |
|
3401 |
+
#: pro/includes/fields/field-payment.php:388
|
3402 |
+
#: pro/includes/fields/field-payment.php:1201
|
|
|
|
|
|
|
|
|
3403 |
msgid "Gateway"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
+
#: pro/includes/fields/field-payment.php:397
|
3407 |
+
#: pro/includes/fields/field-payment.php:1206
|
3408 |
msgid "Items"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
+
#: pro/includes/fields/field-payment.php:402
|
3412 |
+
#: pro/includes/fields/field-payment.php:1209
|
3413 |
#: pro/includes/fields/field-post-field.php:38
|
3414 |
msgid "Date"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
+
#: pro/includes/fields/field-payment.php:406
|
3418 |
+
#: pro/includes/fields/field-payment.php:1211
|
3419 |
msgid "IP Address"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
+
#: pro/includes/fields/field-payment.php:410
|
3423 |
+
#: pro/includes/fields/field-payment.php:1213
|
3424 |
msgid "Payment ID"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
+
#: pro/includes/fields/field-payment.php:414
|
3428 |
msgid "Payment Object"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
+
#: pro/includes/fields/field-payment.php:501
|
3432 |
msgid "PayPal Checkout"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
+
#: pro/includes/fields/field-payment.php:609
|
3436 |
msgid "Amount can't be null"
|
3437 |
msgstr ""
|
3438 |
|
3439 |
+
#: pro/includes/fields/field-payment.php:686
|
3440 |
msgid "Payment failed"
|
3441 |
msgstr ""
|
3442 |
|
3443 |
+
#: pro/includes/fields/field-payment.php:927
|
3444 |
msgid "Your card number is invalid"
|
3445 |
msgstr ""
|
3446 |
|
3611 |
msgstr ""
|
3612 |
|
3613 |
#: pro/includes/fields/field-templates.php:13
|
3614 |
+
#: pro/includes/modules/templates.php:69 pro/includes/modules/templates.php:70
|
3615 |
+
#: pro/includes/modules/templates.php:72 pro/includes/modules/templates.php:74
|
3616 |
msgid "Templates"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
+
#: pro/includes/fields/field-templates.php:66
|
3620 |
msgid "Allow Templates"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: pro/includes/fields/field-templates.php:74
|
3624 |
msgid "All templates"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
#: pro/includes/fields/field-templates.php:106
|
3628 |
msgid "Template ID"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
+
#: pro/includes/fields/field-templates.php:107
|
3632 |
msgid "Template name"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
#: pro/includes/fields/field-wysiwyg.php:38
|
3636 |
+
msgid "Auto initialization"
|
3637 |
+
msgstr ""
|
3638 |
+
|
3639 |
+
#: pro/includes/fields/field-wysiwyg.php:39
|
3640 |
+
msgid "Automatically initialize TinyMCE when shown"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
+
#: pro/includes/fields/field-wysiwyg.php:61
|
3644 |
+
#: pro/includes/fields/field-wysiwyg.php:81
|
3645 |
#: pro/includes/fields/field-wysiwyg.php:103
|
3646 |
+
msgid "Height"
|
3647 |
+
msgstr ""
|
3648 |
+
|
3649 |
+
#: pro/includes/fields/field-wysiwyg.php:126
|
3650 |
msgid "Valid Elements"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
+
#: pro/includes/fields/field-wysiwyg.php:129
|
3654 |
msgid "Set custom valid HTML tags"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
+
#: pro/includes/fields/field-wysiwyg.php:147
|
3658 |
msgid "Custom Style"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
+
#: pro/includes/fields/field-wysiwyg.php:150
|
3662 |
msgid "Add multiple files separated with comma"
|
3663 |
msgstr ""
|
3664 |
|
3665 |
+
#: pro/includes/fields/field-wysiwyg.php:161
|
3666 |
msgid "Disable WP Style"
|
3667 |
msgstr ""
|
3668 |
|
3669 |
+
#: pro/includes/fields/field-wysiwyg.php:164
|
3670 |
msgid "Remove TinyMCE builtin stylesheets"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
+
#: pro/includes/fields/field-wysiwyg.php:173
|
3674 |
msgid "Autoresize"
|
3675 |
msgstr ""
|
3676 |
|
3677 |
+
#: pro/includes/fields/field-wysiwyg.php:176
|
3678 |
msgid "Height will be based on the editor content"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
+
#: pro/includes/fields/field-wysiwyg.php:185
|
3682 |
msgid "Disable Resize"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
+
#: pro/includes/fields/field-wysiwyg.php:188
|
3686 |
msgid "Remove the editor resize functionality"
|
3687 |
msgstr ""
|
3688 |
|
3689 |
+
#: pro/includes/fields/field-wysiwyg.php:197
|
3690 |
msgid "Disable Path"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
+
#: pro/includes/fields/field-wysiwyg.php:200
|
3694 |
msgid "Hide the editor path status bar"
|
3695 |
msgstr ""
|
3696 |
|
3697 |
+
#: pro/includes/fields/field-wysiwyg.php:209
|
3698 |
msgid "Menu Bar"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
+
#: pro/includes/fields/field-wysiwyg.php:212
|
3702 |
msgid "Show the menu bar on top of the editor"
|
3703 |
msgstr ""
|
3704 |
|
3705 |
+
#: pro/includes/fields/field-wysiwyg.php:221
|
3706 |
msgid "Transparent Editor"
|
3707 |
msgstr ""
|
3708 |
|
3709 |
+
#: pro/includes/fields/field-wysiwyg.php:224
|
3710 |
msgid "Set the editor's background as transparent"
|
3711 |
msgstr ""
|
3712 |
|
3713 |
+
#: pro/includes/fields/field-wysiwyg.php:233
|
3714 |
msgid "Merge Toolbars"
|
3715 |
msgstr ""
|
3716 |
|
3717 |
+
#: pro/includes/fields/field-wysiwyg.php:236
|
3718 |
msgid "Glue editor toolbars together"
|
3719 |
msgstr ""
|
3720 |
|
3721 |
+
#: pro/includes/fields/field-wysiwyg.php:245
|
3722 |
msgid "Customize Toolbar"
|
3723 |
msgstr ""
|
3724 |
|
3725 |
+
#: pro/includes/fields/field-wysiwyg.php:313
|
3726 |
msgid "+ Add button"
|
3727 |
msgstr ""
|
3728 |
|
3729 |
+
#: pro/includes/fields/field-wysiwyg.php:409
|
3730 |
msgid "Custom Toolbar Buttons"
|
3731 |
msgstr ""
|
3732 |
|
3999 |
msgid "Users"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
+
#: pro/includes/modules/global-field-condition.php:59
|
4003 |
msgid "Set as Global Conditional Logic"
|
4004 |
msgstr ""
|
4005 |
|
4058 |
msgid "Locations"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
+
#: pro/includes/modules/templates.php:73
|
4062 |
msgid "Template"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
+
#: pro/includes/modules/templates.php:75
|
4066 |
msgid "Edit Template"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
+
#: pro/includes/modules/templates.php:76
|
4070 |
msgid "New Template"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
+
#: pro/includes/modules/templates.php:172
|
4074 |
msgid "You are currently editing a Dynamic Template."
|
4075 |
msgstr ""
|
4076 |
|
4077 |
+
#: pro/includes/modules/templates.php:198
|
4078 |
msgid "Instructions"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
+
#: pro/includes/modules/templates.php:685
|
4082 |
msgid "Dynamic Template"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
+
#: pro/includes/modules/templates.php:697
|
4086 |
msgid "is equal to"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
#: pro/includes/modules/templates.php:719
|
4090 |
+
msgid "No templates found"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
#: pro/includes/updater.php:252
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: acf, custom fields, meta, admin, fields, form, repeater, content
|
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 5.8
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 0.8.8.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -484,6 +484,52 @@ The content of the upcoming patch and work in progress features are all listed o
|
|
484 |
|
485 |
== Changelog ==
|
486 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
487 |
= 0.8.8.6 =
|
488 |
|
489 |
**ACF Extended Pro 0.8.8.6:**
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 5.8
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 0.8.8.7
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
484 |
|
485 |
== Changelog ==
|
486 |
|
487 |
+
= 0.8.8.7 =
|
488 |
+
|
489 |
+
**ACF Extended Pro 0.8.8.7:**
|
490 |
+
|
491 |
+
* Module: Templates - Fixed top-level Seamless Clones values not being correctly loaded
|
492 |
+
* Module: Templates - Fixed Templates List columns data
|
493 |
+
* Module: Global Conditional Logic - Fixed Field Group Locations when using a Global Field on the "Add Term" screen
|
494 |
+
* Module: Global Conditional Logic - Enhanced Field Group Locations to only use matched groups when using the same field on different screens
|
495 |
+
* Module: Global Conditional Logic - Fixed ACF Ajax Screen rules being incorrectly applied
|
496 |
+
* Field: Date Range Picker - Fixed "Default Start/End" settings not working correctly
|
497 |
+
* Field: Date Range Picker - Added "Show Dropdowns" settings
|
498 |
+
* Field: Date Range Picker - Enhanced dropdowns CSS
|
499 |
+
* Field: Flexible Content - Grid System - Renamed "Wrap" setting to "No Wrap" for consistency
|
500 |
+
* Field: Payment - Fixed Conditional Logic not working correctly
|
501 |
+
* Field: Payment - Fixed "Incorrect Payment Data" in Summary Render when there was no items saved
|
502 |
+
* Field: Payment - Enhanced Summary Render & Data validation
|
503 |
+
* Field: Payment - Fixed recursive "Payment Field Selection" when payment fields are inside sub fields
|
504 |
+
* Field: Post Field - Taxonomy - Fixed initialization with non-hierarchical taxonomy
|
505 |
+
* Field: Post Field - Editor - Added delayed re-initialization
|
506 |
+
* Field: Post Object - Fixed "Allow Creation" setting not triggering Conditional Logic on post creation
|
507 |
+
* Field: WYSIWYG - Added "Auto Init" setting when using "Delay Init"
|
508 |
+
|
509 |
+
**ACF Extended Basic 0.8.8.7:**
|
510 |
+
|
511 |
+
* Module: Ajax Authorbox - Fixed disappearing authorbox when ACF Ajax Screen is triggered (category selection etc...)
|
512 |
+
* Module: Clean Orphan Meta - Enhanced logic for cloned fields with sub fields
|
513 |
+
* Module: Forms - Enhanced `acfe/form/prepare` arguments when using `return false`
|
514 |
+
* Module: Developer Mode - Fixed potential PHP notice when using Local Field Groups
|
515 |
+
* Module: Developer Mode - `ACFE_DEV` & `ACFE_SUPER_DEV` constants are now uppercase
|
516 |
+
* Module: Options UI - Fixed `orderby` column sanitization
|
517 |
+
* Module: Single Meta - Fixed Preview Changes not working correctly with Single Meta
|
518 |
+
* Field: Columns - Fixed CSS when used inside Tabs Aligned Left
|
519 |
+
* Field: Flexible Content - Fixed "Modal Select Size" being always forced to "Full"
|
520 |
+
* Field: Flexible Content - Fixed sub fields CSS when displayed inside a "Modal Edit" from the Sidebar
|
521 |
+
* Field: Flexible Content - Fixed sidebar Gutenberg title CSS glitch
|
522 |
+
* Field: WYSIWYG - Fixed "Delay init" setting being automatically initialized on page load
|
523 |
+
* Field Groups: Fixed potential PHP notice when no Field Group are saved in DB in the "Sync Available" Tab
|
524 |
+
* Locations: Post Type list/Taxonomy list/User list/Attachment list - Fixed Flexible Content field initialization
|
525 |
+
* Locations: Post Type list/Taxonomy list/User list/Attachment list - Fixed fields CSS padding
|
526 |
+
* General: Added `acfe_get_field_descendants()` & `acfe_map_any_field()` helpers
|
527 |
+
* General: Fixed native ACF 5.11 bug with multiple front-end forms which wrongly trigger validation when one one field was requried
|
528 |
+
* General: Fixed `acfe/validate_save_post` to correctly work with `acfe_add_validation_error()` helper
|
529 |
+
* General: Enhanced Select2 CSS integration for ACF 5.10/5.11.3/5.11.4 and YOAST
|
530 |
+
* General: Enhanced french translation
|
531 |
+
* General: Code Cleanup & Formatting
|
532 |
+
|
533 |
= 0.8.8.6 =
|
534 |
|
535 |
**ACF Extended Pro 0.8.8.6:**
|