• Resolved rpjonjubilee

    (@rpjonjubilee)


    I installed the plugin and added a couple test meeting locations. When I click on the link I get a page that says “No results matched those criteria” and the tab for that page is entitled “Sunday Meetings”.

    For kicks I added a Sunday meeting. Now the page lists that meeting, though the column headers are hidden under the top of my web page.

    Why does the meetings page default to only Sunday meetings? And how can I get it to display further down the page so the top of the table is not hidden.

    Here’s the page: https://www.sastl.net/meetings/

    Thanks

    https://www.ads-software.com/plugins/12-step-meeting-list/

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author AA Web Servant

    (@aasanjose)

    Hi Richard,

    The top of the page is hidden under your navbar because of the way your theme is set up. You’ve got a navbar that’s position: fixed, so the content is sliding under it. Try adding

    #meetings, #meeting, #location { padding-top: 100px; }
    #meetings button { margin: 0; }

    to your CSS and see if that helps.

    As for your other question, by default the plugin shows the current day of meetings. You can link to the ‘any day’ view by linking to https://www.sastl.net/meetings/?d=any in your navbar.

    Thread Starter rpjonjubilee

    (@rpjonjubilee)

    Thanks. That css mod fixed the display issue and the d=any link shows all the meetings. The issue now is that the filter menus don’t work. I click on “any day” for example and it doesn’t do anything and doesn’t give me any drop down options.

    Thanks for your prompt reply!

    Plugin Author AA Web Servant

    (@aasanjose)

    Ah, ok, that’s actually covered in the FAQ. Please try adding the following to your functions.php. I think what’s happening is that the Bootstrap framework is being added twice, once by the plugin and once by the theme.

    add_action('wp_enqueue_scripts', function(){
        wp_dequeue_style('bootstrap_css');
        wp_dequeue_script('bootstrap_js');
    });
    Thread Starter rpjonjubilee

    (@rpjonjubilee)

    That worked. Thanks. And thanks for the quick 1.9.8 update.

    Plugin Author AA Web Servant

    (@aasanjose)

    Ok great!

    Thread Starter rpjonjubilee

    (@rpjonjubilee)

    I just updated to the latest version of the plugin and I have the same issue again with the top of the page being hidden under the nav-bar. I tried increasing the 100px to 200 and see no change. This is on browsers on a mac. On my iphone, it renders properly.

    Hey Jon,

    A while back, the CSS needed to override the plugin changed, to help prevent future theme incompatibilities. Try this CSS now:

    
    #tsml { padding-top: 100px; }
    #tsml button { margin: 0; }
    
    Thread Starter rpjonjubilee

    (@rpjonjubilee)

    That’s it. Thanks.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘meetings list page not working’ is closed to new replies.