- 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>
52 lines
1.4 KiB
PHP
Executable File
52 lines
1.4 KiB
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* UTM Leads Tracker - XLPlugins
|
|
* https://wordpress.org/plugins/utm-leads-tracker-lite/
|
|
*/
|
|
if ( ! class_exists( 'BWFAN_Compatibility_With_UTM_Leads_Tracker' ) ) {
|
|
class BWFAN_Compatibility_With_UTM_Leads_Tracker {
|
|
|
|
public function __construct() {
|
|
add_filter( 'bwfan_ab_change_checkout_data_for_external_use', array( $this, 'bwfan_populate_utm_lead_data_cart' ), 99 );
|
|
add_action( 'bwfan_ab_handle_checkout_data_externally', array( $this, 'bwfan_set_utm_lead_cookie' ), 9 );
|
|
}
|
|
|
|
/**
|
|
* Set XL UTM data in cookies on cart restore
|
|
*
|
|
* @param $checkout_data
|
|
*/
|
|
public function bwfan_set_utm_lead_cookie( $checkout_data ) {
|
|
if ( ! isset( $checkout_data['xlutm_data'] ) || empty( $checkout_data['xlutm_data'] ) ) {
|
|
return;
|
|
}
|
|
$xlutm_data = $checkout_data['xlutm_data'];
|
|
|
|
$cookie_val = json_encode( $xlutm_data );
|
|
$secure = is_ssl();
|
|
setcookie( 'xlutm_params_utm', $cookie_val, time() + YEAR_IN_SECONDS, COOKIEPATH, COOKIE_DOMAIN, $secure, true );
|
|
}
|
|
|
|
/**
|
|
* Append UTM data from cookies to the cart
|
|
*
|
|
* @param $abandoned_data
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function bwfan_populate_utm_lead_data_cart( $abandoned_data ) {
|
|
|
|
if ( ! isset( $_COOKIE['xlutm_params_utm'] ) ) {
|
|
return $abandoned_data;
|
|
}
|
|
|
|
$abandoned_data['xlutm_data'] = json_decode( stripslashes( $_COOKIE['xlutm_params_utm'] ), true );
|
|
|
|
return $abandoned_data;
|
|
}
|
|
}
|
|
|
|
new BWFAN_Compatibility_With_UTM_Leads_Tracker();
|
|
}
|