100plugins
Forum Replies Created
-
Forum: Plugins
In reply to: [Open User Map] translate placeholder text in Search for Address (Geosearch)Hello @annevoelkel,
The label is called “Search for address” and should be translatable. However – you can also just customize it under Open User Map > Settings > Map Settings > Search for Address > Custom Label.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] ShortcodeHi @bing4,
Sure.
- You can’t use shortcodes in the Description field of a location. However – it is possible to customize the output of a location completely. Take a look at this tutorial.
- Yandex Maps is not available. The currently available map style are provided by Esri, OSM, CartoDB and Mapbox. You can adjust this in the settings.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] How to disable Zoom message?@marcoh2021 Yes, that is correct.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Let User Edit Location Marker InfoWith regards to the request for “Flag/Report a location” there is a quick solution on how to do this.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Let User Edit Location Marker InfoHi @wordmax and @ianstrack,
I agree that this feature is a great idea and users will benefit from it. That is why it already has a high priority in my requests backlog. So this will be one of the very next features available.
@ianstrack I’ve resolved the support request because I provided an answer to your question. This is the way the support forum is supposed to be used. I will keep you and @wordmax updated on the progress of the feature.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Let User Edit Location Marker InfoHi @ianstrack,
Yes, that is possible. As I linked in the other article (here is the link again) you need to ensure your registered users have special capabilities. This can be done with a user role management plugin.
In any case the user needs to be registered. And the editing happens within the WordPress admin interface. In a future version of OUM I’m planning to provide a way to edit locations directly from within the map.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Map Does not Auto UpdateHi @ianstrack,
This sounds like a caching issue to me. Please try to disable any WordPress caching plugin and see if the problem persists.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Translating locationsHi @striboss,
Sorry for the delay. With the next update, Locations and Marker Categories will automatically be translatable with Polylang.
In the meantime, just add this code to the functions.php of your theme:
// enables language and translation management for 'oum-location'
add_filter( 'pll_get_post_types', 'add_cpt_to_pll', 10, 2 );
function add_cpt_to_pll( $post_types, $is_settings ) {
$post_types['oum-location'] = 'oum-location';
return $post_types;
}
// enables language and translation management for Marker Categories
add_filter( 'pll_get_taxonomies', 'add_tax_to_pll', 10, 2 );
function add_tax_to_pll( $taxonomies, $is_settings ) {
$taxonomies['oum-type'] = 'oum-type';
return $taxonomies;
}Best regards,
DanielForum: Plugins
In reply to: [Open User Map] How to disable Zoom message?Forum: Plugins
In reply to: [Open User Map] Map isn’t displayedOkay, than I’m pretty sure this element causes a Javascript error which breaks the site (and the loading of the map). You need to get rid of this Javascript error. There is not much I can do from my plugin’s side.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Translating locationsHi @striboss,
Please take a look at this article. It describes how to make custom post types and taxonomies translatable with Polylang. Locations are a Custom Post Type and Marker Categories are a Taxonomy.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Popup not showing (except for close x)Hi @intercommsa,
Unfortunately, your theme is really messing things up here. You can try to remove these style settings from your theme:
[class*=style-], [class*=local-style-], .h-global-transition, .h-global-transition-all, .h-global-transition-all * {
transition-duration: 0.5s;
}and this one:
.colibri-post-content * {
text-align: initial;
font-family: inherit;
max-width: 100%;
}Alternatively you can try to override them with custom css:
.open-user-map .box-wrap .map-wrap .leaflet-map .leaflet-marker-icon:not(.marker-cluster) {
transition: all 0.1s ease;
}
.open-user-map .box-wrap .map-wrap .leaflet-map .leaflet-popup {
max-width: none;
}Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Map isn’t displayedHi @vahidmali,
I don’t think this is related to the VPN connection. I don’t use VPN and experience the same loading issue.
Your page loads for a very long time and this seems to block the loading of the map tiles. You need to investigate what is causing the loading issue. Try to disable other plugins one by one and see if the issue remains. You can use this plugin to safely disable plugins without affecting the websites for your visitors.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] API to create a markerHi @ivitae,
here are some important infos if you want to create a script on your own that directly interacts with the WordPress database:
A location consists of these database entries:
- wp_posts table: An entry of post_type oum-location
- wp_postmeta table:
- An entry with meta_key _oum_location_key containing a serialized object with details on the location
- An entry with meta_key _oum_location_image
- An entry with meta_key _oum_location_audio
I would recommend to inspect your database for an existing location to understand how location data is stored. After that it should be possible to write a custom script that created, updates or deletes locations.
Hope this helps,
DanielForum: Plugins
In reply to: [Open User Map] Postcode search result scrolled autoI’m closing this due to inactivity. Please reach out to me again if you need further support.
Best regards,
Daniel