FORGOT YOUR DETAILS?

404

The page cannot be found.

TOP add_filter(‘woocommerce_get_availability’, ‘custom_get_availability’, 1, 2); function custom_get_availability($availability, $_product) { // Change the out of stock text here if (!$_product->is_in_stock()) { $availability = __(‘Sold’, ‘woocommerce’); } return $availability; }