Viewing 4 replies - 1 through 4 (of 4 total)
  • I am having the same issue. Has there been any resolution to this issue?

    Thank you.

    Thread Starter rachaelsull

    (@yeshimc)

    @jcuff12, unfortunately, I’m still waiting on a resolution.

    Hello @yeshimc

    Here’s a snippet of code you can add to the bottom of your theme’s functions.php file that might solve the problem:

    function tribe_nofollow_ical_links($html){
    return str_replace(‘<a’, ‘<a rel=”nofollow”‘, $html);
    }
    add_filter(‘tribe_events_ical_single_event_links’, ‘tribe_nofollow_ical_links’, 10, 3);

    It simply edits the iCal links before they are displayed. Let me know if that works for you.

    Best regards,

    Marho

    Thread Starter rachaelsull

    (@yeshimc)

    Thank you, @matumu! I’ll send this solution to our web developer and have her add the code. Whether the solution worked or if we need further assistance, I’ll post it to this thread.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Duplicate Content Issues with iCal Feature’ is closed to new replies.