Sauter la navigation

[Résolu] Sorting options not working on mobile

This support ticket is created Il y a 5 mois. 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
- 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)

Ce sujet contient 1 réponse, a 1 voix.

Dernière mise à jour par nicoleR-3 Il y a 5 mois.

Assisté par: Minesh.

Auteur
Publications
#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:
lien caché

Thank you.

#2786922

Minesh
Supporter

Les langues: Anglais (English )

Fuseau horaire: 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:
=> lien caché

<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!