Compatibility with complex plugins
You should turn ON mode "Run at frontend" at tab "Settings". Please, add provided code to functions.php !
Use following code to prevent applying same discount many times (for each added product!) add_filter( "wpo_prepare_item", function ( $item, $pro...
Mon, 6 Jan, 2020 at 9:52 AM
add_filter( "wpo_prepare_item", function ( $item, $product ) {
$item['item_cost'] = $product->get_price();
return $item;
}, 10, 2...
Mon, 6 Jan, 2020 at 10:42 AM
Unfortunately, we cannot fix this with the hooks. So it will require change in CSP plugin. Check out the file located at customer-specific-pricing-for-...
Mon, 6 Jan, 2020 at 10:47 AM
add_action('wpo_before_update_cart', function ($cart_data) {
if ( ! class_exists('WOOCS') ) {
return;
}
global $WOOCS...
Thu, 16 Apr, 2020 at 3:17 PM
Use this code to send email using user's language 1. please comment out lines 45,46 in file /wp-content/plugins/polylang-wc/include/emails.php Lik...
Thu, 16 Apr, 2020 at 4:00 PM