HEX
Server: Apache
System: Linux vps.rockyroadprinting.net 4.18.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
User: rockyroadprintin (1011)
PHP: 8.2.29
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/rockyroadprintin/www/wp-content/themes/woodmart/inc/integrations/mc4wp.php
<?php
/**
 * MC4WP: Mailchimp for WordPress.
 *
 * @package woodmart
 */

if ( ! defined( 'MC4WP_VERSION' ) ) {
	return;
}

if ( ! function_exists( 'woodmart_mc4wp_enqueue_scripts' ) ) {
	/**
	 * Fixes the conflict of options that overwrite the checkout template.
	 *
	 * @param bool $load_scripts .
	 *
	 * @return bool
	 */
	function woodmart_mc4wp_enqueue_scripts( $load_scripts ) {
		woodmart_enqueue_js_script( 'mailchimp' );

		return $load_scripts;
	}

	add_filter( 'mc4wp_load_form_scripts', 'woodmart_mc4wp_enqueue_scripts', 9 );
}