Search
How To Archives - Page 2 of 3 - WP Global Cart
302
archive,paged,tax-documentation_category,term-how-to,term-302,paged-2,theme-awake,eltd-core-1.1,woocommerce-no-js,awake child-child-ver-1.0.0,awake-ver-1.0,eltd-smooth-scroll,eltd-smooth-page-transitions,eltd-mimic-ajax,eltd-grid-1200,eltd-blog-installed,eltd-default-style,eltd-fade-push-text-top,eltd-header-standard,eltd-sticky-header-on-scroll-down-up,eltd-default-mobile-header,eltd-sticky-up-mobile-header,eltd-menu-item-first-level-bg-color,eltd-dropdown-slide-from-top,eltd-,eltd-fullscreen-search eltd-search-fade,eltd-side-menu-slide-from-right,wpb-js-composer js-comp-ver-6.3.0,vc_responsive
 

Archive

WP Global Cart /  (Page 2)

Display the Product Title along the Shop Name where it come from the network

Using the WooCommerce Global Cart all shops in the network can share the same cart, products from different sites can be added and checked-out in a single process. To make cart content more descriptive and clearer to the customers, a shop name can be append to each product title, to indicate the location where the product come from. Also, other necessary information can append, if apply. The following bit of code appends the origin Shop name, to each product title...

View More

Display the Order Products shops, within the Super Admin Orders ( all ) interface

The WooCommerce Global Cart includes the global Orders interface where orders across all shops in the network are listed in a single place. The interface is similar to the default WooCommerce order and includes all default functions to maintain Process, Complete, View etc. To make it easy to figure out through the Orders interface, what each of the orders contain, an additional column can be included programmatically to show all Shop names that the included products belong to. This...

View More

Disable plugin specific functionality

The WooCommerce Global Cart plugin is a powerfull tools to make your MultiSite environment a unique virtual marketplace. It include many features and functionalities. However not every option may be required at a given moment or is not needed at all. The plugin include a setting interface available within SuperAdmin interface, through which many of plugin aspects can be changed. But there are things which can be disabled programmatically only, to avoid system malfunction for erroneously set-ups. Disable Global...

View More

How to setup the Screen or Header Synchronization type

The Synchronization procedure is the way the plugin core ensures the data is processed unitary across the network, for the selected shops. The plugin automatically deploys any of the selected synchronization types, by making the required adjustments to your WordPress environment. When completed, all server caches ( including the site ) are required to clear manually, for the new settings to take effect. If applied, the CDN cache should be cleared as well. Mainly the procedure consists of setting up...

View More

Fix the notice “COOKIE_DOMAIN constant already defined. The SSO and cart cross-domain features possible not fully functional.”

In WordPress the COOKIE_DOMAIN constant is used to specify the CMS cookie for unusual domain setups. The plugin use this constant to handle SSO and some of the cross-domain features. If the constant is already defined, this must be removed or commented out. Most of the time it can be found in wp-config.php file and looks like this: The notice appear on SuperAdmin dashboard on top of page: In majority of cases the constant is defined by "WordPress MU...

View More

Show product shop within order dashboard

When Check-out being set as Single Checkout  the Order include all products in the cart, even if they are coming from different shops. To make easy to identify which product is coming from what shop, a small piece of code can be used. add_action('woocommerce_before_order_itemmeta', 'custom_woocommerce_before_order_itemmeta', 99, 3); function custom_woocommerce_before_order_itemmeta( $item_id, $item, $product ) { ...

View More

Maintain the same WooCommerce categories on all shops in the network

Update: The recent WordPress and WooCommerce changes deprecated the current article code example, and thus will not be maintained anymore. Under WordPress MultiSite environment, WooCommerce can run on any site. In a sense, that means the WooCommerce is apparently MultiSite capable and compatible. In practice, there's no real MultiSite capability as no data is interconnected from a shop to another, every instance is self-running, with no possibility to interact with the other sites in the network. WordPress WooGlobalCart brings in a...

View More

Implement network-wide WooCommerce Tax settings

WooCommerce Tax area provides the necessary tools to create the required taxation for on-sale products. Setting up Taxes in WooCommerce is straightforward, through WooCommerce > Settings > Tax interface: Different tax classes and appropriate Rates, per specific Country, State, Zip, City etc area configurable: On check-out, the current shop tax set-up applies to all products in the shopping cart. The check-out location is settable through the plugin options, or this can be free to choose by the customer. I such case,...

View More

Send email notification to Shop Owner, if a product was checked-out on a different site

When using Single Site Check-out type, the Global Cart is being processed at a specified shop in the network or one at the customer preference. All Products will be included in a single order created on the site where the check-out occurs. On shop Networks, where the owner chose to use Shop Managers to allow individual sites to be run by individual users, when a new Order is created on the Check-out Shop, a notification e-mail might be required to...

View More

When Splitting the order, show only split transactions on the checkout shop

Splitting Orders, is a powerful tool when working with separate shop managers and merchants. That helps to create split orders with products that belong to different shops in the network. So each of the shops that had at least one product in the cart, will receive an order with its own products. A split can be ignored for the shop, where the check-out occurs. Or the main order can be hidden, on the checkout site and show the split...

View More