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