Answers for "ordpress how to put product categories jumbotron text below the products"

0

ordpress how to put product categories jumbotron text below the products

add_action('woocommerce_archive_description', 'custom_archive_description', 2 );
function custom_archive_description(){
    if( is_product_category() ) :
        remove_action('woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
        add_action( 'woocommerce_after_main_content', 'woocommerce_taxonomy_archive_description', 5 );
    endif;
}
Posted by: Guest on May-05-2022

Code answers related to "ordpress how to put product categories jumbotron text below the products"

Browse Popular Code Answers by Language