Initial Commit N° : 001 - V.4.3.3

This commit is contained in:
2025-03-28 14:32:57 +01:00
commit 238e5d7999
809 changed files with 371149 additions and 0 deletions
+24
View File
@@ -0,0 +1,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;