Search
 
SCRIPT & CODE EXAMPLE
 

TYPESCRIPT

remove upsell products woocommerce

remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 15 );
Comment

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>
Comment

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>
Comment

PREVIOUS NEXT
Code Example
Typescript :: typescript loop over enum 
Typescript :: main.ts is missing from the typescript compilation 
Typescript :: typescript filter list of objects based on latest date 
Typescript :: Text input detect return key react native 
Typescript :: rails precompile assets in a directory 
Typescript :: rails_env production rake assets precompile 
Typescript :: define typescript types 
Typescript :: typescript check type 
Typescript :: typescript one of the array items 
Typescript :: unknown typescript 
Typescript :: cannot redeclare block-scoped variable typescript 
Typescript :: javascript block comment 
Typescript :: accessing formcontrol from fromgroup 
Typescript :: use sample weights fit model multiclass 
Typescript :: get typescript props of component 
Typescript :: shortid typescript 
Typescript :: react inherit html input props 
Typescript :: ts async function type 
Typescript :: where to create assets folder in flutter 
Typescript :: typescript react function coponent props 
Typescript :: mailbox exists c# 
Typescript :: array of objects in class c++ 
Typescript :: TypeScript Example Code Snippet 
Typescript :: typescript vue html css types 
Typescript :: c# merge two lists different types 
Typescript :: typescript delete value from map 
Typescript :: typescript 
Typescript :: callback ref typescript 
Typescript :: wergensherts meaning 
Typescript :: function permutations() kalibrr 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =