// START Add 'read more' button in the shop loop.
add_action( 'woocommerce_after_shop_loop_item', 'read_more', 41 );
function read_more() {
global $product;
if ( $product ) {
$url = esc_url( $product->get_permalink() );
echo '<div class="readmore_button"><a rel="nofollow" href="'
. $url . '" class="et_pb_button">Meer info</a></div>';
}
}
// END Add 'read more' button in the shop loop.
Code language: PHP (php)Woocommerce add ‘read more’ button to shop page
Last updated:
Categories: Woo Products