Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Claudio Sanches

    (@claudiosanches)

    Like a page with a tag cloud?

    If so you can put this in your theme’s functions.php or write a plugin:

    function my_custom_wc_tag_cloud_shortcode( $atts ) {
    	return wp_tag_cloud( array( 'taxonomy' => 'product_tag', 'echo' => false ) );
    }
    
    add_shortcode( 'my_wc_tag_cloud', 'my_custom_wc_tag_cloud_shortcode' );
    

    Then create your page and use your new shortcode:

    [my_wc_tag_cloud]
    Thread Starter mingjie0409

    (@mingjie0409)

    @claudio Sanches

    woooowwwwwooooo ,,,, It works !! So many many thanks for your help …

    Plugin Contributor Claudio Sanches

    (@claudiosanches)

    ??

    Thread Starter mingjie0409

    (@mingjie0409)

    @claudio Sanches

    Hi Claudio Sanches ,

    Sorry to trouble you again . Is It possible create a products Product Categories ?

    such as mysite.com/Product-Categories

    Thanks a lot , and have a good day !

    JK

    Plugin Contributor Claudio Sanches

    (@claudiosanches)

    WooCommerce already have a shortcode for it.
    You can use [product_categories].

    Please not, that is better if you open a new topic for your new questions.
    Check the forum rules:

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘I want to know how to Create product tags page’ is closed to new replies.