Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Allowing adding custom CSS classes to the next step button.
Parameters #
$classes(array) Array of CSS classes for the next step button.
Examples #
/**
* Add custom classes to next step button
*/
function add_custom_next_step_button_classes( $classes ) {
$classes[] = 'custom-button';
return $classes;
}
add_filter( 'fc_next_step_button_classes', 'add_custom_next_step_button_classes', 10 );
