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
+28
View File
@@ -0,0 +1,28 @@
<?php
if (wc_get_loop_prop('total')) :
global $nasa_opt;
$_delay = $count = 0;
$_delay_item = (isset($nasa_opt['delay_overlay']) && (int) $nasa_opt['delay_overlay']) ? (int) $nasa_opt['delay_overlay'] : 100;
while (have_posts()) :
the_post();
/**
* Hook: woocommerce_shop_loop.
*/
do_action('woocommerce_shop_loop');
wc_get_template(
'content-product.php',
array(
'_delay' => $_delay,
'wrapper' => 'li'
)
);
$_delay += $_delay_item;
$count++;
endwhile;
endif;