Robert_36 0 Newbie Poster

Hello Everyone,

I have issue with calling woocommerce custom taxonomy template:

Current Paramlink Structure:

**Common Settings: **
Custom Structure: /%category%/%postname%/

1) I have created custom taxonomy post type "product" with its slug "wooauthor".

childtheme/woocommerce.php

    elseif(is_tax('wooauteur') && !is_archive('wooauteur'))
    {
        echo "TAXONOMY";
        woocommerce_get_template( 'taxonomy-wooauteur.php' );
    }

    elseif((is_archive('wooauteur') && is_tax('wooauteur')) && !is_singular( 'product' ))
    {
        echo "ARCHIVE";
        woocommerce_get_template( 'archive-wooauteur.php' );
    }

2) Also i have created one template called "woocommerce/archive-wooauthor.php" file in woocommerce folder, this file is working with and not issues in calling this file for ex: if open http://websitename.com/wooauteur/akino-kondoh/ then its working.

3) Also i have created one template called "woocommerce/taxonomy-wooauthor.php" file in woocommerce folder, this file is not calling in front side for ex: http://websitename.com/wooauteur/ then it given me 404 page not found! error.

I want to display all wooauteur category and its products in woocommerce template with my given examples.

Thanks.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.