Folders – Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager - Version 2.5.4

Version Description

Divi bug fixed

Download this release

Release Info

Developer premiocommit
Plugin Icon wp plugin Folders – Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager
Version 2.5.4
Comparing to
See all releases

Code changes from version 2.5.3 to 2.5.4

Files changed (3) hide show
  1. folders.php +2 -2
  2. includes/folders.class.php +2 -2
  3. readme.txt +4 -1
folders.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: Folders
4
  * Description: Arrange media, pages, custom post types and posts into folders
5
- * Version: 2.5.3
6
  * Author: Premio
7
  * Author URI: https://premio.io/downloads/folders/
8
  * Text Domain: folders
@@ -30,7 +30,7 @@ if(!defined("WCP_FOLDER_URL")) {
30
  define('WCP_FOLDER_URL', plugin_dir_url(__FILE__));
31
  }
32
  if(!defined("WCP_FOLDER_VERSION")) {
33
- define('WCP_FOLDER_VERSION', "2.5.3");
34
  }
35
 
36
  include_once plugin_dir_path(__FILE__)."includes/folders.class.php";
2
  /**
3
  * Plugin Name: Folders
4
  * Description: Arrange media, pages, custom post types and posts into folders
5
+ * Version: 2.5.4
6
  * Author: Premio
7
  * Author URI: https://premio.io/downloads/folders/
8
  * Text Domain: folders
30
  define('WCP_FOLDER_URL', plugin_dir_url(__FILE__));
31
  }
32
  if(!defined("WCP_FOLDER_VERSION")) {
33
+ define('WCP_FOLDER_VERSION', "2.5.4");
34
  }
35
 
36
  include_once plugin_dir_path(__FILE__)."includes/folders.class.php";
includes/folders.class.php CHANGED
@@ -901,7 +901,7 @@ class WCP_Folders
901
  return;
902
  }
903
 
904
- if ($typenow == "attachment") {
905
  /* Free/Pro URL Change */
906
  global $typenow;
907
  $is_active = 1;
@@ -924,7 +924,7 @@ class WCP_Folders
924
  ));
925
  /* Free/Pro URL Change */
926
  wp_enqueue_style( 'folders-media', WCP_FOLDER_URL . 'assets/css/media.css' , array(), WCP_FOLDER_VERSION);
927
- } else {
928
  /* Free/Pro URL Change */
929
  global $typenow;
930
  $is_active = 1;
901
  return;
902
  }
903
 
904
+ if ($typenow == "attachment" || !is_admin()) {
905
  /* Free/Pro URL Change */
906
  global $typenow;
907
  $is_active = 1;
924
  ));
925
  /* Free/Pro URL Change */
926
  wp_enqueue_style( 'folders-media', WCP_FOLDER_URL . 'assets/css/media.css' , array(), WCP_FOLDER_VERSION);
927
+ } else if(is_admin()) {
928
  /* Free/Pro URL Change */
929
  global $typenow;
930
  $is_active = 1;
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: galdub, tomeraharon, premio
3
  Tags: folder, folders, organize, pages folders, media library, posts folders, media folders, subfolders, file manager, directories, media library folders, media library folder
4
  Requires at least: 3.0.0
5
  Tested up to: 5.5
6
- Stable tag: 2.5.3
7
  Plugin URI: https://premio.io/downloads/folders/
8
 
9
  Folders is a WordPress plugin that will help you quickly organize and manage all of your Pages, Posts and Media library files in folders.
@@ -162,6 +162,9 @@ A live demo for the Folders plugin is available at <a href="https://demo.premio.
162
 
163
  == Changelog ==
164
 
 
 
 
165
  = 2.5.3 =
166
  New and better design! We've added a search field, the minimum size of the Folders area is much smaller now, we've added Folders to the add media view, added a duplicate option, and many other cool features and bug fixes.
167
 
3
  Tags: folder, folders, organize, pages folders, media library, posts folders, media folders, subfolders, file manager, directories, media library folders, media library folder
4
  Requires at least: 3.0.0
5
  Tested up to: 5.5
6
+ Stable tag: 2.5.4
7
  Plugin URI: https://premio.io/downloads/folders/
8
 
9
  Folders is a WordPress plugin that will help you quickly organize and manage all of your Pages, Posts and Media library files in folders.
162
 
163
  == Changelog ==
164
 
165
+ = 2.5.4 =
166
+ Divi bug fixed
167
+
168
  = 2.5.3 =
169
  New and better design! We've added a search field, the minimum size of the Folders area is much smaller now, we've added Folders to the add media view, added a duplicate option, and many other cool features and bug fixes.
170