Hello, WPC Smart Upsell Funnel is great. However, I have a problem. In the product display, the price is always shown without taxes. How can I set the plugin so that the price is displayed including taxes?
]]>Hi,
I’m using your plugin, I really like how it works. Would there be a way to add a product to the cart without reloading the page?
The standard “add to cart” button on the product and product archive works that way, thanks to the Astra theme and the Ajax add to cart feature.
I’m a little annoyed when I add an upsell product to cart and the whole page reloads.
Thank you.
Kind regards,
Peter
Hi, I tried adding upsell offer shortcode to mini-cart by adding this code to child theme functions.php however products do appear but I cannot click on + icon top right to add the upsale product to the cart. How can we fix this?
/* upsell on mini cart */
add_action( 'woocommerce_mini_cart_contents', 'upsell_minicart' );
function upsell_minicart() {
echo '<div style="padding: 15px;">';
echo do_shortcode( '[wpcuf_uf]' );
echo '</div>';
}
]]>