Add “Load more” button after WooCommerce products

<?php

/* add to your (child) theme's functions.php */
add_action( 'woocommerce_after_shop_loop', function() {
?>
<button class="fwp-load-more">Load more</button>
<?php
} );