/var/www/html_us/wp-content/themes/elessi-theme/woocommerce/notices/success.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
/**
 * Show messages
 * 
 * @author  NasaTheme
 * @package Elessi-theme/WooCommerce
 * @version 8.6.0
 */

if (!defined('ABSPATH')) :
    exit;
endif;

if (empty(
$notices) || !is_array($notices)) :
    return;
endif;
?>

<?php foreach ($notices as $notice) : ?>
    <div class="woocommerce-message"<?php echo wc_get_notice_data_attr($notice); ?> role="alert">
        <?php echo wc_kses_notice($notice['notice']); ?>
    </div>
<?php
endforeach;