Support is monitored from Monday to Saturday in office hours from the GMT timezone. Our response time can be up to 2 business days.

Notice: We do not accept any customization. Please Read Envato Support Policy. But we still can help with little snippets if that's possible!

Okay
  Print

How to Show Specific Member Type by Using Shortcode

1. Please create a new WordPress Page

2. Use this shortcode

[youzify_members member_type="member type ID" ]

Change "member type ID" with any Member Type you want


3. Save the page

4. To show the Tab Filters only for specific members you want, you can use this CSS

For single members type

.youzify-members-directory-shortcode .item-list-tabs ul li {
    display: none;
}
.youzify-members-directory-shortcode .item-list-tabs #members-membertypeid{
    display: block;
}

For multiple members type

.youzify-members-directory-shortcode .item-list-tabs ul li {
    display: none;
}
.youzfy-members-directory-shortcode .item-list-tabs #members-membertypeid1, .yz-members-directory-shortcode .item-list-tabs #members-membertypeid2 {
    display: block;
}
  • Change membertypeid / membertypeid1 / membertypeid2 with the Member Type ID
  • Put the CSS on Youzify Panel >> General Settings >> Custom Styling Settings >> Global CSS Box (don't forget to turn on "Enable Global CSS" button) first.