Hi,
We’re happy to take a look, but the URL you shared isn’t loading for us. Is this a public URL?
Hi @christineunilu2019, the location is shown on the single session page once you click on the session title on schedule. Hope that help.
Thanks!
is there a way to display location without the clicking into the event?
Hi @whitepeacockpro,
The locations don’t show on the schedule by default. This is a feature we will be adding to the pro version of the plugin.
Although, you can hook into the session and add the locations.
Make sure you are running the latest version of the plugin 1.0.4.
In your themes functions file add this code.
add_filter('wpcs_session_content_footer','my_session_footer');
function my_session_footer($id){
return get_the_term_list( $id, 'wpcs_location', '<div>Location: ', ', ', '</div>');
}
I hope that helps let us know if you have any other questions.