change out of stock text on product page
-
Hi there is a different way in laytheme for change "out of stock text" on product page?
i ve tryed this code on fubctions.php! but the text change only on single product page
add_filter( 'woocommerce_get_availability', 'change_out_of_stock_text_woocommerce', 1, 2 );
function change_out_of_stock_text_woocommerce( $availability, $product_to_check ) {
if ( ! $product_to_check->is_in_stock() ) {
$availability['availability'] = __( 'YOUR CUSTOM TEXT', 'woocommerce' );
}
return $availability;
}add_filter('woocommerce_out_of_stock_message', 'custom_wc_out_of_stock_message'); function custom_wc_out_of_stock_message() { return __( 'YOUR CUSTOM TEXT', 'woocommerce' ); }
-
seems like you do use the right filter:

-
but you forgot to add the priority
add_filter('woocommerce_out_of_stock_message', 'custom_wc_out_of_stock_message');
should be
add_filter('woocommerce_out_of_stock_message', 'custom_wc_out_of_stock_message', 99);
i think, but im not sure

if u ask my new little ai tool i built, you can see for the product thumbnails there is a setting in customize
but thats probably not the location you meant?
in customize -> woocommerce -> product thumbnails
I also code custom websites or custom Lay features.
šæ Email me here: šæ
info@laytheme.com
Our Web Development company: 100k.studio
Want to tip me? https://www.paypal.com/paypalme/arminunruh
Before you post:
- When using a WordPress Cache plugin, disable it or clear your cache.
- Update Lay Theme and all Lay Theme Addons
- Disable all Plugins
- Go to Lay Options ā Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"
This often solves issues you might run into
When you post:
- Post a link to where the problem is
- Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
- If the problem is difficult to explain, post screenshots / link to a video to explain it