Skip Navigation

[Resolved] Another question I came over

This support ticket is created 2 years, 9 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

This topic contains 4 replies, has 2 voices.

Last updated by benjaminH-7 2 years, 9 months ago.

Assisted by: Luo Yang.

Author
Posts
#2488471

Thanks, I could solve the missing image problem at the user frontend form and I could solve the featured image lightbox.

I think, the author archive I can fix also - I need some time.

Another question I came over: can I limit / select, which categories are selectable at the user post form?

#2488477

Hello,

There isn't such kind of built-in feature within Toolset Forms plugin, you might consider to use custom CSS/JS codes to hide/display those specific terms.

#2488479

OK, is there any kind of example js code?

#2488513

See the same test site:
hidden link

There are three terms in taxonomy "category":
hidden link

In post form:
hidden link
section "CSS editor", you an use below CSS codes to hide the specific term "Term A":

li.tax-term-a {
display: none;
}

See the result here:
hidden link

For your reference.

#2488533

My issue is resolved now. Thank you!