Files
roi-theme/wp-content/plugins/wp-marketing-automations/compatibilities/plugins/class-bwfan-compatibility-with-mailpoet.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 21:04:30 -06:00

18 lines
491 B
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* MailPoet emails and newsletters in WordPress
* https://wordpress.org/plugins/mailpoet/
*/
if ( ! class_exists( 'BWFAN_Compatibility_With_MailPoet' ) ) {
class BWFAN_Compatibility_With_MailPoet {
public function __construct() {
if ( ! empty( WooFunnels_AS_DS::$unique ) || true === BWFAN_Common::$change_data_strore ) {
BWFAN_Common::remove_actions( 'init', 'MailPoet\Config\Initializer', 'initialize' );
}
}
}
new BWFAN_Compatibility_With_MailPoet();
}