admin
7 years ago
api
8 years ago
deprecated
8 years ago
donors
8 years ago
emails
8 years ago
forms
7 years ago
gateways
8 years ago
libraries
8 years ago
payments
8 years ago
actions.php
8 years ago
ajax-functions.php
8 years ago
class-give-async-process.php
8 years ago
class-give-background-updater.php
8 years ago
class-give-cache.php
8 years ago
class-give-cli-commands.php
8 years ago
class-give-cron.php
8 years ago
class-give-db-donor-meta.php
8 years ago
class-give-db-donors.php
8 years ago
class-give-db-form-meta.php
8 years ago
class-give-db-logs-meta.php
8 years ago
class-give-db-logs.php
8 years ago
class-give-db-meta.php
8 years ago
class-give-db-payment-meta.php
8 years ago
class-give-db-sequential-ordering.php
8 years ago
class-give-db.php
8 years ago
class-give-donate-form.php
8 years ago
class-give-donor.php
8 years ago
class-give-email-access.php
8 years ago
class-give-gravatars.php
8 years ago
class-give-html-elements.php
8 years ago
class-give-license-handler.php
8 years ago
class-give-logging.php
8 years ago
class-give-readme-parser.php
8 years ago
class-give-roles.php
8 years ago
class-give-scripts.php
7 years ago
class-give-session.php
8 years ago
class-give-stats.php
8 years ago
class-give-template-loader.php
8 years ago
class-give-tooltips.php
8 years ago
class-give-translation.php
8 years ago
class-notices.php
8 years ago
country-functions.php
8 years ago
currency-functions.php
8 years ago
error-tracking.php
8 years ago
filters.php
8 years ago
formatting.php
8 years ago
import-functions.php
8 years ago
install.php
8 years ago
login-register.php
8 years ago
misc-functions.php
8 years ago
plugin-compatibility.php
8 years ago
post-types.php
8 years ago
price-functions.php
8 years ago
process-donation.php
7 years ago
shortcodes.php
8 years ago
template-functions.php
8 years ago
user-functions.php
8 years ago
plugin-compatibility.php
95 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Plugin Compatibility |
| 4 | * |
| 5 | * Functions for compatibility with other plugins. |
| 6 | * |
| 7 | * @package Give |
| 8 | * @subpackage Functions/Compatibility |
| 9 | * @copyright Copyright (c) 2016, WordImpress |
| 10 | * @license https://opensource.org/licenses/gpl-license GNU Public License |
| 11 | * @since 1.4 |
| 12 | */ |
| 13 | |
| 14 | |
| 15 | /** |
| 16 | * Disables the mandrill_nl2br filter while sending Give emails. |
| 17 | * |
| 18 | * @since 1.4 |
| 19 | * @return void |
| 20 | */ |
| 21 | function give_disable_mandrill_nl2br() { |
| 22 | add_filter( 'mandrill_nl2br', '__return_false' ); |
| 23 | } |
| 24 | |
| 25 | add_action( 'give_email_send_before', 'give_disable_mandrill_nl2br' ); |
| 26 | |
| 27 | |
| 28 | /** |
| 29 | * This function will clear the Yoast SEO sitemap cache on update of settings |
| 30 | * |
| 31 | * @since 1.8.9 |
| 32 | * |
| 33 | * @return void |
| 34 | */ |
| 35 | function give_clear_seo_sitemap_cache_on_settings_change() { |
| 36 | // Load required file if the fn 'is_plugin_active' doesn't exists. |
| 37 | if ( ! function_exists( 'is_plugin_active' ) ) { |
| 38 | require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
| 39 | } |
| 40 | |
| 41 | if ( ( is_plugin_active( 'wordpress-seo/wp-seo.php' ) |
| 42 | || is_plugin_active( 'wordpress-seo-premium/wp-seo-premium.php' ) ) |
| 43 | && class_exists( 'WPSEO_Sitemaps_Cache' ) |
| 44 | ) { |
| 45 | |
| 46 | $forms_singular_option = give_get_option( 'forms_singular' ); |
| 47 | $forms_archive_option = give_get_option( 'forms_singular' ); |
| 48 | |
| 49 | // If there is change detected for Single Form View and Form Archives options then proceed. |
| 50 | if ( |
| 51 | ( isset( $_POST['forms_singular'] ) && $_POST['forms_singular'] !== $forms_singular_option ) || |
| 52 | ( isset( $_POST['forms_archives'] ) && $_POST['forms_archives'] !== $forms_archive_option ) |
| 53 | ) { |
| 54 | // If Yoast SEO or Yoast SEO Premium plugin exists, then update seo sitemap cache. |
| 55 | $yoast_sitemaps_cache = new WPSEO_Sitemaps_Cache(); |
| 56 | if ( method_exists( $yoast_sitemaps_cache, 'clear' ) ) { |
| 57 | WPSEO_Sitemaps_Cache::clear(); |
| 58 | } |
| 59 | } |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | add_action( 'give-settings_save_display', 'give_clear_seo_sitemap_cache_on_settings_change' ); |
| 64 | |
| 65 | /** |
| 66 | * This is support for the plugin Elementor. This function |
| 67 | * disables the Give Shortcodes button on the Elementor's |
| 68 | * editor page. |
| 69 | * |
| 70 | * See link: https://github.com/WordImpress/Give/issues/3171#issuecomment-387471355 |
| 71 | * |
| 72 | * @since 2.1.3 |
| 73 | * |
| 74 | * @return boolean |
| 75 | */ |
| 76 | function give_elementor_hide_shortcodes_button() { |
| 77 | |
| 78 | /** |
| 79 | * Is the plugin: Elementor activated? |
| 80 | */ |
| 81 | if ( is_plugin_active( 'elementor/elementor.php' ) ) { |
| 82 | |
| 83 | /** |
| 84 | * Check user is on the Elementor's editor page, then hide Give Shortcodes Button. |
| 85 | */ |
| 86 | if ( isset( $_GET['action'] ) && 'elementor' === give_clean( $_GET['action'] ) ) { |
| 87 | return false; |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | return true; |
| 92 | } |
| 93 | |
| 94 | add_filter( 'give_shortcode_button_condition', 'give_elementor_hide_shortcodes_button', 11 ); |
| 95 |