• Resolved sarrendell

    (@sarrendell)


    Hello there! Thank you for this awesome plugin!

    I am having issues when opening the form on my site, however. The form spans the height of the page and jumbles in with my other sections. I am unable to scroll up and down the form and there is no way to “click off” of the form and back onto the page.

    Let me know how I can fix this!

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author 100plugins

    (@100plugins)

    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

    Thread Starter sarrendell

    (@sarrendell)

    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!

    Plugin Author 100plugins

    (@100plugins)

    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

    Thread Starter sarrendell

    (@sarrendell)

    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!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Form display’ is closed to new replies.