I am using woocommerce for it, could you please help me? in the content-product.php file.
It will be like onclick load more product list
>Solution :
you can use this code for it
Edit the content-product.php file in your WooCommerce theme’s folder. This file is responsible for displaying each product on the product list page.
<h2 class="woocommerce-loop-product__title"><?php the_title(); ?></h2>
and readmore button
<a href="<?php the_permalink(); ?>" class="woocommerce-loop-product__link">
<?php _e( 'Read More', 'woocommerce' ); ?>
</a>