How do you change the text "Calendar of Events"
thanks!
Dan
How do you change the text "Calendar of Events"
thanks!
Dan
Searched everywhere in the plugin editor but can't seem to find the line of text "Calendar of Events" any ideas?
Hey Dan. Based on user requests, this will be easier to tweak in a future release...right now it requires modifying the translation file using a tool like POEdit. That help, or would you like further guidance on this? Let me know.
No thats fine Roblagatta, its not a huge issue for me, thanks for your help and reply :)
Hey Dan, if you're savvy with templating in WordPress you basically just need to setup some conditional logic in your theme where the page title is set like so:
<?php if(tribe_is_month()) { ?>
Calendar Grid
<?php } else if(tribe_is_event() && !tribe_is_day() && !is_single()) { ?>
Event List
<?php } else { ?>
<?php the_title(); ?>
<?php } ?>
Hope that helps!
You must log in to post.