• Resolved aojohnson

    (@aojohnson)


    If I ‘add event’ in admin panel these functions are working as expected. On the frontend form, the datepicker doesn’t show, and the location search as well as map preview do not work. No console errors.

    https://wakesurfnation.com/submit-an-event/

    browser auth:
    u: aojdesign
    p: unusual-story

    • This topic was modified 7 years, 8 months ago by aojohnson.
Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Support angelo_nwl

    (@angelo_nwl)

    just to narrow down the problem and help us debug the issue is it possible to try the following temporarily:

    – deactivating all other plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).
    – switching to the default theme to rule out any theme-specific problems

    Thread Starter aojohnson

    (@aojohnson)

    @angelo_nwl I have done this with no change. Are you able to see the behavior?

    • This reply was modified 7 years, 8 months ago by aojohnson.
    • This reply was modified 7 years, 8 months ago by aojohnson.

    Are you using any custom code or templates related to Events Manager?

    Thread Starter aojohnson

    (@aojohnson)

    No. I’ve changed the text for the event title “example” and added the following custom css:

    #event-form i{
    display: none;
    }
    #em-location-data table.em-location-data {
    width: 100%;
    }

    Even after removing both, I’m not seeing any changes.

    • This reply was modified 7 years, 8 months ago by aojohnson.
    Thread Starter aojohnson

    (@aojohnson)

    For anyone else having this problem. I have “reset settings” in admin area. The datpicker and location search have come back to life. I was very careful the second time around to only change the settings I knew needed to be changed. So… these functions are working properly now.

    However, @caimin_nwl, My single location maps are not loading. I get a thin grey area that says “map loading”, then it disappears. Again, no console errors. API is setup as [locations_map] shortcode is working fine.

    Plugin Support angelo_nwl

    (@angelo_nwl)

    since you are using ssl, can you try this snippet which will force ssl

    
    function my_em_force_ssl( $template ){
    	if( !is_ssl() && em_is_event_page() ){
    		wp_redirect(str_replace('http:','https:', get_permalink()));
    		die();
    	}
    	return $template;
    }
    add_filter('template_redirect', 'my_em_force_ssl', 10 );
    

    As for where to paste custom snippet – https://wp-events-plugin.com/tutorials/how-to-safely-add-php-code-to-wordpress/

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Date Picker & Geomapping don’t show on Frontend’ is closed to new replies.