fc_checkout_column_layout

Back to list of all filter and action hooks for Fluid Checkout Lite.

Description #

Modifies the checkout column layout setting.

Acceptable values:

  • two_columns – Two columns checkout layout (default).
  • one_column – One column checkout layout.

Parameters #

  • $current_value (string) the layout retrieved from settings. Defaults to two_columns.

Examples #

/**
 * Always use the one-column checkout layout.
 */
function fc_force_one_column_layout( $layout ) {
	return 'one_column';
}
add_filter( 'fc_checkout_column_layout', 'fc_force_one_column_layout', 10 );

What are your feelings

Updated on December 31, 2025