Enhanced Media Library - Version 2.8.4

Version Description

Download this release

Release Info

Developer webbistro
Plugin Icon 128x128 Enhanced Media Library
Version 2.8.4
Comparing to
See all releases

Code changes from version 2.8.3 to 2.8.4

core/compatibility.php CHANGED
@@ -45,3 +45,33 @@ if ( ! function_exists( 'wpuxss_eml_elementor_scripts' ) ) {
45
  if ( wpuxss_eml_enhance_media_shortcodes() ) {
46
  add_filter( 'shortcode_atts_av_masonry_entries', 'wpuxss_eml_shortcode_atts', 10, 3 );
47
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  if ( wpuxss_eml_enhance_media_shortcodes() ) {
46
  add_filter( 'shortcode_atts_av_masonry_entries', 'wpuxss_eml_shortcode_atts', 10, 3 );
47
  }
48
+
49
+
50
+
51
+ /**
52
+ * FooGallery
53
+ *
54
+ * @since 2.8.4
55
+ * @created 08/04/21
56
+ */
57
+
58
+ add_filter( 'foogallery_shortcode_atts', 'wpuxss_eml_foogallery_shortcode_atts' );
59
+
60
+ if ( ! function_exists( 'wpuxss_eml_foogallery_shortcode_atts' ) ) {
61
+
62
+ function wpuxss_eml_foogallery_shortcode_atts( $atts ) {
63
+
64
+ $id = isset( $atts['id'] ) ? intval( $atts['id'] ) : 0;
65
+ unset( $atts['id'] );
66
+
67
+ $atts = wpuxss_eml_shortcode_atts( array(), array(), $atts );
68
+ $atts['id'] = $id;
69
+
70
+ if ( isset( $atts['ids'] ) ) {
71
+ $atts['attachment_ids'] = $atts['ids'];
72
+ unset( $atts['ids'] );
73
+ }
74
+
75
+ return $atts;
76
+ }
77
+ }
core/mime-types.php CHANGED
@@ -135,7 +135,7 @@ if ( ! function_exists( 'wpuxss_eml_post_mime_types' ) ) {
135
  * @created 03/08/13
136
  */
137
 
138
- add_filter('upload_mimes', 'wpuxss_eml_upload_mimes');
139
 
140
  if ( ! function_exists( 'wpuxss_eml_upload_mimes' ) ) {
141
 
135
  * @created 03/08/13
136
  */
137
 
138
+ add_filter( 'upload_mimes', 'wpuxss_eml_upload_mimes' );
139
 
140
  if ( ! function_exists( 'wpuxss_eml_upload_mimes' ) ) {
141
 
core/taxonomies.php CHANGED
@@ -1442,18 +1442,19 @@ if ( ! function_exists('wpuxss_eml_pre_get_posts') ) {
1442
  if ( ! is_admin() ) {
1443
 
1444
  $wpuxss_eml_tax_options = get_option('wpuxss_eml_tax_options');
 
1445
 
1446
- if ( (bool) $wpuxss_eml_tax_options['tax_archives'] ) {
1447
 
1448
- $wpuxss_eml_taxonomies = get_option('wpuxss_eml_taxonomies');
1449
-
1450
- foreach ( (array) $wpuxss_eml_taxonomies as $taxonomy => $params ) {
1451
-
1452
- if ( (bool) $params['assigned'] && (bool) $params['eml_media'] && is_tax( $taxonomy ) ) {
1453
 
 
1454
  $query->set( 'post_type', 'attachment' );
1455
  $query->set( 'post_status', 'inherit' );
1456
  }
 
 
 
1457
  }
1458
  }
1459
  }
1442
  if ( ! is_admin() ) {
1443
 
1444
  $wpuxss_eml_tax_options = get_option('wpuxss_eml_tax_options');
1445
+ $wpuxss_eml_taxonomies = get_option('wpuxss_eml_taxonomies');
1446
 
1447
+ foreach ( (array) $wpuxss_eml_taxonomies as $taxonomy => $params ) {
1448
 
1449
+ if ( (bool) $params['assigned'] && (bool) $params['eml_media'] && is_tax( $taxonomy ) ) {
 
 
 
 
1450
 
1451
+ if ( (bool) $wpuxss_eml_tax_options['tax_archives'] ) {
1452
  $query->set( 'post_type', 'attachment' );
1453
  $query->set( 'post_status', 'inherit' );
1454
  }
1455
+ else {
1456
+ $query->set_404();
1457
+ }
1458
  }
1459
  }
1460
  }
enhanced-media-library.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Enhanced Media Library
4
  Plugin URI: https://wpUXsolutions.com/plugins/enhanced-media-library
5
  Description: This plugin will be handy for those who need to manage a lot of media files.
6
- Version: 2.8.3
7
  Author: wpUXsolutions
8
  Author URI: http://wpUXsolutions.com
9
  Text Domain: enhanced-media-library
@@ -26,7 +26,7 @@ global $wp_version,
26
 
27
 
28
 
29
- if ( ! defined('EML_VERSION') ) define( 'EML_VERSION', '2.8.3' );
30
  if ( ! defined('EML_PRO') ) define( 'EML_PRO', false );
31
 
32
 
3
  Plugin Name: Enhanced Media Library
4
  Plugin URI: https://wpUXsolutions.com/plugins/enhanced-media-library
5
  Description: This plugin will be handy for those who need to manage a lot of media files.
6
+ Version: 2.8.4
7
  Author: wpUXsolutions
8
  Author URI: http://wpUXsolutions.com
9
  Text Domain: enhanced-media-library
26
 
27
 
28
 
29
+ if ( ! defined('EML_VERSION') ) define( 'EML_VERSION', '2.8.4' );
30
  if ( ! defined('EML_PRO') ) define( 'EML_PRO', false );
31
 
32
 
languages/enhanced-media-library.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Enhanced Media Library\n"
6
- "POT-Creation-Date: 2020-12-09 21:13+0200\n"
7
  "PO-Revision-Date: 2016-04-14 21:02+0300\n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: wpUXsolutions <wpUXsolutions@gmail.com>\n"
@@ -188,7 +188,7 @@ msgstr ""
188
  msgid "Edit"
189
  msgstr ""
190
 
191
- #: core/options-pages.php:561 pro/enhanced-media-library-pro.php:120
192
  msgid "Close"
193
  msgstr ""
194
 
@@ -224,7 +224,7 @@ msgstr ""
224
  #: core/options-pages.php:568 core/options-pages.php:862
225
  #: core/options-pages.php:1084 core/options-pages.php:2050
226
  #: core/options-pages.php:2113 core/taxonomies.php:381
227
- #: enhanced-media-library.php:571
228
  msgid "All"
229
  msgstr ""
230
 
@@ -320,7 +320,6 @@ msgstr ""
320
 
321
  #: core/options-pages.php:596 core/options-pages.php:601
322
  #: core/options-pages.php:645 core/options-pages.php:690
323
- #: pro/enhanced-media-library-pro.php:128
324
  msgid "Cancel"
325
  msgstr ""
326
 
@@ -578,8 +577,7 @@ msgstr ""
578
  #: core/options-pages.php:1900 core/options-pages.php:1944
579
  #: core/options-pages.php:2152 core/options-pages.php:2240
580
  #: core/options-pages.php:2278 core/options-pages.php:2310
581
- #: core/options-pages.php:2479 enhanced-media-library.php:580
582
- #: pro/core/options-pages.php:305
583
  msgid "Save Changes"
584
  msgstr ""
585
 
@@ -714,8 +712,7 @@ msgid ""
714
  "WordPress looks into filenames, titles, captions, and descriptions."
715
  msgstr ""
716
 
717
- #: core/options-pages.php:1819 pro/core/medialist.php:44
718
- #: pro/core/medialist.php:94
719
  msgid "Order"
720
  msgstr ""
721
 
@@ -723,18 +720,15 @@ msgstr ""
723
  msgid "Order media items by"
724
  msgstr ""
725
 
726
- #: core/options-pages.php:1831 pro/core/medialist.php:28
727
- #: pro/core/medialist.php:78
728
  msgid "Date"
729
  msgstr ""
730
 
731
  #: core/options-pages.php:1832 core/options-pages.php:1892
732
- #: pro/core/medialist.php:31 pro/core/medialist.php:81
733
  msgid "Title"
734
  msgstr ""
735
 
736
- #: core/options-pages.php:1833 pro/core/medialist.php:34
737
- #: pro/core/medialist.php:84
738
  msgid "Custom Order"
739
  msgstr ""
740
 
@@ -751,13 +745,11 @@ msgstr ""
751
  msgid "Sort order"
752
  msgstr ""
753
 
754
- #: core/options-pages.php:1844 pro/core/medialist.php:48
755
- #: pro/core/medialist.php:98
756
  msgid "Ascending"
757
  msgstr ""
758
 
759
- #: core/options-pages.php:1845 pro/core/medialist.php:51
760
- #: pro/core/medialist.php:101
761
  msgid "Descending"
762
  msgstr ""
763
 
@@ -976,8 +968,7 @@ msgid ""
976
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
977
  msgstr ""
978
 
979
- #: core/options-pages.php:2291 pro/core/bulk-edit.php:398
980
- #: pro/enhanced-media-library-pro.php:122
981
  msgid "Bulk Edit"
982
  msgstr ""
983
 
@@ -1112,11 +1103,11 @@ msgid "All Authors"
1112
  msgstr ""
1113
 
1114
  #: core/taxonomies.php:374 core/taxonomies.php:380
1115
- #: enhanced-media-library.php:570
1116
  msgid "Filter by"
1117
  msgstr ""
1118
 
1119
- #: core/taxonomies.php:382 enhanced-media-library.php:572
1120
  msgid "Not in"
1121
  msgstr ""
1122
 
@@ -1124,315 +1115,102 @@ msgstr ""
1124
  msgid "Add some"
1125
  msgstr ""
1126
 
1127
- #: enhanced-media-library.php:368 enhanced-media-library.php:569
1128
  msgid "All Uncategorized"
1129
  msgstr ""
1130
 
1131
- #: enhanced-media-library.php:369 enhanced-media-library.php:573
1132
  msgid "Reset All Filters"
1133
  msgstr ""
1134
 
1135
- #: enhanced-media-library.php:400
1136
  msgid "More Details"
1137
  msgstr ""
1138
 
1139
- #: enhanced-media-library.php:401
1140
  msgid "Less Details"
1141
  msgstr ""
1142
 
1143
- #: enhanced-media-library.php:574
1144
  msgid "author"
1145
  msgstr ""
1146
 
1147
- #: enhanced-media-library.php:575
1148
  msgid "authors"
1149
  msgstr ""
1150
 
1151
- #: enhanced-media-library.php:578
1152
  msgid "Saved."
1153
  msgstr ""
1154
 
1155
- #: enhanced-media-library.php:579
1156
  msgid "Something went wrong."
1157
  msgstr ""
1158
 
1159
- #: enhanced-media-library.php:582 pro/core/media-templates.php:78
1160
  msgid "Select All"
1161
  msgstr ""
1162
 
1163
- #: enhanced-media-library.php:583
1164
  msgid "Deselect "
1165
  msgstr ""
1166
 
1167
- #: enhanced-media-library.php:612
1168
  msgid "Uploaded to post #"
1169
  msgstr ""
1170
 
1171
- #: enhanced-media-library.php:613
1172
  msgid "Based On"
1173
  msgstr ""
1174
 
1175
- #: enhanced-media-library.php:682 enhanced-media-library.php:684
1176
  msgid "Media Categories"
1177
  msgstr ""
1178
 
1179
- #: enhanced-media-library.php:683
1180
  msgid "Media Category"
1181
  msgstr ""
1182
 
1183
- #: enhanced-media-library.php:685
1184
  msgid "All Media Categories"
1185
  msgstr ""
1186
 
1187
- #: enhanced-media-library.php:686
1188
  msgid "Edit Media Category"
1189
  msgstr ""
1190
 
1191
- #: enhanced-media-library.php:687
1192
  msgid "View Media Category"
1193
  msgstr ""
1194
 
1195
- #: enhanced-media-library.php:688
1196
  msgid "Update Media Category"
1197
  msgstr ""
1198
 
1199
- #: enhanced-media-library.php:689
1200
  msgid "Add New Media Category"
1201
  msgstr ""
1202
 
1203
- #: enhanced-media-library.php:690
1204
  msgid "New Media Category Name"
1205
  msgstr ""
1206
 
1207
- #: enhanced-media-library.php:691
1208
  msgid "Parent Media Category"
1209
  msgstr ""
1210
 
1211
- #: enhanced-media-library.php:692
1212
  msgid "Parent Media Category:"
1213
  msgstr ""
1214
 
1215
- #: enhanced-media-library.php:693
1216
  msgid "Search Media Categories"
1217
  msgstr ""
1218
 
1219
- #: pro/core/media-templates.php:24
1220
- msgid "Attachments Details"
1221
- msgstr ""
1222
-
1223
- #: pro/core/media-templates.php:79
1224
- msgid "Deselect All"
1225
- msgstr ""
1226
-
1227
- #: pro/core/media-templates.php:80 pro/core/media-templates.php:83
1228
- msgid "Delete Selected"
1229
- msgstr ""
1230
-
1231
- #: pro/core/media-templates.php:81
1232
- msgid "Trash Selected"
1233
- msgstr ""
1234
-
1235
- #: pro/core/media-templates.php:82
1236
- msgid "Untrash Selected"
1237
- msgstr ""
1238
-
1239
- #: pro/core/medialist.php:24 pro/core/medialist.php:74
1240
- msgid "Order By"
1241
- msgstr ""
1242
-
1243
- #: pro/core/medialist.php:37 pro/core/medialist.php:87
1244
- msgid "Random"
1245
- msgstr ""
1246
-
1247
- #: pro/core/medialist.php:62 pro/core/medialist.php:108
1248
- msgid "Limit"
1249
- msgstr ""
1250
-
1251
- #: pro/core/options-pages.php:80
1252
- msgid "Your license has been network deactivated."
1253
- msgstr ""
1254
-
1255
- #: pro/core/options-pages.php:80
1256
- msgid "Your license has been deactivated."
1257
- msgstr ""
1258
-
1259
- #: pro/core/options-pages.php:103
1260
- msgid "Please check if your license key is correct and try again."
1261
- msgstr ""
1262
-
1263
- #: pro/core/options-pages.php:124
1264
- #, php-format
1265
- msgid ""
1266
- "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
1267
- "authors</a>."
1268
- msgstr ""
1269
-
1270
- #: pro/core/options-pages.php:142
1271
- #, php-format
1272
- msgid ""
1273
- "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
1274
- "plugin authors</a>."
1275
- msgstr ""
1276
-
1277
- #: pro/core/options-pages.php:151
1278
- msgid "Your license has been network activated."
1279
- msgstr ""
1280
-
1281
- #: pro/core/options-pages.php:151
1282
- msgid "Your license has been activated."
1283
- msgstr ""
1284
-
1285
  #. Plugin Name of the plugin/theme
1286
- #: pro/core/options-pages.php:212
1287
  msgid "Enhanced Media Library PRO"
1288
  msgstr ""
1289
 
1290
- #: pro/core/options-pages.php:217
1291
- msgid "Updates"
1292
- msgstr ""
1293
-
1294
- #: pro/core/options-pages.php:224
1295
- msgid "to check if your license key is correct"
1296
- msgstr ""
1297
-
1298
- #: pro/core/options-pages.php:224 pro/core/update.php:223
1299
- msgid "to check if an update is available"
1300
- msgstr ""
1301
-
1302
- #: pro/core/options-pages.php:228 pro/core/update.php:221
1303
- #, php-format
1304
- msgid ""
1305
- "%s could not establish a secure connection %s. An error occurred: %s. Please "
1306
- "<a href=\"%s\">contact plugin authors</a>."
1307
- msgstr ""
1308
-
1309
- #: pro/core/options-pages.php:251
1310
- msgid "Your license is active!"
1311
- msgstr ""
1312
-
1313
- #: pro/core/options-pages.php:255
1314
- msgid "Deactivate License"
1315
- msgstr ""
1316
-
1317
- #: pro/core/options-pages.php:260
1318
- #, php-format
1319
- msgid ""
1320
- "To unlock updates please enter your license key below. You can get your "
1321
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
1322
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
1323
- msgstr ""
1324
-
1325
- #: pro/core/options-pages.php:267
1326
- msgid "License Key"
1327
- msgstr ""
1328
-
1329
- #: pro/core/options-pages.php:270
1330
- msgid "Activate License"
1331
- msgstr ""
1332
-
1333
- #: pro/core/options-pages.php:293 pro/core/options-pages.php:296
1334
- msgid "Turn off SSL verification"
1335
- msgstr ""
1336
-
1337
- #: pro/core/options-pages.php:297
1338
- msgid "Try this if you see the error message above."
1339
- msgstr ""
1340
-
1341
- #: pro/core/options-pages.php:299
1342
- #, php-format
1343
- msgid ""
1344
- "This will turn off SSL verification for the update requests that %s sends to "
1345
- "its server %s only."
1346
- msgstr ""
1347
-
1348
- #: pro/core/update.php:192
1349
- #, php-format
1350
- msgid "Auto-updates disabled for %s."
1351
- msgstr ""
1352
-
1353
- #: pro/core/update.php:200 pro/core/update.php:346
1354
- #, php-format
1355
- msgid ""
1356
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1357
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1358
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1359
- msgstr ""
1360
-
1361
- #: pro/core/update.php:277 pro/core/update.php:283 pro/core/update.php:289
1362
- msgid ""
1363
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
1364
- "this server&#8217;s configuration. If you continue to have problems, please "
1365
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
1366
- msgstr ""
1367
-
1368
- #: pro/core/update.php:277
1369
- msgid ""
1370
- "(WordPress could not establish a secure connection to WordPress.org. Please "
1371
- "contact your server administrator.)"
1372
- msgstr ""
1373
-
1374
- #: pro/enhanced-media-library-pro.php:117
1375
- msgid "ALL files belong to this item"
1376
- msgstr ""
1377
-
1378
- #: pro/enhanced-media-library-pro.php:118
1379
- msgid "SOME files belong to this item"
1380
- msgstr ""
1381
-
1382
- #: pro/enhanced-media-library-pro.php:119
1383
- msgid "NO files belong to this item"
1384
- msgstr ""
1385
-
1386
- #: pro/enhanced-media-library-pro.php:121
1387
- msgid "Edit Media Files"
1388
- msgstr ""
1389
-
1390
- #: pro/enhanced-media-library-pro.php:124
1391
- msgid "Selecting"
1392
- msgstr ""
1393
-
1394
- #: pro/enhanced-media-library-pro.php:125
1395
- msgid "Delete Selected Permanently"
1396
- msgstr ""
1397
-
1398
- #: pro/enhanced-media-library-pro.php:126
1399
- msgid "You are about to permanently delete all selected items."
1400
- msgstr ""
1401
-
1402
- #: pro/enhanced-media-library-pro.php:127
1403
- msgid "Delete"
1404
- msgstr ""
1405
-
1406
- #: pro/enhanced-media-library-pro.php:129
1407
- msgid "Moving to Trash"
1408
- msgstr ""
1409
-
1410
- #: pro/enhanced-media-library-pro.php:130
1411
- msgid "Restoring"
1412
- msgstr ""
1413
-
1414
- #: pro/enhanced-media-library-pro.php:131
1415
- msgid "Deleting"
1416
- msgstr ""
1417
-
1418
- #: pro/enhanced-media-library-pro.php:155
1419
- msgid "Create a filter-based gallery"
1420
- msgstr ""
1421
-
1422
- #: pro/enhanced-media-library-pro.php:156
1423
- msgid "Create a filter-based playlist"
1424
- msgstr ""
1425
-
1426
- #: pro/enhanced-media-library-pro.php:157
1427
- msgid "Create a filter-based video playlist"
1428
- msgstr ""
1429
-
1430
- #: pro/enhanced-media-library-pro.php:335
1431
- msgid ""
1432
- "Only one version of <strong>Enhanced Media Library</strong> should be active "
1433
- "at a time."
1434
- msgstr ""
1435
-
1436
  #. Plugin URI of the plugin/theme
1437
  msgid "https://wpUXsolutions.com/plugins/enhanced-media-library"
1438
  msgstr ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Enhanced Media Library\n"
6
+ "POT-Creation-Date: 2021-04-09 21:27+0300\n"
7
  "PO-Revision-Date: 2016-04-14 21:02+0300\n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: wpUXsolutions <wpUXsolutions@gmail.com>\n"
188
  msgid "Edit"
189
  msgstr ""
190
 
191
+ #: core/options-pages.php:561
192
  msgid "Close"
193
  msgstr ""
194
 
224
  #: core/options-pages.php:568 core/options-pages.php:862
225
  #: core/options-pages.php:1084 core/options-pages.php:2050
226
  #: core/options-pages.php:2113 core/taxonomies.php:381
227
+ #: enhanced-media-library.php:573
228
  msgid "All"
229
  msgstr ""
230
 
320
 
321
  #: core/options-pages.php:596 core/options-pages.php:601
322
  #: core/options-pages.php:645 core/options-pages.php:690
 
323
  msgid "Cancel"
324
  msgstr ""
325
 
577
  #: core/options-pages.php:1900 core/options-pages.php:1944
578
  #: core/options-pages.php:2152 core/options-pages.php:2240
579
  #: core/options-pages.php:2278 core/options-pages.php:2310
580
+ #: core/options-pages.php:2479 enhanced-media-library.php:582
 
581
  msgid "Save Changes"
582
  msgstr ""
583
 
712
  "WordPress looks into filenames, titles, captions, and descriptions."
713
  msgstr ""
714
 
715
+ #: core/options-pages.php:1819
 
716
  msgid "Order"
717
  msgstr ""
718
 
720
  msgid "Order media items by"
721
  msgstr ""
722
 
723
+ #: core/options-pages.php:1831
 
724
  msgid "Date"
725
  msgstr ""
726
 
727
  #: core/options-pages.php:1832 core/options-pages.php:1892
 
728
  msgid "Title"
729
  msgstr ""
730
 
731
+ #: core/options-pages.php:1833
 
732
  msgid "Custom Order"
733
  msgstr ""
734
 
745
  msgid "Sort order"
746
  msgstr ""
747
 
748
+ #: core/options-pages.php:1844
 
749
  msgid "Ascending"
750
  msgstr ""
751
 
752
+ #: core/options-pages.php:1845
 
753
  msgid "Descending"
754
  msgstr ""
755
 
968
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
969
  msgstr ""
970
 
971
+ #: core/options-pages.php:2291
 
972
  msgid "Bulk Edit"
973
  msgstr ""
974
 
1103
  msgstr ""
1104
 
1105
  #: core/taxonomies.php:374 core/taxonomies.php:380
1106
+ #: enhanced-media-library.php:572
1107
  msgid "Filter by"
1108
  msgstr ""
1109
 
1110
+ #: core/taxonomies.php:382 enhanced-media-library.php:574
1111
  msgid "Not in"
1112
  msgstr ""
1113
 
1115
  msgid "Add some"
1116
  msgstr ""
1117
 
1118
+ #: enhanced-media-library.php:370 enhanced-media-library.php:571
1119
  msgid "All Uncategorized"
1120
  msgstr ""
1121
 
1122
+ #: enhanced-media-library.php:371 enhanced-media-library.php:575
1123
  msgid "Reset All Filters"
1124
  msgstr ""
1125
 
1126
+ #: enhanced-media-library.php:402
1127
  msgid "More Details"
1128
  msgstr ""
1129
 
1130
+ #: enhanced-media-library.php:403
1131
  msgid "Less Details"
1132
  msgstr ""
1133
 
1134
+ #: enhanced-media-library.php:576
1135
  msgid "author"
1136
  msgstr ""
1137
 
1138
+ #: enhanced-media-library.php:577
1139
  msgid "authors"
1140
  msgstr ""
1141
 
1142
+ #: enhanced-media-library.php:580
1143
  msgid "Saved."
1144
  msgstr ""
1145
 
1146
+ #: enhanced-media-library.php:581
1147
  msgid "Something went wrong."
1148
  msgstr ""
1149
 
1150
+ #: enhanced-media-library.php:584
1151
  msgid "Select All"
1152
  msgstr ""
1153
 
1154
+ #: enhanced-media-library.php:585
1155
  msgid "Deselect "
1156
  msgstr ""
1157
 
1158
+ #: enhanced-media-library.php:614
1159
  msgid "Uploaded to post #"
1160
  msgstr ""
1161
 
1162
+ #: enhanced-media-library.php:615
1163
  msgid "Based On"
1164
  msgstr ""
1165
 
1166
+ #: enhanced-media-library.php:684 enhanced-media-library.php:686
1167
  msgid "Media Categories"
1168
  msgstr ""
1169
 
1170
+ #: enhanced-media-library.php:685
1171
  msgid "Media Category"
1172
  msgstr ""
1173
 
1174
+ #: enhanced-media-library.php:687
1175
  msgid "All Media Categories"
1176
  msgstr ""
1177
 
1178
+ #: enhanced-media-library.php:688
1179
  msgid "Edit Media Category"
1180
  msgstr ""
1181
 
1182
+ #: enhanced-media-library.php:689
1183
  msgid "View Media Category"
1184
  msgstr ""
1185
 
1186
+ #: enhanced-media-library.php:690
1187
  msgid "Update Media Category"
1188
  msgstr ""
1189
 
1190
+ #: enhanced-media-library.php:691
1191
  msgid "Add New Media Category"
1192
  msgstr ""
1193
 
1194
+ #: enhanced-media-library.php:692
1195
  msgid "New Media Category Name"
1196
  msgstr ""
1197
 
1198
+ #: enhanced-media-library.php:693
1199
  msgid "Parent Media Category"
1200
  msgstr ""
1201
 
1202
+ #: enhanced-media-library.php:694
1203
  msgid "Parent Media Category:"
1204
  msgstr ""
1205
 
1206
+ #: enhanced-media-library.php:695
1207
  msgid "Search Media Categories"
1208
  msgstr ""
1209
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1210
  #. Plugin Name of the plugin/theme
 
1211
  msgid "Enhanced Media Library PRO"
1212
  msgstr ""
1213
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1214
  #. Plugin URI of the plugin/theme
1215
  msgid "https://wpUXsolutions.com/plugins/enhanced-media-library"
1216
  msgstr ""
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: webbistro
3
  Tags: media library, media category, media categories, media gallery, gallery shortcode, media tag, media tags, media taxonomy, media taxonomies, media uploader, mime type, mime, mime types, file types, media types, media filter, attachment, gallery, image, images, media, ux, user experience, wp-admin, admin, taxonomy, taxonomies
4
  Requires at least: 5.0
5
- Tested up to: 5.7
6
  Requires PHP: 5.6
7
- Stable tag: 2.8.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -105,6 +105,7 @@ Assistance with translating is highly appreciated! If you'd like to be a transla
105
 
106
  * [Advanced Custom Fields](https://wordpress.org/plugins/advanced-custom-fields/)
107
  * [WooCommerce](https://wordpress.org/plugins/woocommerce/)
 
108
  * [Anything Order by Terms](https://wordpress.org/plugins/anything-order-by-terms/)
109
  * [Search & Filter](https://wordpress.org/plugins/search-filter/)
110
  * [Document Gallery](https://wordpress.org/plugins/document-gallery/)
@@ -184,11 +185,22 @@ Please notice that you use Enhanced Media Library with other plugins that add me
184
 
185
  ## Changelog ##
186
 
 
 
 
 
 
 
 
 
 
 
 
187
  ### 2.8.3 ###
188
  *Release Date - March 9, 2021*
189
 
190
  = Improvements =
191
- * Taxonomy archive pages mechanism improved. When the pages are disabled (404) they are no more accessible by friendly URLs.
192
 
193
  = Compatibility =
194
  * WordPress 5.7 compatibility ensured
2
  Contributors: webbistro
3
  Tags: media library, media category, media categories, media gallery, gallery shortcode, media tag, media tags, media taxonomy, media taxonomies, media uploader, mime type, mime, mime types, file types, media types, media filter, attachment, gallery, image, images, media, ux, user experience, wp-admin, admin, taxonomy, taxonomies
4
  Requires at least: 5.0
5
+ Tested up to: 5.7.1
6
  Requires PHP: 5.6
7
+ Stable tag: 2.8.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
105
 
106
  * [Advanced Custom Fields](https://wordpress.org/plugins/advanced-custom-fields/)
107
  * [WooCommerce](https://wordpress.org/plugins/woocommerce/)
108
+ * [FooGallery](https://wordpress.org/plugins/foogallery/) - [How to use?](https://wpuxsolutions.com/documents/enhanced-media-library/how-to-create-a-dynamic-foogallery)
109
  * [Anything Order by Terms](https://wordpress.org/plugins/anything-order-by-terms/)
110
  * [Search & Filter](https://wordpress.org/plugins/search-filter/)
111
  * [Document Gallery](https://wordpress.org/plugins/document-gallery/)
185
 
186
  ## Changelog ##
187
 
188
+ ### 2.8.4 ###
189
+ *Release Date - April 9, 2021*
190
+
191
+ = Bugfixes =
192
+ * A bug with a category checkbox not showing unchecked after deselecting a category fixed
193
+ * A bug with taxonomy archive pages are being actually empty instead of 404 fixed
194
+
195
+ = Compatibility =
196
+ * FooGallery compatibility with EML dynamic galleries added, see [how to use Dynamic FooGalleries](https://wpuxsolutions.com/documents/enhanced-media-library/how-to-create-a-dynamic-foogallery)
197
+
198
+
199
  ### 2.8.3 ###
200
  *Release Date - March 9, 2021*
201
 
202
  = Improvements =
203
+ * Taxonomy archive pages mechanism improved. When the pages are disabled (404) they are no more accessible by friendly URLs
204
 
205
  = Compatibility =
206
  * WordPress 5.7 compatibility ensured