Compatibility with complex plugins
You should turn ON mode "Run at frontend" at tab "Settings". Please, add provided code to functions.php !
add_filter('wpo_update_cart_cart_item_meta', function ($cart_item_meta, $item) {
return array_merge($cart_item_meta, array(
'addons' =...
Fri, 27 Nov, 2020 at 10:16 AM
add_filter( 'wpo_skip_add_to_cart_item', function ( $skip, $item ) {
return isset($item['woosb_parent_id']) ? true : $skip;
}, 10, 2 );
a...
Fri, 30 Oct, 2020 at 10:57 AM
add_filter('wpo_update_cart_cart_item_meta', function ($cart_item_meta, $item) {
return array_merge($cart_item_meta, array(
'tmpost_data...
Tue, 24 Dec, 2019 at 4:50 PM
add_filter('wpo_search_product_types', function ($types) {
$types[] = 'composite';
return $types;
});
add_filter('wpo_skip_add_to_c...
Fri, 17 Apr, 2020 at 10:37 AM
add_filter( 'wpo_skip_add_to_cart_item', function ( $skip, $item ) {
return isset($item['bundled_by']) ? true : $skip;
}, 10, 2 );
add_fi...
Fri, 14 Jun, 2019 at 2:16 PM
add_filter( 'wpo_search_product_types', function ( $types ) {
$types[] = 'booking';
return $types;
}, 10, 1 );
add_filter('wpo_cart...
Mon, 10 Jun, 2019 at 1:11 PM
This plugin will work only if you use button "Go to Cart/Checkout" or for mode Run at frontend add_action("wpo_before_switch_custom...
Wed, 14 Aug, 2019 at 12:40 PM
This plugin tracks customer activity , so you should use following way 1. Visit >WooCommerce>Phone Orders, tab Settings>Checkout at fronten...
Fri, 13 Sep, 2019 at 10:01 AM
// must fill $_POST
add_action( 'woocommerce_checkout_phone_order_processed', function ( $order_id, $checkout_data, $order ) {
if ( class_exists( ...
Fri, 13 Sep, 2019 at 10:07 AM
add_filter( "wpo_skip_add_to_cart_item", function ( $skip, $item ) {
if ( ! empty( $item["chained_item_of"] ) ) {
$skip = t...
Tue, 24 Dec, 2019 at 4:51 PM