Title: Gallery / Map Load
Last modified: August 30, 2016

---

# Gallery / Map Load

 *  Resolved [ChrisLynchDesign](https://wordpress.org/support/users/chrislynchdesign/)
 * (@chrislynchdesign)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/gallery-map-load/)
 * Hi guys, currently using the EPL plugin and finding it very good. Just one issue,
   when my page loads the map fails, also the lightbox. However when I click the
   thumbnail image (it loads into a new window) and go back, the lightbox and map
   are loaded perfectly.
 * Any suggestions on a fix for for first load image gallery and map?
 * Thanks
 * [https://wordpress.org/plugins/easy-property-listings/](https://wordpress.org/plugins/easy-property-listings/)

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/gallery-map-load/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/gallery-map-load/page/2/?output_format=md)

 *  Plugin Author [Merv Barrett](https://wordpress.org/support/users/mervb1/)
 * (@mervb1)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/gallery-map-load/#post-6560729)
 * Could be due to you not saving the coordinates after adding the address. Basically
   if you forget to, on first load the plugin will generate the coordinates and 
   update your Lat/long. So on second load it uses the saved coordinates.
 * Basically after adding a listing address make sure you press the coordinate generate
   button then publish your listing
 *  Thread Starter [ChrisLynchDesign](https://wordpress.org/support/users/chrislynchdesign/)
 * (@chrislynchdesign)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/gallery-map-load/#post-6560737)
 * Just tried it and still no change. If I Update and preview the page after editing
   all is fine, map and gallery loaded. However if I go to another listing or try
   load up the same listing again the gallery thumbs load, but not the map, and 
   the lightbox effect is disabled.
 * On a force refresh everything is loaded fine.
 * Thanks
 *  Plugin Author [Merv Barrett](https://wordpress.org/support/users/mervb1/)
 * (@mervb1)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/gallery-map-load/#post-6560821)
 * Do you have a site URL?
 *  Thread Starter [ChrisLynchDesign](https://wordpress.org/support/users/chrislynchdesign/)
 * (@chrislynchdesign)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/gallery-map-load/#post-6560831)
 * [http://hare.miller87.ie/commercial/17-upper-mount-street-dublin-2/](http://hare.miller87.ie/commercial/17-upper-mount-street-dublin-2/)
 * Thanks
 *  Plugin Author [Merv Barrett](https://wordpress.org/support/users/mervb1/)
 * (@mervb1)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/gallery-map-load/#post-6560851)
 * Can you submit your login [details here](https://easypropertylistings.com.au/support/forum/basic-support/)
   as a private reply. Hoping it is just some finger trouble 🙂
 * This Listing loads the map correctly
    [http://hare.miller87.ie/commercial/17-upper-mount-street-dublin-2/](http://hare.miller87.ie/commercial/17-upper-mount-street-dublin-2/)
 * This one shows no map.
    [http://hare.miller87.ie/commercial/recent-trans-1-3-sandford-road-ranelagh-dublin-6/](http://hare.miller87.ie/commercial/recent-trans-1-3-sandford-road-ranelagh-dublin-6/)
 *  Thread Starter [ChrisLynchDesign](https://wordpress.org/support/users/chrislynchdesign/)
 * (@chrislynchdesign)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/gallery-map-load/#post-6560956)
 * Thanks, I’ll send login details now.
 *  Plugin Author [Merv Barrett](https://wordpress.org/support/users/mervb1/)
 * (@mervb1)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/gallery-map-load/#post-6560971)
 * Just returned from break overseas, will look into this request again for you.
 *  [jmontieleud](https://wordpress.org/support/users/jmontieleud/)
 * (@jmontieleud)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/gallery-map-load/#post-6561007)
 * Hello,
 * I have a similar problem. Map is not rendering. For me the gallery lightbox works
   fine, but none of the maps show. I have deleted and added again the address, 
   click on the coordinate generate button several times. Create a new property.
   Nothing works.
 * This happens in other sites I know use this plugin.
 * **If I resize the page to 1024px wide or less the map shows ok**
 * you can see an image of the problem in the following link
 * [Dropbox link – Screenshot](https://dl.dropboxusercontent.com/u/5840500/EPL-maps.png)
 * Hope this help
 *  Plugin Author [Merv Barrett](https://wordpress.org/support/users/mervb1/)
 * (@mervb1)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/gallery-map-load/#post-6561008)
 * Often it is related to another theme or plugin that also adds the Google Maps
   API which causes map issues.
 * Our Google Map API can be disabled with a function. We are adding this as an 
   option to settings. Some themes and plugins do not have an option to disable 
   the maps api even if the map is only used on a single page.
 * To disable the Easy Property Listings google maps api add this to your theme 
   functions file.
 *     ```
       <?php
       function my_epl_disable_google_maps_api() {
       	wp_dequeue_script('google-map-v-3');
       }
       add_action( 'wp_enqueue_scripts', 'my_epl_disable_google_maps_api', 5, 3 );
       ?>
       ```
   
 *  [jmontieleud](https://wordpress.org/support/users/jmontieleud/)
 * (@jmontieleud)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/gallery-map-load/#post-6561009)
 * Hello,
 * I did add the previous code to the theme functions.php, the problem persist.
 * As I said before, this happens in several sites, I have access, that use this
   plugin.
 * If I resize the browser to less than 1000 pixel wide the maps render just fine.
 * Chrome console shows no error
 * You van see the page here
 * [http://realfloridaestate.com/property/15455-sw-119-te-15455-miami-fl-33196/](http://realfloridaestate.com/property/15455-sw-119-te-15455-miami-fl-33196/)
 *  Plugin Author [Merv Barrett](https://wordpress.org/support/users/mervb1/)
 * (@mervb1)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/gallery-map-load/#post-6561010)
 * I can’t even see the map, can you provide WordPress login details via a [support ticket here](https://easypropertylistings.com.au/support-ticket/).
   Something strange going on here…
 *  Plugin Author [Merv Barrett](https://wordpress.org/support/users/mervb1/)
 * (@mervb1)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/gallery-map-load/#post-6561013)
 * Thanks for helping diagnose the map issue. It is due to theme CSS causing the
   map image tile to disappear and causes issues with the icons. We are going to
   add stricter map CSS to the plugin but in the meantime until 2.3.2 is released
   you can add this to your theme CSS.
 *     ```
       #epl-default-map .gm-style img {
           max-width: none !important;
       }
       ```
   
 *  [ventana56](https://wordpress.org/support/users/ventana56/)
 * (@ventana56)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/gallery-map-load/#post-6561033)
 * Merv,
 * Great plugin, but I have been trying unsuccessfully to submit support requests.
   It says there will be a confirming email, no such email arrives. I have tried
   every which way to contact you, via FB, Youtube, etc.,
 * Here is my problem: I have a development company building a site using the plugin(
   had I known about some of the real estate sites you recommend, I’d have gone 
   with that, alas) and any rate, this is an economic development site for a city.
   We are posting listings of commercial real estate, two types: manufacturing and
   warehouse, and we want two corresponding pins on the map. I’ve purchased the 
   professional developer package and I have given them the shortcodes for advanced
   mapping.
 * They are claiming that the post type only allows for one pin. That you cannot
   differentiate between one type of property and another. They wanted to also post
   using “rentals” but “rentals” is for residential, not commercial and so the listing
   criteria is very different.
 * What can I direct them to do in order to have two or even three different type
   of property pins, according to the property type?
 *  Plugin Author [Merv Barrett](https://wordpress.org/support/users/mervb1/)
 * (@mervb1)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/gallery-map-load/#post-6561039)
 * Sorry about the support form issue, we are pretty certain that it works. Can 
   you try to submit your request again and take a screen shot of the form of it
   does not let you submit it so we can fix the issue.
 * Thanks for purchasing the [developer bundle for Easy Property Listings](https://easypropertylistings.com.au/extensions/developer-license/).
 * Did we connect on Facebook? unsure of your email address/name.
 * The advanced map shortcode can display all post types in a single map with approx
   300-400 pins.
 * Try using this shortcode for commercial:
 * `[advanced_map post_type="commercial"]`
 * And for multiple post types use:
 * `[advanced_map post_type="property,rental,commercial"]`
 *  [sheepy](https://wordpress.org/support/users/sheepy/)
 * (@sheepy)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/gallery-map-load/#post-6561048)
 * Merv,
 * I have been requesting and requesting for a year. Please please can you oblige
   this causes me so much grief that I am ready to dump the plugin . ALLOW OVERRIDE
   WITH CO ORDINATES so Co Ordinates are defaulted. My addresses are in Colombia
   and they do not have the desired effect entering an address.
 * Try Calle Odiseo, Cartagena, Bolívar, Colombia with Google maps then try it with
   yours. Your co ordinates produce the wrong location. It simply cannot find it.
   Try it and see.
 * Mark

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/gallery-map-load/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/gallery-map-load/page/2/?output_format=md)

The topic ‘Gallery / Map Load’ is closed to new replies.

 * ![](https://ps.w.org/easy-property-listings/assets/icon-256x256.png?rev=984159)
 * [Easy Property Listings](https://wordpress.org/plugins/easy-property-listings/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/easy-property-listings/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/easy-property-listings/)
 * [Active Topics](https://wordpress.org/support/plugin/easy-property-listings/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/easy-property-listings/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/easy-property-listings/reviews/)

 * 16 replies
 * 5 participants
 * Last reply from: [sheepy](https://wordpress.org/support/users/sheepy/)
 * Last activity: [10 years, 5 months ago](https://wordpress.org/support/topic/gallery-map-load/page/2/#post-6561049)
 * Status: resolved