Forums » Plugin: Timetable and Event Schedule by MotoPress » Show events in list on desktop

  • Resolved malvolio

    (@malvolio)


    Hi there,

    Is it possible to show the mobile version of the timetable (where all times are in a list) on desktop as well? I have a particular website where we would prefer to use the list view on both mobile and desktop, rather than the table.

    I can see the list view in the right column at https://mpttdemo.getmotopress.com, so I’m hoping it’s possible…I just can’t figure out how to get it working.

    Any help will be hugely appreciated!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor motopress

    (@motopress)

    Hi @malvolio,
    You can try to add the styles below to Appearance>Customize>Additional CSS:

    .mptt-shortcode-wrapper .mptt-shortcode-list {
        display: block;
    }
    .mptt-shortcode-wrapper .mptt-shortcode-table {
        display:none !important;
    }

    Let me know if it helps.

    Thread Starter malvolio

    (@malvolio)

    Thanks for your super fast reply!

    Your code worked, with a few small tweaks (shown below in case anyone else ever needs to do the same):

    @media screen and (min-width: 673px) {
    .mptt-shortcode-wrapper .mptt-shortcode-list {
        display: block !important;
    }
    .mptt-shortcode-wrapper .mptt-shortcode-table {
        display:none !important;
    }
    }

    Thanks again!!!

    Plugin Contributor motopress

    (@motopress)

    Hi @malvolio,
    Thanks for your reply. I’d appreciate if you review TimeTable plugin here https://wordpress.org/support/plugin/mp-timetable/reviews/

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Show events in list on desktop’ is closed to new replies.