How to remove "export months events" button and also…..

Home Forums Calendar Products Events Calendar PRO How to remove "export months events" button and also…..

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1024507
    david
    Participant

    as the subject asks- how do I remove the “export months events” button
    and…..

    on the mobile view of the calendar once you click a date how do I remove the “find out more” link

    #1024888
    Geoff
    Member

    Hi @david,

    You can remove the button with some CSS. For example:

    #tribe-events .tribe-events-button {
    display: none;
    }

    Same thing with the link:

    #tribe-mobile-container .type-tribe_events .tribe-events-read-more {
    display: none;
    }

    Add those snippets alongside your theme’s custom styles or try a plugin like Simple Custom CSS.

    Cheers!
    Geoff

    #1025028
    david
    Participant

    the css for the link worked,but the grey + export months events code at the bottom didn’t

    #tribe-events .tribe-events-button {
    display: none;
    }
    #1025320
    Geoff
    Member

    Hi David,

    Awesome, I’m glad the CSS for the Find Out More link helped!

    I might be looking at a different export button than you are. Either way, if you’re looking for help customizing the calendar’s styles, we do have a guide to that shows how to find the CSS classes for any calendar element. From there, you can modify the snippet I’ve provided with the correct class and it will work from there. 🙂

    Cheers!
    Geoff

    #1025525
    david
    Participant

    works with

    #tribe-events .tribe-events-button {
    display: none !important;
    }
    #1025528
    Geoff
    Member

    Excellent! Thanks for following up and I’m glad that worked. 🙂

    Geoff

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘How to remove "export months events" button and also…..’ is closed to new replies.