woogc/sync/bounce_sync
Deprecated notice: The recent tracking privacy cookie policy changes, the filter is deprecated. Instead, the synchronisation screen is used for all browsers to ensure compatibility.
Name: woogc/sync/bounce_sync
Type: Filter
Arguments: $sites, $context
The synchronization procedure ensures the cart maintains unitary across all shops in the network. The procedure triggers in the background or through a synchronization screen ( mainly for the Safari browser ).
The filter instructs the code to use only the synchronization screen for all devices and browsers.
add_filter('woogc/sync/bounce_sync', 'woogc_sync_bounce_sync');
function woogc_sync_bounce_sync( $status )
{
$status = 'true';
return $status ;
}
The snippet code goes into a php file on wp-content/mu-plugins folder.
Related Posts
WooCommerce Global Cart is...
By default, WooCommerce retains...
WooCommerce’s persistent cart feature...
Managing multiple WooCommerce shops within a WordPress Multisite environment can be challenging, especially when it comes to keeping product information consistent across all stores. The WooCommerce Product Synchronization feature in the WP Global Cart plugin addresses this challenge by enabling seamless synchronization of products across your network.
Name: woogc/sequential_order_number/format
Type: Filter
Arguments: (int) $order_number,...
Name: woogc/global_cart/sites
Type: Filter
Arguments: (array) $sites_ids
The...
Name: woogc/single_checkout/split_order/order_created
Type: Action
Arguments: $new_order
The `woogc/single_checkout/split_order/order_created` action...
The WordPress WooCommerce Global...
By default, on Product...