Each of the Network Shops run their own cart page. This can be changed so the cart link redirects the user to a specific Shop Cart in the network, which is usually the Check-out Shop, when using Single Site Check-out type.
The feature can be achieved through a custom code. The WOOGC_REQUIRED_CART_URL value should be updated with the required shop cart URL:
<?php
define('WOOGC_REQUIRED_CART_URL', ...
View More
Looping through the Cart Items is straightforward and achievable through the code:
When the cart includes products from different shops ( within the MultiSite Network ), the same code can be used. Still, a...
View More
On the Synchronization screen complete, custom JavaScript can run. To achieve this, the following code is required within a js file, that is loaded along the page:
document.addEventListener( 'woogc/sync-done' , function (e) {
alert ('Triggered Event sync-done');
//further JavaScript code
...
View More