• Resolved phpnukes

    (@phpnukes)


    The select a calendar from drop down menu is a problem if registered users can add the event to my google calendar. How can we remove this link. I would want to add a button to message me or complete a form instead.

    There must be an option for approving a registered user. Otherwise we could have anyone can add all events.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter phpnukes

    (@phpnukes)

    found adding this snippet to the theme function.php removed this link.

    // Hide subscribe box on single event pages.

    add_filter(

        'tec_views_v2_subscribe_link_visibility',

        function( $subscribe_links) {

            return! is_singular( Tribe__Events__Main::POSTTYPE );

        },

        100

    );

    Just added my own link via a form for registered users to complete for approval first.

    Plugin Support tristan083

    (@tristan083)

    Hi @phpnukes,

    Thank you for reaching out and for the update. I’m glad to learn you were able to find the filter code snippet to remove the calendar links and sorted out the “approval form”.

    I’d be closing this thread, and please do not hesitate to bump a new thread on our way. This is for us to track down topics/issues efficiently and for us to follow the WordPress Forum Guidelines.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove link to add calendars’ is closed to new replies.