Skip Navigation

[Resolved] Sorting options not working on mobile

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
- 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10: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/Kolkata (GMT+05:30)

This topic contains 1 reply, has 1 voice.

Last updated by nicoleR-3 1 month, 4 weeks ago.

Assisted by: Minesh.

Author
Posts
#2786865

I am trying to:
I have two search criteria for a view that doesn't appear to be working on mobile. When you tap on either the dropdown or the text field, nothing happens. On desktop it is fine. Only appears to be an issue on mobile. I went through and deactivated all plugins and themes, and it appears to be a conflict with the theme. I saw an old support thread that seemed to have the same problem and wondered if this would solve mine as well, but I don't know what the code would be for my theme/filters: https://toolset.com/forums/topic/impossible-to-launch-search-on-mobile/

Link to a page where the issue can be seen:
hidden link

Thank you.

#2786922

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

Hello. Thank you for contacting the Toolset support.

There was a CSS issue for the mobile device.

I've added the div with container class as given under with your view's "Output Editor" section:
=> hidden link

<div class="container">
[wpv-layout-meta-html]
</div>

Then I've added the following CSS code to your view's "Search and Pagination" section custom CSS box:

@media only screen and (max-width: 480px){

  .container {
        display:flex;
   }

}

Can you please confirm now you able to select the dropdown option.

#2787112

Everything looks good. Thank you so much!