Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Andras Guseo

    (@aguseo)

    Hello sand20,

    Thanks for reaching out!

    Add this to your theme’s (child theme’s) style.css file:

    .single .tribe-events-cal-links {
        display: none;
    }

    That should do the trick. ??

    Cheers

    Thread Starter Sandson Costa

    (@sand20)

    ok, I made a hard way, removed the php file itself, then the page was not the way it was before … I did the css file, has the same effect as removing the php code. following image of before and after.

    View post on imgur.com

    View post on imgur.com

    View post on imgur.com

    Plugin Contributor Andras Guseo

    (@aguseo)

    How about:

    .single .tribe-events-cal-links {
        visibility: hidden;
        height: 0;
    }
    Thread Starter Sandson Costa

    (@sand20)

    OK! It does not work well. But I managed to solve.
    Instead of using:

    .single .tribe-events-cal-links {
        visibility: hidden;
        height: 0;
    }

    I used:

    .single .tribe-events-cal-links {
        visibility: hidden;
        height: auto;
    }

    And it was all right. It is as a tip for others.

    Brook

    (@brook-tribe)

    Excellent, thanks for getting back sand20. Good to know the exact code that worked for you.

    Cheers!
    – Brook

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to remove Google Calendar e Ical Export from page?’ is closed to new replies.