Created
April 22, 2022 08:28
-
-
Save bradleysa/801d91fb3ce9704044cfbc7f96ab5ccc to your computer and use it in GitHub Desktop.
WC: Change "Out of stock" to "Sold Out" on Product Catalog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'astra_woo_shop_out_of_stock_string', 'out_of_stock_callback' ); | |
function out_of_stock_callback( $title ) { | |
return 'Sold Out'; | |
} | |
/** https://wpastra.com/docs/change-woocommerce-out-of-stock-text/ **/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment