Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey @miroslavglavic,

    Thanks for reaching out!

    The following snippet worked for me to remove the subscribe button from the month view of the calendar:

    function miro_remove_subscribe() {
    if ( tribe_context()->get( 'view_request' ) === 'month' ) { ?>
    	<style>
    	.tribe-events-c-subscribe-dropdown__container {
    	display: none !important;
    	}
    	</style>
    <?php }
    }
    
    add_action( 'wp_footer', 'miro_remove_subscribe' );

    To see if it works for you, place the snippet in your theme’s (preferably a child theme) functions.php file. Please remember to flush all caches before you test the snippet out.

    Best!
    John

    Plugin Support Darian

    (@d0153)

    Hi @miroslavglavic

    We haven’t heard from you in a while, so I’m going to mark this as resolved. Feel free to start a new thread if you have any more questions.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Subscribe to Calendar button?’ is closed to new replies.