Hi @sarrendell,
Yes I can see the issue you are having. It’s because the OUM popup does not play well with your theme. I’ll try to implement a solution with a next update. For now please try to add the following css styles to your theme:
div.et_pb_section.et_pb_section_3 {z-index: 100;}
.open-user-map .add-location {padding-top: 140px !important; padding-bottom: 70px;}
.open-user-map .add-location #close-add-location-overlay {top: 130px !important;}
This should fix your case – however it’s not a general solution yet.
Let me know if this works for you.
Best Regards,
Daniel
This fix unfortunately did not work for me. I ultimately turned off the Add Location feature and created a form for approval on back-end. I’ve updated the plugin and the issue continues – the map loads very wonky with my theme. Is there another alternative I can try, or is there a fix in the near future? Thank you!
Hi @sarrendell,
We can try one more thing. If this not works please wait a bit for the upcoming update.
Okay, let’s try this. Edit the file /templates/block-map.php in the plugin folder. It looks like this:
<?php require_once "$this->plugin_path/templates/partial-map-init.php"; ?>
<div class="open-user-map">
<?php require_once "$this->plugin_path/templates/partial-map-add-location.php"; ?>
<?php require_once "$this->plugin_path/templates/partial-map-render.php"; ?>
</div>
Remove everything and insert this instead:
<?php require_once "$this->plugin_path/templates/partial-map-init.php"; ?>
<div class="open-user-map">
<?php
$plugin_path = $this->plugin_path;
add_action('wp_footer', function () use (
$plugin_path,
$oum_map_label,
$types,
$oum_marker_types_label,
$oum_title_label,
$oum_address_label,
$oum_description_label,
$oum_ui_color,
$oum_enable_user_notification,
$text_notify_me_on_publish_label,
$thankyou_text,
$map_style,
$text_notify_me_on_publish_name,
$text_notify_me_on_publish_email,
$thankyou_headline,
$oum_addanother_label) {
echo '<div class="open-user-map">';
require_once "$plugin_path/templates/partial-map-add-location.php";
echo '</div>';
});
?>
<?php #require_once "$this->plugin_path/templates/partial-map-add-location.php"; ?>
<?php require_once "$this->plugin_path/templates/partial-map-render.php"; ?>
</div>
Save the file and test again. Please let me know if it works.
Best Regards,
Daniel
Yes I will try this now.
Also a question: Can you make a shortcode to pull the Title and Text of submissions and turn them into a comment section? *bottom of page
Reference link: https://millionshirtmom.com/registermyshirt/
Thank you!