Implement a complete overhaul of the theme templates to match the Kolli UI design, including enhanced WooCommerce support, dark mode functionality, and improved responsive layouts. - Redesign core templates: front-page, archive, single, and product pages - Implement dynamic WooCommerce templates for shop, single product, and checkout - Add comprehensive asset structure including fonts, images, and custom CSS/JS - Integrate Tailwind CSS via CDN with custom configuration for brand colors - Add dark mode support with local storage persistence - Refactor functions.php for better theme setup and script enqueuing - Implement custom product meta fields for ingredients and health benefits - Add responsive design improvements and custom animations
10 lines
169 B
PHP
10 lines
169 B
PHP
<?php
|
|
defined('ABSPATH') || exit;
|
|
if(post_password_required()) return;
|
|
wp_list_comments(array(
|
|
'style' => 'div',
|
|
'avatar_size' => 48,
|
|
'max_depth' => 3,
|
|
));
|
|
|