Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
themes
/
Avada
/
templates
:
wc-product-loop-outofstock-flash.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Out of stock flash template * * @author ThemeFusion * @copyright (c) Copyright by ThemeFusion * @link https://avada.com * @package Avada * @subpackage Core * @since 5.1.0 */ global $product; ?> <?php if ( ! $product->is_in_stock() ) : ?> <div class="fusion-out-of-stock"> <div class="fusion-position-text"> <?php $outofstock_label = Avada()->settings->get( 'woo_outofstock_badge_text' ); if ( '' === $outofstock_label ) { $outofstock_label = __( 'Out of stock', 'Avada' ); } echo esc_html( $outofstock_label ); ?> </div> </div> <?php endif; ?>