Skip Navigation

[Closed] Create inline filter for a view

This support ticket is created 4 years 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
8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 - -
13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 - -

Supporter timezone: America/New_York (GMT-04:00)

This topic contains 1 reply, has 2 voices.

Last updated by Christian Cox 4 years ago.

Assisted by: Christian Cox.

Author
Posts
#1878087

I want to add a filter under the search bar that shows the type for each item and have it dynamic filter when selecting. I had this working but wanted the options to be inline...?

hidden link

Any ideas please...

#1878425

Hello, usually this will require some custom CSS, since there is no built-in option for inline checkbox filters. For example, you could set the container element around all the checkboxes to be floated to the left, and add a bit of right margin, by inserting custom CSS in this View:

.checkbox {
  float:left;
  margin-right:10px;
}

You could adjust the margin values in that example as needed. Will that work for your needs, or did I misunderstand what you want to accomplish?

The topic ‘[Closed] Create inline filter for a view’ is closed to new replies.