Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Controls whether to wrap the checkout shortcode rendered content with fc-content wrapper.
Parameters #
$enabled(bool) Whether the shortcode wrapper is enabled. Defaults tofalse.
Examples #
Priority here is important to be set higher than 10 because maybe_enable_checkout_shortcode_wrapper may also be setting changing the returned value to true.
/**
* Disable checkout shortcode wrapper for custom styling
*/
add_filter( 'fc_enable_checkout_shortcode_wrapper', '__return_false', 20 );
