Hi Linda,
Thanks for reaching out!
You can get those links on the top of your calendar by changing theĀ Default stylesheet used for events templates setting to “Full Styles” (found under Events > Settings > Display). They will still appear on the bottom as well, but if you don’t want them on the bottom, you can add this to your custom CSS area under Appearance > Customize (if your theme offers one) or in your child theme’s style.css file:
#tribe-events-footer .tribe-events-sub-nav {
display: none;
}
To change that message, try adding this snippet to your functions.php file:
// Changes the no results notice in The Events Calendar
add_filter( 'tribe_the_notices', 'customize_notice', 10, 2 );
function customize_notice( $html, $notices ) {
// If text is found in notice, then replace it
if( stristr( $html, 'There were no results found.' ) ) {
// Customize the message as needed
$html = str_replace( 'There were no results found.', 'There were no results found. Try the next month', $html );
}
return $html;
}
Let me know how that works for you!
Thanks,
Jennifer