• Resolved freebrian

    (@freebrian)


    Great plugin. Drop down boxes didn’t work so I added the recommended language from FAQ to my theme’s function.php. Now the drop down boxes work but there is this constant banner in yellow under the page header that says “No results matched those criteria”. Everything else seems to work fine.

    https://district28wp.bdsdesign.com/wp/meetings/

    Thanks for your support. This is exactly what our small rural district needs.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Brian,

    Your theme, OnePress, is very odd. It includes part, but not all, of the common Bootstrap library. Enough for the Javascript to interfere, but not enough to support the .hidden CSS class.

    There are two ways you could fix it. My suggestion would be not to dequeue the plugin’s CSS:

    add_action('wp_enqueue_scripts', function(){
        //dequeue css removed
        wp_dequeue_script('bootstrap_js');
    });

    This is what you’d add to your functions.php, rather than what was recommended in the FAQ.

    Alternately, you could add this custom css .hidden { display: none; }

    I think the first solution is better, because there could be other things OnePress removed. But if it messes up your theme, then try the second way.

    Also I noticed the table cells are centered, which looks a little weird in the mobile view. If you were adding CSS, you might try this as well:

    #meetings th, #meetings td { text-align: left; }

    Good luck!

    • This reply was modified 8 years, 3 months ago by meetingguide.
    Thread Starter freebrian

    (@freebrian)

    That resolved the problem. Thanks you for your quick response and perfectly effective suggestions. I will add the css fix for the centering of the table cells. Thanks again!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘No results matched those criteria’ is closed to new replies.