Hi
You need to chnage it in a few places, see below:
PATH: neighborhood/woocommerce/content-product.php:
70 if (is_out_of_stock()) {
71
72: echo '<span class="out-of-stock-badge">' . __( 'Out of Stock', 'swiftframework' ) . '</span>';
73
74 } else if ($product->is_on_sale()) {
PATH: neighborhood/woocommerce/wishlist.php:
175 if( $stock_status == 'out-of-stock' ) {
176 $stock_status = "Out";
177: echo '<span class="wishlist-out-of-stock">' . __( 'Out of Stock', 'swiftframework' ) . '</span>';
178 } else {
179 $stock_status = "In";
PATH: neighborhood/woocommerce/single-product/product-image.php:
21 if (is_out_of_stock()) {
22
23: echo '<span class="out-of-stock-badge">' . __( 'Out of Stock', 'swiftframework' ) . '</span>';
24
25 } else if ($product->is_on_sale()) {
– Kyle