| 1 |
<?php if ( ! defined( 'ABSPATH' ) ) exit; ?> |
| 2 |
<?php |
| 3 |
/** |
| 4 |
* Generic Fallback Template for FluentCart Archives mainly for product archives |
| 5 |
* |
| 6 |
*/ |
| 7 |
do_action('fluent_cart/generic_template/rendering'); |
| 8 |
get_header(); |
| 9 |
?> |
| 10 |
<?php do_action('fluent_cart/generic_template/before_content'); ?> |
| 11 |
<div style="width: 100%; max-width: var(--global-content-width); display: block; margin-top: 20px; margin-bottom: 20px;" class="fct-genric-template-wrapper site-container"> |
| 12 |
<div id="main" class="site-main"> |
| 13 |
<?php do_action('fluent_cart/template/before_content'); ?> |
| 14 |
<?php do_action('fluent_cart/template/main_content'); ?> |
| 15 |
<?php do_action('fluent_cart/template/after_content'); ?> |
| 16 |
</div> |
| 17 |
</div> |
| 18 |
<?php do_action('fluent_cart/generic_template/after_content'); ?> |
| 19 |
|
| 20 |
<?php get_footer(); ?> |
| 21 |
|