fc_after_substep_{$substep_id}

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

Description #

Fires after the sub-step section content is rendered.

Modifiers #

  • {$substep_id} (string) The ID of the sub-step being rendered. Example: contact, shipping_methods.

Parameters #

  • $step_id (string) The step identifier.
  • $substep_id (string) Id of the sub-step.
  • $context (string) Context in which the sub-step is being output. Defaults to checkout.

Examples #

/**
 * Add extra content after the sub-step contents.
 */
function add_custom_content( $step_id, $substep_id, $context ) {
    echo '<div>Custom content after sub-step.</div>';
}
add_action( 'fc_after_substep_shipping_methods', 'add_custom_content', 10, 4 );

What are your feelings

Updated on March 2, 2026