79804308

Date: 2025-10-30 00:07:37
Score: 1
Natty:
Report link

a better solution :

add_action('woocommerce_single_product_summary', function() {
    global $product;

     if ( ! $product->is_in_stock() ) { 
         echo '<a href="' . home_url( 'contact' ) . '">Contact us</a>'; 
     }
    
}, 31);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hicham EL ALAOUI