Add visibility parameters to all order details items so they can be controlled via shortcode

Similar to the controls in the old Elementor widgets, I would like to hide/show different items of the checkout details via shortcode parameters in the lf-payment component, or otherwise be able to move the items around into different order by breaking these out into separate component shortcodes

[lf-product-sale-price]

There is a shortcode and I am pretty sure there use to be a short code “[lf-product-sale-price]” and “[lf-product-regular-price]”, but the last two don´t seem to work / exist anymore. Is there a reason for that? Please add these shortcodes again and the Gutenberg LF Blocks for it. ps. FYI: the is not listed in…

Dynamic Offers

LaunchFlows will be integrating with WooCommerce Conditional Content to provide a powerful yet simple way to offer unlimited automatic sales funnels, without the need to setup individual products!

URL Parameter to Clear the Cart

When putting together bundles or products that go together (using the /?add-to-cart=73,82 url parameters), it would be very helpful to have a “clear the cart” options. For example /?clear_cart?add-to-cart=73,82. Sample code… add_action( ‘init’, ‘woocommerce_clear_cart_url’ ); function woocommerce_clear_cart_url() { if ( isset( $_GET[‘clear-cart’] ) ) { global $woocommerce; $woocommerce->cart->empty_cart(); } }