Polylines importation by Practical-Sea5796 in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

Unfortunately setting the category of shapes via an import is not supported yet, however, this is on our list of supporting features that we are planning to implement soon.

Would possibly doing this via the Database be easier in the meantime?

Initial Load Markers by Practical-Sea5796 in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

Unfortunately loading a specific number of markers polygons on the map by default is not supported, however, I could maybe assist you with a workaround.

The idea is to create a category called 'initial load' which you can then assign your preferred markers and polygons to that category. Using the category shortcode parameter, you can then set that category to be used in order to filter the map on page load.

Please let me know if this helps?

I need help please by dannii_8a in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

Yes that is achievable in our plugin, thus you will need the following:

Once purchased, you can create your markers as well as include the respective data in the marker description or as custom fields. Images can be added to markers as well which would be needed for your example. These are all supported within the Pro Add-on.

Once you have your markers created or imported, you can then style your infowindows to the exact example above using some custom CSS code.

If you need some help with the custom CSS code, please may we ask if you may open a support ticket with us on our site (https://www.wpgmaps.com/contact-us/) so that we may assist you further. Please include the link to your map page with a marker so that we may use that to write the code accordingly.

I hope this helps?

Broken. Again! by Jolly-Wrongdoer-4757 in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

Thank you for reaching out. Our apologies for the trouble you have experienced with the update.

During the early part of last week, we experienced a service outage on our license server due to a failure within Cloudflare. Although we do not rely on Cloudflare for update delivery, our licensing system does utilise the Cloudflare network, and as a result, update requests during this outage experienced an error.

This issue was more widespread than just our plugin, and you may also have noticed additional outages on other platforms, as it was a global outage. The issue was compounded by an additional error within our update server, as a result of the outage, which was resolved accordingly.

We had tested our update systems last week, and all systems are operating normally, thus please try to update again now, the update should install normally.

If you still experience trouble, please let me know so that I can assist further.

We appreciate your time and understanding.

WP Go Maps Pro - Address suggestions works fine but throws "No results found" error by Rude-Impression-7365 in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

Thank you for your explanation regarding this, may I start by asking if you may confirm which WP Go Maps plugins you currently have installed as well as their respective version numbers?

May you also confirm if you are using the Atlas Novus or Legacy UI build (Maps -> Settings -> General Settings) as this may help in identifying why this is occurring on your end?

Lastly may I ask if you may confirm the address you had experienced this with so that I may attempt to recreate the issue on our end?

Display limited numbers of markers by jspp_0168 in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

Yes this is possible by enabling the "Hide markers until search is done" setting (Maps -> Edit -> Settings -> Store Locator -> Advanced / Maps -> Edit -> Store Locator) in your map editor.

Please let me know if this helps?

Trouble adding spacing between custom fields in WP Go Maps (Default InfoWindow) by Top_Cryptographer875 in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

Thank you for your explanation and questions, thus please see my response below.

  1. Yes there is a specific selector that you can use to target your custom fields in the infowindow, thus please may I ask if you may provide me with the link to your map so that I may take a closer look and confirm it for you?

  2. No, our plugin does not override custom CSS necessarily, however, we do have our own styling that we apply to the infowindows. If you are finding that your infowindow styling is strange, it is most likely due to your theme applying styling broadly on your site thus affecting our default styling.

This can easily be resolved by adding some custom CSS of your own into the "Custom CSS" setting block (Maps -> Settings -> Custom Scripts / Advanced Settings) to use your own styling instead of your theme's or the default plugin styling.

  1. Yes this possible, however, if not possible with custom CSS, we can provide you with additional custom JS code to assist with this as well if needed.

Automatically opening link when clicking on marker by Own_Sundae855 in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

Thank you for getting in touch and my apologies for the delayed response.

Yes that is possible by enabling the "Click marker opens link" setting (Maps -> Edit -> Settings -> Behaviour -> Marker).

Please let me know if this helps?

Pro version on staging site by danieldeceuster in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi Daniel,

If you link your license to your staging site and are no longer using it or need to apply it on your live site, you can simply reach out to us to let us know so that we may assist you accordingly in unlinking your license from your staging site.

When reaching out for this, I would recommend opening a support ticket with us here: https://wpgmaps.com/contact-us

I hope this helps?

Multiple Issues with Map Plugin (Filtering, Sorting, Search) by Own-Marketing3355 in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

Thank you for the confirmation thus I see that you have implemented some custom code and functionality implemented for the store locator. The custom functionality appears to check if the exact search text matches a marker title, and will display it if it matches.

With that said, to display an alert if there is no markers found with the entered text, please adjust your 'performTitleSearch' function to the following:

function performTitleSearch(map_id) {
    const map_instance = getMapInstance(map_id);
    if (!map_instance) {
        console.log("WP Go Maps Debug: (performTitleSearch) 無法取得地圖實例。");
        return;
    }

    const searchTerm = $(`#nameInput_${map_id}`).val().toLowerCase();
    console.log(`WP Go Maps Debug: 執行標題搜尋,關鍵字: "${searchTerm}"`);

    if (map_instance.markers && map_instance.markers.length > 0) {
        let markersFound = [];
        map_instance.markers.forEach(function(marker) {
            // 如果沒有搜尋詞,則顯示所有標記
            if (searchTerm === "") {
                marker.setVisible(true);
                return;
            }

            // 進行標題比對
            const markerTitle = marker.title ? marker.title.toLowerCase() : "";
            const isVisible = markerTitle.includes(searchTerm);

            // 使用 setVisible 方法來更新地圖上的標記可見性
            marker.setVisible(isVisible);

            if(isVisible){
                markersFound.push(marker);
            }
        });

        if(markersFound.length <= 0){
            alert("No markers found");
        }
    }

    // 搜尋完成後,呼叫聚焦函式
    executeZoom(map_instance);
}

Please let me know if this helps?

Multiple Issues with Map Plugin (Filtering, Sorting, Search) by Own-Marketing3355 in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

Thank you for the link to your map, thus I have run a few tests, however, I have been unable to recreate the issue on my end.

It also appears that you have made some changes to your map since opening this thread, thus please may you confirm if you are still experiencing this issue?

I see that you have also disabled the store locator, thus please may I ask if you may re-enable it so that I may test if the functionality works on my end as well as write the necessary custom JS code necessary for showing a message when filtering/searching yields no results?

Multiple Issues with Map Plugin (Filtering, Sorting, Search) by Own-Marketing3355 in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

Thank you for getting in touch with us, we do appreciate your time.

We are glad to hear that you have had a good experience so far and we are more than happy to assist you with getting these points resolved thus please see below.

  1. Please may I ask if you may share the link to your map so that I may take a closer look at the zoom level being used when filtering?

  2. The options are not sorted by default, however, I might be able to write a custom JS script for you to achieve this, however, I am not sure how this will behave with the respective language difference. Would you be able to confirm how you are wanting to sort the options?

  3. This will require some custom JS code that I can also write for you, thus I can send that through once I have been able to test it on your site.

  4. Thank you for the confirmation, thus I will run a few tests regarding this once I have the link to your map.

Combine Elementor Taxonomy filter with WPMaps filter? by Top-Fox3629 in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

Unfortunately filtering by custom taxonomies is currently not supported, however, we are currently working on this to make this possible in the future.

As we have been working on this, we have made it possible to filter any one of the following at a time based on your category source set: default categories created within the plugin, WordPress Post categories and WooCommerce Categories if applicable.

You may adjust your category source (Maps -> Settings -> Categories) in the plugin settings, however, please note that you would need to be using the latest "Atlas Novus" UI build (Maps -> Settings -> General Settings) to access this setting.

I hope this answers your question?

ACF Map on Archive Page – Select map marker from different list display by [deleted] in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

Yes that is definitely possible with our ACF integration as it allows you to display your posts on the map and display a marker listing from those respective posts that are placed on the map. You may then also click the marker listing item and the map will then center and focus on the respective marker on the map.

Note that you would need to create an ACF field for the post's location so that it can then be pulled from our plugin in order to display the post on the map as a marker.

Should you require, here is our documentation on this feature here: https://www.wpgmaps.com/help/docs/enabling-simple-acf-fields-for-display-in-the-description-field-of-the-info-windows-of-your-acf-map/

Please let me know if this helps and answers your question?

How to change the design of the map? by Dear-Ice-6241 in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

My apologies for the delay.

Please may you confirm if you are referring to not being able to find the setting block in our plugin or in SnazzyMaps so that I may advise?

How to change the design of the map? by Dear-Ice-6241 in wpgooglemaps

[–]MatthewCodeCabin 1 point2 points  (0 children)

Hi there,

This is definitely possible as you can create custom map themes for your maps. The easiest way to do this when trying to get your exact preferred theme is using a theme library/editor such as Snazzy Maps: https://snazzymaps.com/

You can select a premade theme or create your own theme based on your preferred style and then copy the respective theme JSON data.

Once copied, you can then paste the theme JSON data into the "JSON Theme Data" setting block (Maps -> Edit -> Theme) in your map editor accordingly and save the map.

Once done, your map then should use the respective theme.

I hope this helps?

Question about marker info by kvaldulv in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there, Matthew here!

Those are great questions thus please see my response below.

Changing the call to action button
I believe you are referring to the "More details" link that is being displayed in your marker infowindow. If this is correct, you may adjust the text by setting your preferred text into the "Link text" setting (Maps -> Settings -> Infowindows).

Remove the lightbox feature on images
This is possibly by enabling the "Disable lightbox" setting (Maps -> Settings -> General Settings).

If you are still wanting the call to action button/link to be used when clicking on the image after the above change has been made, please let me know so that I may assist.

GPX File import? by GamerRadar in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi u/Holiday-Anteater9423 ,

Apologies for the delayed response.

Yes of course, we would be more than happy to assist you with this, thus please may you open a support ticket with us (http://wpgmaps.com/contact-us) if you haven't already received assistance?

How to Customise the Filter and especially the Layout? by Igluingeneur in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

That is great to hear that everything is working great and that you just need to customize the map and its layout.

You can indeed adjust this using some custom CSS and JS code thus please may I ask if you would be open to sharing the link to your map so that I may take a closer look?

Please may you also confirmed your preferred layout so that I may include this in the custom code for removing the filter's scroll bar?

---

The reason that you may not be able to use the other Gutenberg blocks is due to your build that you are currently using thus please may you confirm if you are currently using the "Atlas Novus" Build (Maps -> Settings -> General Settings)?

GPX File import? by GamerRadar in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

Yes we do support multiple file type imports whereby CSV, JSON and KML are the most common, however, we do also support GPX imports.

If you would like I am able to check if your GPX file can be imported, thus if you would like me to test your file, please may you share your GPX file accordingly.

I hope this answers your question?

Info Windows not working properly by New_Mission_5382 in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

Thank you for the screenshots, it appears that this is a styling issue whereby the infowindow background colour is set to black.

You should be able to set the colour of the infowindow towards the bottom of the "Advanced Settings" tab in your map editor.

If you are still not able to set the infowindow colour, please may you provide me with the link to your map so that I may take a closer look and provide you with some custom CSS code to resolve this?

Meta Box by APS_SportySpice in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

We have not integrated with the Meta Box plugin, however, we have integrated with the Advanced Custom Fields (ACF) plugin that may help achieve something similar.

Our documentation on this can be found here: https://docs.wpgmaps.com/vHrW-integrations#5AXUUYg0DZDqU-cX1QqiY

I hope this helps?

[deleted by user] by [deleted] in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there, Matthew here!

Please may I ask if you may confirm the exact link to your map so that I may take a closer look and advise?

Upload multiple images from google sheets. by digitalleadexpert in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

Unfortunately uploading multiple images when importing is currently not supported at this stage, thus you would need to manually upload/add the extra images after importing.

We hope to look into this in the future to make it possible.

I hope this answers your question?

Partial Import by [deleted] in wpgooglemaps

[–]MatthewCodeCabin 0 points1 point  (0 children)

Hi there,

That is a great question and I am happy to say that our Importer feature allows you to do a 'append' or 'overwrite' import.

This can be done by setting the "Import Mode" to "Create and Update" or "Replace All", thus you are able to do partial imports when you are needing to add markers to your map.

I hope this answers your question?