🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-16 11:09:36 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
mailchimp-for-woocommerce
/
blocks
📍 /home/therahul/thedasstores.com/wp-content/plugins/mailchimp-for-woocommerce/blocks
🔄 Refresh
✏️
Editing: newsletter.php
Writable
<?php define( 'MAILCHIMP_WOOCOMMERCE_NEWSLETTER_VERSION', '1.0.0' ); add_action( 'woocommerce_blocks_loaded', function() { if (!function_exists('mailchimp_is_configured') || !mailchimp_is_configured()) { return; } if (class_exists( '\Automattic\WooCommerce\Blocks\Package' ) && class_exists('\Automattic\WooCommerce\StoreApi\StoreApi') && interface_exists('\Automattic\WooCommerce\Blocks\Integrations\IntegrationInterface')) { add_action( 'woocommerce_store_api_checkout_update_order_from_request', array( 'Mailchimp_Woocommerce_Newsletter_Blocks_Integration', 'order_processed' ), 10, 2 ); add_action( 'woocommerce_store_api_checkout_order_processed', array( 'Mailchimp_Woocommerce_Newsletter_Blocks_Integration', 'order_customer_processed' ) ); require_once dirname( __FILE__ ) . '/woocommerce-blocks-integration.php'; require_once dirname( __FILE__ ) . '/woocommerce-blocks-extend-store-endpoint.php'; add_action( 'woocommerce_blocks_checkout_block_registration', function( $integration_registry ) { $integration_registry->register( new Mailchimp_Woocommerce_Newsletter_Blocks_Integration() ); } ); Mailchimp_Woocommerce_Newsletter_Blocks_Extend_Store_Endpoint::init(); } } );
💾 Save Changes
❌ Cancel