Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save AnanthFlycart/a5c615bc22fbbfbe8a964ded3dce96ce to your computer and use it in GitHub Desktop.

Select an option

Save AnanthFlycart/a5c615bc22fbbfbe8a964ded3dce96ce to your computer and use it in GitHub Desktop.
CUW: Cart Upsells on Mini-cart
// NOTE: This snippets works in Checkout Upsell plugin version 1.4.1 and above
add_action('woocommerce_mini_cart_contents', function () {
if (defined('CUW_VERSION') && version_compare(CUW_VERSION, '1.4.1', '>=')) {
if (method_exists('\CUW\App\Modules\Campaigns\CartUpsells', 'getOffersHtml')) {
echo \CUW\App\Modules\Campaigns\CartUpsells::getOffersHtml('shortcode', true, false);
}
}
}, 20);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment