• Hi
    I have managed to change the ‘Sold Out’ text in my WooCommerce pages but now I’d like to add a hyperlink to that text:

    //change text "Out of Stock' to 'SOLD OUT'
        if ( !$_product->is_in_stock() ) $availability['availability'] = __('Custom Order Available. Please EMAIL US for further info', 'woocommerce');
            return $availability;

    I’d like the EMAIL US to link to our contact page. I’ve tried a href and echo but they’re incompatible.

    Is this possible?

  • The topic ‘Hyperlink in WoOCommerce Availability Text’ is closed to new replies.