Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Allows changing custom classes of the main checkout wrapper.
Parameters #
$class(string) Additional CSS classes for the content section. Defaults to''.
Examples #
/**
* Add custom wrapper classes
*/
function add_custom_wrapper_classes( $classes ) {
$classes .= ' custom-checkout-wrapper';
return $classes;
}
add_filter( 'fc_wrapper_classes', 'add_custom_wrapper_classes', 10 );
