#2111

Hi you,

To change the loop product link, you need to use this code:


add_filter('woocommerce_loop_product_link', 'woncep_fnc_change_product_link', 10, 2);
function woncep_fnc_change_product_link($the_permalink, $product ){
$the_permalink = 'your-link';
return $the_permalink;
}