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

0

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>
Posted by: Guest on December-04-2020
0

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

<?php
//show category description
$term_object = get_queried_object();
?>
<div class="woocommerce-category-description">
    <div class="title"><?php echo $term_object->name; ?></div>
    <div class="description"><?php echo $term_object->description; ?></div>
</div>
Posted by: Guest on December-04-2020
0

remove upsell products woocommerce

remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 15 );
Posted by: Guest on May-07-2020

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

Code answers related to "TypeScript"

Browse Popular Code Answers by Language