• File: wc-product-loop-outofstock-flash.php
  • Full Path: /home/docteuh/www/themes/Avada/templates/wc-product-loop-outofstock-flash.php
  • Date Modified: 11/20/2023 6:11 PM
  • File size: 618 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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; ?>