Display tag description on the tag page

  • Unknown's avatar

    Hello! I would like to display the product tag description and the blog tag description on the tag page. Can somebody help me? I use Hestia theme and display the category description with this:

    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;

    }`

  • It appears that you have deleted the WordPress.com user account that you were posting from. I’m going to assume that you have sorted out your situation. If not, please feel free to contact us again.

  • The topic ‘Display tag description on the tag page’ is closed to new replies.