Updated for public server.

This commit is contained in:
2025-11-25 00:04:05 +00:00
parent d6e9d316bc
commit 70ec2ce486
267 changed files with 100271 additions and 30 deletions

View File

@@ -0,0 +1,27 @@
<?php
/**
* The template for displaying all single posts.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package Shopire
*/
get_header();
?>
<section class="woo-products wf-py-default">
<div class="wf-container">
<div class="wf-row wf-g-5">
<?php if ( !is_active_sidebar( 'shopire-woocommerce-sidebar' ) ): ?>
<div class="wf-col-lg-12 wf-col-md-12 wf-col-12 wow fadeInUp">
<?php else: ?>
<div id="wf-main" class="wf-col-lg-8 wf-col-md-12 wf-col-12 wow fadeInUp">
<?php endif; ?>
<?php woocommerce_content(); // WooCommerce Content ?>
</div>
<?php get_sidebar('woocommerce'); ?>
</div>
</div>
</section>
<?php get_footer(); ?>