Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

woocommerce remove This is where you can add new products to your store in taxonomy description

<?php
//show custom title and category description
$term_object = get_queried_object();
?>
<div class="woocommerce-category-description">
    <div class="title"><?php echo the_field('category_title', 'product_cat_'.$term_object->term_id); ?></div>
    <div class="description"><?php echo $term_object->description; ?></div>
</div>
Source by davidnash.com.au #
 
PREVIOUS NEXT
Tagged: #woocommerce #remove #This #add #products #store #taxonomy #description
ADD COMMENT
Topic
Name
9+1 =