• Resolved scaballe

    (@scaballe)


    I am a beginner in woocommerce,

    I am trying to modify the subject of low stock messages, I have tried this code,

    function custom_low_stock_subject( $subject, $product ) {
    
    	return $product->get_name() . $subject; 
    	}
    
    add_filter( 'woocommerce_email_subject_low_stock', 'custom_low_stock_subject', 20, 2);

    but I have this error intermittently

    PHP Fatal error: Uncaught Error: Call to a member function get_name() on array

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘custom low_stock subject email’ is closed to new replies.