If you are using a Kadence theme and showing a Custom Post Type’s with infinite loop. Then you may want to change the “End Of Content” text to something different related to your custom post type.

There is no option present inside the Kadence WordPress theme to achieve this. To achieve it you have to add following lines of code inside your functions.php file of your websites currently active child theme.

add_filter('theme_mod_infinite_end_of_content', function($value){
	if( get_post_type() === 'product'){
		$value = "No more products.";
	}
	return $value;
});

Make sure to add this code inside a child theme other wise your changes will be lost if you update your theme.

Or you can use a plugin like Code Snippets to add code inside your theme.