Title: Location tags
Last modified: August 22, 2016

---

# Location tags

 *  Resolved [Etienne](https://wordpress.org/support/users/etienne01/)
 * (@etienne01)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/location-tags-1/)
 * Hi,
 * Is there a tag to show the location_id (related to an event)?
 * And one other question:
    how can the location URL also be shown in the pop-up
   screen (after clicking on a date with an activity)?
 * Now only possible with the URL in the activity, not the location URL.
 * Thanks!
 * [https://wordpress.org/plugins/my-calendar/](https://wordpress.org/plugins/my-calendar/)

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

 *  Plugin Author [Joe Dolson](https://wordpress.org/support/users/joedolson/)
 * (@joedolson)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/location-tags-1/#post-5527265)
 * You can use the template tag {sitelink} or {sitelink_html} to show the location
   URL; there is no template tag for showing a location_id, but you could get that
   fairly easily by adding a custom template tag.
 * Use the hook ‘mc_filter_shortcodes’ to insert a custom template tag:
 * $e is the array of template tags, $event is the event object.
 *     ```
       add_filter( 'mc_filter_shortcodes', 'my_function', 10, 2 );
       function my_function( $e, $event ) {
           return $e;
       }
       ```
   
 *  Thread Starter [Etienne](https://wordpress.org/support/users/etienne01/)
 * (@etienne01)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/location-tags-1/#post-5527347)
 * Thanks for quick reply Joe, I’ll dive into that!
 * And as mentioned: how can the location URL also be shown in the pop-up screen(
   after clicking on a date with an activity)?
 *  Thread Starter [Etienne](https://wordpress.org/support/users/etienne01/)
 * (@etienne01)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/location-tags-1/#post-5527350)
 * Hi Joe,
 * Found it already, sorry 😉

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

The topic ‘Location tags’ is closed to new replies.

 * ![](https://ps.w.org/my-calendar/assets/icon-256x256.png?rev=1097576)
 * [My Calendar - Accessible Event Manager](https://wordpress.org/plugins/my-calendar/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/my-calendar/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/my-calendar/)
 * [Active Topics](https://wordpress.org/support/plugin/my-calendar/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/my-calendar/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/my-calendar/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Etienne](https://wordpress.org/support/users/etienne01/)
 * Last activity: [11 years, 7 months ago](https://wordpress.org/support/topic/location-tags-1/#post-5527350)
 * Status: resolved