This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: [Hummingbird Pro] Clear homepage cache programmatically when a post is updated | |
* Description: Useful when the "Clear full cache when post/page is updated" option needs to remain disabled | |
* Author: Anderson Salas @ WPMUDEV | |
* Task: SLS-6215 | |
* Author URI: https://premium.wpmudev.org | |
* License: GPLv2 or later | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: [SmartCrawl Pro] Add Sabai Directory listings to sitemap | |
* Description: Adds a new "directory-listing" item to the sitemap index, which contains URLs from the Sabai Directory listings | |
* Author: Anderson Salas @ WPMUDEV | |
* Task: SLS-6159 | |
* Author URI: https://premium.wpmudev.org | |
* License: GPLv2 or later | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: [Defender Pro] reCaptcha compatibility with Easy Digital Downloads plugin | |
* Description: Adds a custom reCaptcha integration to the Easy Digital Downloads login shortcode | |
* Author: Anderson Salas @ WPMUDEV | |
* Task: SLS-6194 | |
* Author URI: https://premium.wpmudev.org | |
* License: GPLv2 or later | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: [Forminator Pro] DIfferent redirect based on Aweber integration submission result | |
* Description: DIfferent redirect based on Aweber integration submission result. | |
* Author: Prashant @ WPMUDEV | |
* Task: SLS-6184 | |
* Author URI: https://premium.wpmudev.org | |
* License: GPLv2 or later | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: [Forminator Pro] Redirect user to own site after activation | |
* Description: Redirect user to own site after activation. | |
* Author: Prashant @ WPMUDEV | |
* Task: SLS-6183 | |
* Author URI: https://premium.wpmudev.org | |
* License: GPLv2 or later | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: [Forminator Pro] Number of responses for each question in personality quiz | |
* Description: Show number of responses for each question in personality quiz. | |
* Author: Prashant @ WPMUDEV | |
* Task: SLS-6162 | |
* Author URI: https://premium.wpmudev.org | |
* License: GPLv2 or later | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: [The Hub Client] Remove WP Admin references | |
* Description: Removes WP Admin references from the hub page. | |
* Author: Prashant @ WPMUDEV | |
* Task: SLS-6140 | |
* Author URI: https://premium.wpmudev.org | |
* License: GPLv2 or later | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: [Forminator Pro] Youtube URL validation | |
* Description: Validates youtube URL. | |
* Author: Prashant @ WPMUDEV | |
* Task: SLS-6188 | |
* Author URI: https://premium.wpmudev.org | |
* License: GPLv2 or later | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: [SmartCrawl Pro] Open Graph data filter | |
* Description: Adds a wds_opengraph_printer_data filter, useful to modify the Open Graph data before printing it | |
* Author: Anderson Salas @ WPMUDEV | |
* Task: SLS-6172 | |
* Author URI: https://premium.wpmudev.org | |
* License: GPLv2 or later | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Note this snippet code might only helpful when loopback request is healthy from your site, you can check it | |
* on page Tools->Site Healthy: | |
* https://www.awesomescreenshot.com/image/48378734?key=386be0c026074a4650500ac184f9b8a5 | |
*/ | |
function wdev_smush_fix_loopback_issue() { | |
// Check if Smush Pro is active and its version. | |
if ( ! class_exists( 'WP_Smush' ) ) { | |
return; |