cliffordp
8/22/2017 - 11:29 PM

Override the Events List widget's / shortcode's "View More..." link (may affect elsewhere, too) * * For https://theeventscalendar.com/suppor

Override the Events List widget's / shortcode's "View More..." link (may affect elsewhere, too) * * For https://theeventscalendar.com/support/forums/topic/find-out-more-link/ * !!! Customize the URL inside esc_url() !!!

<?php
/**
 * Override the Events List widget's / shortcode's "View More..." link
 *
 * For https://theeventscalendar.com/support/forums/topic/find-out-more-link/
 * !!! Customize the URL inside esc_url() !!!
 *
 * @see tribe_events_get_list_widget_view_all_link
 *
 * @link https://gist.github.com/cliffordp/d5cade1485a3275b5e26669062481528
 */
function pascal_custom_find_out_more_link() {
	return esc_url( 'https://www.google.com/' ); // customize this!!!
}

add_filter( 'tribe_events_get_list_widget_view_all_link', 'pascal_custom_find_out_more_link' );