Tagged: ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #10991
    grantsmith
    Participant

    Hi,

    Currently Google Maps is placed in the header of the event post. How would I move it to after the content area?

    Thanks

    #11007
    grantsmith
    Participant

    Still no reply :(

    #11031
    Bartosz
    Keymaster

    Hi Grant,

    Sorry for the late reply – we had Easter here.

    Regarding your question – this is possible to adjust on the theme level or using available hooks, something like that:

    function customize_events_maker_hooks() {
    	// remove google map from before the title
    	remove_action( 'em_after_single_event_title', 'em_display_single_event_google_map', 40 );
    	// put google map after the event content
    	add_action( 'em_single_event_content', 'em_display_single_event_google_map', 20 );
    }
    add_action( 'wp', 'customize_events_maker_hooks' );
Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.