golden hour
/home/godaofbq/hyperxpod.com/wp-content/plugins/shopengine/widgets/archive-description/screens
⬆️ Go Up
Upload
File/Folder
Size
Actions
default.php
1.11 KB
Del
OK
Edit: default.php
<?php defined('ABSPATH') || exit; ?> <div class="shopengine-archive-description"> <?php if(get_post_type() === \ShopEngine\Core\Template_Cpt::TYPE) { $orderby = 'name'; $order = 'asc'; $hide_empty = false; $cat_args = array( 'orderby' => $orderby, 'order' => $order, 'number' => 1, 'hide_empty' => $hide_empty, ); $product_categories = get_terms('product_cat', $cat_args); if(!empty($product_categories[0])) { $cat = $product_categories[0]; if(empty($cat->description)) { ?> <p> <?php echo esc_html__('This is a dummy archive description based paragraph. It only appears on editor page and will help you to customize your actual description', 'shopengine') ?> </p> <?php } else { echo esc_html($cat->description); } unset($product_categories, $cat); } } /** * Hook: woocommerce_archive_description. * * @hooked woocommerce_taxonomy_archive_description - 10 * @hooked woocommerce_product_archive_description - 10 */ if ( is_product_category() || is_product_tag() ) { shopengine_content_render(get_the_archive_description()); } ?> </div>
Save