Forums › Forums › Search & Filter Pro › Filters are not working on Mac
- This topic has 10 replies, 2 voices, and was last updated 5 years, 7 months ago by Anonymous.
-
Anonymous(Private) April 5, 2019 at 7:32 am #207603
Hi,
First of all, thanks for your plugin.
We have intgrated your plugin on : https://www.t4gf.org/actualites/It’s working well on windows environment ( Chrome / Firefox…) but it does’nt work on Mac system.
Code in our template :
<?php // The Query $args = array('post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => -1, 'orderby' => 'date', 'order' => 'DESC', 'suppress_filters' => false); if( $langActive == "fr-FR" ) { $args['search_filter_id'] = 1684; } else { $args['search_filter_id'] = 1697; } $the_query = new WP_Query( $args ); // The Loop if ( $the_query->have_posts() ) { echo '<ul>'; while ( $the_query->have_posts() ) { $the_query->the_post(); $vignette = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); $sousTitre = get_field('sous-titre'); $extrait = get_field('extrait_texte_page_actualites'); ?> <li class="display-article"> <a href="<?php the_permalink(); ?>"> <div class="container50 image-article vignette-actu" style="background-image:url(<?php echo $vignette; ?>)"> <div class="aplat-hover"><div></div></div> <div class="aplat-hover-noir"></div> </div> </a> <div class="container50 contenu-article floatleft"> <div class="display-table"> <div class="display-table-cell"> <h2 class="titre-article cap"><?php the_title(); ?> <?php if($sousTitre){ echo $sousTitre; } ?></h2> <div class="texte-article"> <p class='bleu'><strong><?php echo $extrait; ?></strong></p> <a href="<?php the_permalink(); ?>" class="lien-actu"><?php echo $intituleLien; ?></a> </div> </div> </div> </div> <div class="clearboth"></div> </li> <?php } echo '</ul>'; /* Restore original Post Data */ wp_reset_postdata(); } else { // no posts found } ?>
Anonymous(Private) April 5, 2019 at 9:58 am #207628Here’s a dropbox link with two video screencast from a macbook pro and iphone.
The filters are not working. When I select a filter nothing happens and the posts don’t get sorted :
https://www.dropbox.com/sh/2xhfc68mj2n2qvb/AADKQRVSvNOwU8zABHExObNPa?dl=0
Anonymous(Private) April 5, 2019 at 4:08 pm #207669Here’s the link of the page : https://t4gf.org/actualites/
I can not give you admin logins, the owner of the site didn’t allow me.
If you really access, we could make a copy of the website on a pre-production server next week.
Let me know if you absolutely need it
Trevor(Private) April 10, 2019 at 9:44 am #207989I looked at your plugin list and for now have disabled Post Type order and Autoptimize. I think it now works. Post Type Order will cause our plugin not to work. Autoptimize should only be activated when the site is finished. It should not be used when developing.
-
AuthorPosts