Since some months, each time I create a new venue I need to correct the location manually by changing the latitude-longitude coordinates or moving the pointer on the map. So any address that I enter in the venues form are automatically synchronised with the location map.
Same issue when using google maps or Open Street Map.
What can I do to correct this behaviour ?
]]>This page is not working, if you put the map info the embedded map gets in the way of the games played in that venue.
How can this be fixed? is it a CSS problem or a programmatic one? This page is created by clicking on a venue in the game details fixtures.
Thanks!
]]>I am trying to add the venue information that is shown at the end of a single event page, to another page. Is there a shortcode for it?
]]>Could you help me please?
]]>If possible, it would be nice if placing the file in
child-theme\plugins\mage-eventpress\****
would override the input fields.
<div class="mp_ticket_type_table">
<table>
<tr>
<th style="min-width: 160px;"><?php esc_html_e(" Location Source:", "mage-eventpress"); ?></th>
<td colspan="3" style="min-width: 450px;">
<label for='mep_org_address_list'>
<select class="mp_formControl" name="mep_org_address" class='mep_org_address_list' id='mep_org_address_list'>
<option value="0" <?php echo ($mep_org_address == 0) ? esc_attr('selected') : ''; ?>><?php echo esc_html($event_label);
_e(' Details', 'mage-eventpress'); ?></option>
<option value="1" <?php echo ($mep_org_address == 1) ? esc_attr('selected') : ''; ?>><?php esc_html_e('Organizer', 'mage-eventpress'); ?></option>
</select>
</label>
<p class="event_meta_help_txt">
<?php esc_html_e('If you have saved organizer details, please select the "Organizer" option. Please note that if you select "Organizer" and have not checked the organizer from the Event Organizer list on the right sidebar, the Event Location section will not populate on the front end.', 'mage-eventpress'); ?>
</p>
</td>
</tr>
<tr class="mp_event_address">
<th><span><?php esc_html_e('Country: ', 'mage-eventpress'); ?></span></th>
<td>
<label>
<input type="text" name='mep_country' placeholder="Ex: USA" class="mp_formControl" value='<?php echo mep_get_event_locaion_item($post_id, 'mep_country'); ?>'>
</label>
</td>
<th><span><?php esc_html_e('Postcode: ', 'mage-eventpress'); ?></span></th>
<td>
<label>
<input type="text" name='mep_postcode' placeholder="Ex: 10016" class="mp_formControl" value='<?php echo mep_get_event_locaion_item($post_id, 'mep_postcode'); ?>'>
</label>
</td>
</tr>
<tr class="mp_event_address">
<th><span><?php esc_html_e('State: ', 'mage-eventpress'); ?></span></th>
<td>
<label>
<input type="text" name='mep_state' placeholder="Ex: NY" class="mp_formControl" value='<?php echo mep_get_event_locaion_item($post_id, 'mep_state'); ?>'>
</label>
</td>
<th><span><?php esc_html_e('City: ', 'mage-eventpress'); ?></span></th>
<td>
<label>
<input type="text" name='mep_city' placeholder="Ex: New York" class="mp_formControl" value='<?php echo mep_get_event_locaion_item($post_id, 'mep_city'); ?>'>
</label>
</td>
</tr>
<tr class="mp_event_address">
<th><span><?php esc_html_e('Street:', 'mage-eventpress'); ?></span></th>
<td>
<label>
<input type="text" name='mep_street' placeholder="Ex: 10 E 33rd St" class="mp_formControl" value='<?php echo mep_get_event_locaion_item($post_id, 'mep_street'); ?>'>
</label>
</td>
<th><?php esc_html_e('Location/Venue:', 'mage-eventpress'); ?></th>
<td>
<label>
<input type="text" name='mep_location_venue' placeholder="Ex: New york Meeting Center" class="mp_formControl" value='<?php echo mep_get_event_locaion_item($post_id, 'mep_location_venue'); ?>'>
</label>
</td>
</tr>
</table>
</div>
]]>