Plugin Directory

Changeset 3236793


Ignore:
Timestamp:
02/07/2025 08:06:23 PM (14 months ago)
Author:
foomagoo
Message:

Updating URLs in readme to point to new site. Bumped tested version of Wordpress

Location:
plugin-organizer
Files:
32 added
4 edited

Legend:

Unmodified
Added
Removed
  • plugin-organizer/trunk/lib/PluginOrganizer.class.php

    r2977689 r3236793  
    326326        global $pagenow;
    327327        ##Check version and activate if needed.
    328         if (get_option("PO_version_num") != "10.1.10" && !in_array($pagenow, array("plugins.php", "update-core.php", "update.php"))) {
     328        if (get_option("PO_version_num") != "10.2" && !in_array($pagenow, array("plugins.php", "update-core.php", "update.php"))) {
    329329            $this->activate();
    330330        }
     
    641641        }
    642642       
    643         if (get_option("PO_version_num") != "10.1.10") {
    644             update_option("PO_version_num", "10.1.10");
     643        if (get_option("PO_version_num") != "10.2") {
     644            update_option("PO_version_num", "10.2");
    645645        }
    646646
  • plugin-organizer/trunk/lib/PluginOrganizerMU.class.php

    r2977697 r3236793  
    22/*
    33Plugin Name: Plugin Organizer MU
    4 Plugin URI: http://www.sterupdesign.com
     4Plugin URI: https://www.sterup.com/wordpress-plugins/plugin-organizer/
    55Description: A plugin for specifying the load order of your plugins.
    6 Version: 10.1.10
     6Version: 10.2
    77Author: Jeff Sterup
    8 Author URI: http://www.sterupdesign.com
     8Author URI: https://www.sterup.com
    99License: GPL2
    1010*/
     
    8080           
    8181            $this->set_requested_permalink();
    82             if (get_option('PO_updating_plugin') != '1' && get_option("PO_version_num") != "10.1.10") {
     82            if (get_option('PO_updating_plugin') != '1' && get_option("PO_version_num") != "10.2") {
    8383                $newPluginList = $pluginList;
    84                 $this->adminMsg[] = '<strong>WARNING:</strong> Selective plugin loading for Plugin Organizer has been disabled because the version numbers of the MU plugin and the standard plugin don\'t match.<br />The current version number returned from the database is '.get_option("PO_version_num").' and the current MU plugin version number is 10.1.10.<br />If you are using a caching plugin try clearing the cache.';
     84                $this->adminMsg[] = '<strong>WARNING:</strong> Selective plugin loading for Plugin Organizer has been disabled because the version numbers of the MU plugin and the standard plugin don\'t match.<br />The current version number returned from the database is '.get_option("PO_version_num").' and the current MU plugin version number is 10.2.<br />If you are using a caching plugin try clearing the cache.';
    8585            } else {
    8686                $sql = "SELECT disabled_plugins, disabled_mobile_plugins, disabled_groups, disabled_mobile_groups FROM ".$wpdb->prefix."po_plugins WHERE post_type='global_plugin_lists' AND post_id=0";
  • plugin-organizer/trunk/plugin-organizer.php

    r2977689 r3236793  
    22/*
    33Plugin Name: Plugin Organizer
    4 Plugin URI: https://www.sterupdesign.com/dev/wordpress/plugins/plugin-organizer/
     4Plugin URI: https://www.sterup.com/wordpress-plugins/plugin-organizer/
    55Description: A plugin to disable plugins on indivudual pages and change the order that they are loaded in.
    6 Version: 10.1.10
     6Version: 10.2
    77Author: Jeff Sterup
    8 Author URI: https://www.sterupdesign.com
     8Author URI: https://www.sterup.com
    99License: GPL2
    1010*/
  • plugin-organizer/trunk/readme.txt

    r2977689 r3236793  
    11=== Plugin Organizer ===
    22Contributors: foomagoo
    3 Donate link: https://www.sterupdesign.com/donate
     3Donate link: https://www.sterup.com/donate/
    44Tags: plugin organizer, load order, organize plugins, plugin order, sort plugin, group plugin, disable plugins by post, disable plugins by page, disable plugins by custom post type, turn off plugins for post, turn off plugins for page, turn off plugins for custom post type
    55Requires at least: 4.6.0
    6 Tested up to: 6.3.1
    7 Stable tag: 10.1.10
     6Tested up to: 6.7.2
     7Stable tag: 10.2
    88
    99
     
    3131IMPORTANT: To enable selective plugin loading you must move the /wp-content/plugins/plugin-organizer/lib/PluginOrganizerMU.class.php file to /wp-content/mu-plugins or wherever your mu-plugins folder is located.  If the mu-plugins directory does not exist you can create it.  The plugin will attempt to create this directory and move the file itself when activated.  Depending on your file permissions it may not be successful.
    3232
    33 Note: If you are having troubles you can view the documentation by going to https://www.sterupdesign.com/dev/wordpress/plugins/plugin-organizer/documentation/
     33Note: If you are having troubles you can view the documentation by going to https://www.sterup.com/wordpress-plugins/plugin-organizer/documentation/
    3434
    3535== Frequently Asked Questions ==
    3636
    37 You can find a full FAQ list at https://www.sterupdesign.com/dev/wordpress/plugins/plugin-organizer/faq/
     37You can find a full FAQ list at https://www.sterup.com/wordpress-plugins/plugin-organizer/faq/
    3838
    3939= Can Plugin Organizer be used with caching plugins? =
     
    4848
    4949There are different ways that caching plugins work and they can work together with Plugin Organizer. These are only 2 examples to give an idea. But you have to understand how they work and how you are affecting your cache by disabling plugins.
    50 
    51 = Are there any known conflicts with other plugins? =
    52 
    53 Yes.  A malicious plugin named WP Spamshield targets the settings used by Plugin Organizer to disable it.  It also targets various other plugins and changes how they behave or disables them entirely.  All of this is done without the users knowledge or consent.  This plugin was removed from the Wordpress Plugin Directory because of this malicious code but it may still exist on some users sites.  It will also likely be released from a different repository in the future and start targeting plugins again.  You should remove WP Spamshield not only to make sure that Plugin Organizer runs correctly but to ensure the security of your website is not compromised.  Find out more at https://www.sterupdesign.com/blog/malware/wp-spamshield/.
    5450
    5551= How do I disable plugins on the WordPress admin? =
     
    8581Example 3: If you have plugins that conflict with eachother then you can disable the plugins globally and activate them only on posts or pages where they will be used.
    8682
    87 Note: If you are having troubles you can view the documentation by going to https://www.sterupdesign.com/dev/wordpress/plugins/plugin-organizer/documentation/
     83Note: If you are having troubles you can view the documentation by going to https://www.sterup.com/wordpress-plugins/plugin-organizer/documentation/
    8884
    8985= How do I target the homepage of my site if it isn't a page post type? =
    9086
    91 Create a plugin filter with your home page url. Like https://www.sterupdesign.com/. Then enable or disable the plugins you want with that filter.
     87Create a plugin filter with your home page url. Like https://www.sterup.com/. Then enable or disable the plugins you want with that filter.
    9288
    9389= Can I use wildcards in a plugin filter permalink? =
    9490
    95 Yes. You can use limited wildcards in the permalink structure. For instance you can match the url https://www.sterupdesign.com/some/pretty/permalink/ by entering https://www.sterupdesign.com/some/*/permalink/. You can also match the url by entering https://www.sterupdesign.com/*/pretty/permalink/ as the permalink. The only character that is recognized is the * character. It can only replace one piece of the url in between the / characters.
     91Yes. You can use limited wildcards in the permalink structure. For instance you can match the url https://www.sterup.com/some/pretty/permalink/ by entering https://www.sterup.com/some/*/permalink/. You can also match the url by entering https://www.sterup.com/*/pretty/permalink/ as the permalink. The only character that is recognized is the * character. It can only replace one piece of the url in between the / characters.
    9692
    9793= Can I enable/disable plugins based on post type? =
     
    10197= How do I disable a plugin on the front end and still have it enabled on the admin pages? =
    10298
    103 To load a plugin only in the admin you need to enable selective plugin loading for the admin areas and fuzzy url matching. Then globally disable the plugin you want to turn off on the front end. Next create a plugin filter with the permalink set to your admin url. Like https://www.sterupdesign.com/wp-admin/. Then enable the plugin for that plugin filter and select also affect children. Now the plugin should only be loaded in the admin.
     99To load a plugin only in the admin you need to enable selective plugin loading for the admin areas and fuzzy url matching. Then globally disable the plugin you want to turn off on the front end. Next create a plugin filter with the permalink set to your admin url. Like https://www.sterup.com/wp-admin/. Then enable the plugin for that plugin filter and select also affect children. Now the plugin should only be loaded in the admin.
    104100
    105101= Can I disable plugins by role? =
     
    127123
    128124== Changelog ==
     125
     126= 10.2 =
     127Updating URLs in readme to point to new site.
     128Bumped tested version of Wordpress
    129129
    130130= 10.1.10 =
     
    796796== Upgrade Notice ==
    797797
    798 = 10.1.10 =
    799 Fixed PHP warning about array offset when the database returns a bad result in MU plugin
     798= 10.2 =
     799Updating URLs in readme to point to new site.
     800Bumped tested version of Wordpress
Note: See TracChangeset for help on using the changeset viewer.