Hi
Please see below for the files and line numbers you need to edit:
/Applications/MAMP/htdocs/neighborhood/wp-content/themes/neighborhood/woocommerce/content-product.php:
81 echo '<span class="out-of-stock-badge">' . __( 'Out of Stock', 'swiftframework' ) . '</span>';
82
83: } else if ($product->is_on_sale()) {
84
85: echo apply_filters('woocommerce_sale_flash', '<span class="onsale">'. __( 'Sale!', 'swiftframework' ).'</span>', $post, $product);
86
87 } else if (!$product->get_price()) {
..
197 * woocommerce_before_shop_loop_item_title hook
198 *
199: * @hooked woocommerce_show_product_loop_sale_flash - 10
200 * @hooked woocommerce_template_loop_product_thumbnail - 10
201 */
/Applications/MAMP/htdocs/neighborhood/wp-content/themes/neighborhood/woocommerce/content-single-product.php:
42 * woocommerce_show_product_images hook
43 *
44: * @hooked woocommerce_show_product_sale_flash - 10
45 * @hooked woocommerce_show_product_images - 20
46 */
/Applications/MAMP/htdocs/neighborhood/wp-content/themes/neighborhood/woocommerce/single-product/product-image.php:
24 echo '<span class="out-of-stock-badge">' . __( 'Out of Stock', 'swiftframework' ) . '</span>';
25
26: } else if ($product->is_on_sale()) {
27
28: echo apply_filters('woocommerce_sale_flash', '<span class="onsale">'.__( 'Sale!', 'swiftframework' ).'</span>', $post, $product);
29
30 } else if (!$product->get_price()) {
– Kyle