Events Made Easy Forums Bug fixed or feature request implemented Named Anchor at top of Map Locations List

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #42377
    Anonymous
    Inactive

    A large map size is advantageous with a large number locations, but users may not notice the location list below a large map. I suggest adding a named anchor at the beginning of the location list to enable linking to the list from above the map.

    That can be accomplished by changing Line 594 of eme_locations.php from:

    $result .= "<ol id='eme_locations_list'></ol>";

    To:

    $result .= "<a name='eme_location_list_top' id='eme_location_list_top'></a><ol id='eme_locations_list'></ol>";

    Users can then optionally put something like this above maps to link to the location list below:

    <a href="#eme_location_list_top">View List</a>

    #45982
    Franky
    Keymaster

    You don’t need a empty a-tag for that, anchors work with id’s as well 🙂

    Try this in your current page:

    <a href="#eme_locations_list">View List</a>

    Then view the page et voila …

    So: already implemented.

    #45983
    Anonymous
    Inactive

    Great! I didn’t realize that any id can function as an anchor target.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘Bug fixed or feature request implemented’ is closed to new topics and replies.
Scroll to Top