Disable infinite scroll browser history in the Flatsome theme

Disable infinite scroll browser history in the Flatsome theme on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'flatsome_infinite_scroll_params', function ( $params ) {
	$params['history'] = false;

	return $params;
} );
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.