100plugins
Forum Replies Created
-
Forum: Plugins
In reply to: [Open User Map] Change language mapYes, country & city names are mostly English except for the Open Street Map styles (#2 and #3) which try to adapt to your actual geo location. It works for Germany.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Is There An Official Github Repo For The Plugin?Hi @morehawes,
I don’t have a public repo but of course I’m always open to change requests.
The demo indeed shows custom icons which is a PRO feature. In the free version you can choose from a couple of coloured icons (or use CSS).
Best regards,
DanielHi @vincos,
Thanks for reaching out. This happens due to a failed block parsing by the Slim SEO plugin.
Solution
Please add this PHP code to the functions.php of your theme:// Prevent shortcode parsing by Slim SEO plugin add_filter( 'slim_seo_skipped_shortcodes', function( $shortcodes ) { $shortcodes[] = 'open-user-map'; $shortcodes[] = 'open-user-map-location'; $shortcodes[] = 'open-user-map-gallery'; $shortcodes[] = 'open-user-map-list'; return $shortcodes; } ); // Prevent block parsing by Slim SEO plugin add_filter( 'slim_seo_skipped_blocks', function( $blocks ) { $blocks[] = 'open-user-map/map'; return $blocks; } );This will be included with the next plugin release (1.3.37) as well.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] don’t show mapHi @alexsh86,
I always try to answer support questions as soon as possible (this is a side project of mine). But it seems like you’ve already formed your opinion.
Daniel
Forum: Plugins
In reply to: [Open User Map] How to use different color markers according to regionIf you want to have different marker icons you’ll need to use “Marker Categories”. You can enable this feature under Open User Map > Settings > Form Settings > Filterable Marker Categories.
After activating the categories will become available. Each category can have it’s own type of marker icon.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Roadmap for new features…Hi @wordmax,
This is still on my list. Actually it leads the list of upcoming features – so I will try to make this available soon.
I’m sorry that I don’t offer a public roadmap or something similar at the moment. This is still a side project of mine and I need a bit of flexibility when it comes to feature requests.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Portrait imagesHi @imjeffp,
I can see you’ve already managed to do this by yourself. For everyone else who’s interested in how to do that, here is the CSS code:
.open-user-map .box-wrap .map-wrap .leaflet-map .leaflet-popup-content-wrapper .leaflet-popup-content .oum_location_image img { object-position: center center !important; }Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Wysiwyg editor has disappearedHi @hjartstrom,
This is on purpose. The WYSIWYG editor caused some trouble as it it is not really supported by WordPress at this position in code. And in the frontend form where your visitors add locations to the map there hasn’t been a rich text editor before.
So I had to replace the WYSIWYG editor with a simpler version with the 1.3.35 update.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Filters on Custom FieldsHi @jackmrg,
Unfortunately this is not a feature yet. You can only filter by marker categories. I’m planning to extend this but it will take some time.
Best reagards,
DanielForum: Plugins
In reply to: [Open User Map] initial open bubbleHi @der-bank-blog,
Not yet. But it’s still on the list and I will let you know when it’s available.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Custom CSS or JS for the search boxUnfortunately this is not possible and out of scope of Open User Map currently.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Open User Map backend access for Editor user roleHi @acrspf,
Please see this FAQ post. Basically you’ll need to set special permissions to your users role to enable this.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] No Image upload possibleInteresting. I will test this as well and see if there’s something that can be done from my side to prevent this incompatibility.
Thanks @mike666
Forum: Plugins
In reply to: [Open User Map] real time locationHi @tunecreators,
Sorry for the late reply! Unfortunately live tracking or routing is not part of Open User Map. But, you can enable that the subtitle field is linked to Google’s Routing. So your visitors click on the linked subtitle and will be redirected to Google Route.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Custom CSS or JS for the search boxHi @sbservices,
Please see this article where I’ve described how to manipulate the searchbar with CSS.
Best regards,
Daniel