Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Controls whether to use verbose loading indicators on blocked parts of the page.
By default, some sections that are dynamically updated during checkout will not display a loading indicator when updating. This gives the customer a better experience with less interruptions on fast connections.
Setting this filter to true will make the loading indicator be displayed for all sections being updated.
Parameters #
$use(bool) Whether to use verbose loading indicators. Defaults tofalse.
Examples #
/**
* Enable verbose loading indicators
*/
add_filter( 'fc_use_verbose_loading_indicator', '__return_true', 10 );
