skip to Main Content

Is it possible to display only the Primary category term on Elementor?
I have custom post types and taxonomies created and I have the Taxonomy Video and then Sub ones like Video Editing, and I would like to show only Video Editing which is the primary category.

elementor taxonomy

2

Answers


  1. These items should have a class tag id attached to them when displayed. CSS hide that tag should allow you to hide it cosmetically.

    You can also build your own template loop to have full control over what you want ( might need the Elementor pro or anywhere Elementor extension )

    Login or Signup to reply.
  2. You can hide the second occurrence forward by adding the following code:

    .elementor-post-info__terms-list-item:nth-child(n+2) {
        display: none !important;
    }
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search