100plugins
Forum Replies Created
-
Forum: Plugins
In reply to: [Open User Map] Default Values for Social Media FieldsYes, this is still planned. However, due to the big amount of cool feature requests – I have to prioritize some other requests first.
I’ll let you know, when it’s ready.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Create an hyperlink with “lat” & “lng” varHi @storm6969,
For now this doesn’t work because the Shortcode always returns the Lat & Lng values wrapped in div containers.
If you need the raw values, you’ll have to use the PHP function to get the values. Please see Settings > Open User Map > Help & Getting Started > Shortcodes. There is also a description of the function.
In the future I will probably extend the shortcode with a parameter to return raw values as well.
Best Regards,
DanielForum: Plugins
In reply to: [Open User Map] Filterable marker categoriesHello @hjartstrom,
Thanks for reaching out. This is not possible, as it would not be compatible with the fact that every category has it’s specific marker icon. (a location can not have multiple marker icons).
However, you can just use a custom field for this. Choose type “Select” and the user can select multiple options. This is a PRO feature.
Best Regards,
DanielHi @sumitsanadhya and @satish9807,
This problem affected me and many others as well. So far there has been no solution from the plugin developer.
I could solve it by bypassing a function in the responsive-menu/v4.0.0/inc/classes/class-theme-manager.php (around Line 435):
old:if ( file_exists( $config_file ) ) {new:
if ( file_exists( $config_file ) && 1==2) {But that’s just a quick and dirty hack. We need a proper solution from @sumitsanadhya.
I’m using plugin version 4.1.10.
Best regards,
DanielForum: Reviews
In reply to: [Open User Map] Best plugin for interactive mapsThanks @ektrakt!
Best Regards,
DanielForum: Plugins
In reply to: [Open User Map] Making email address requiredSure, both fields should be mandatory.
Forum: Plugins
In reply to: [Open User Map] Making email address requiredHi @sceotan,
I’m assuming you mean the email field that get’s visible after the user selects “notify me on publish”, right? This is indeed not a required field yet. I will fix this with the next update.
However, making fields “required” is possible for custom fields.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] GalleryThis can be done with css:
.open-user-map-image-gallery .oum-gallery-item img { width: 70%; height: 70%; }Best Regards,
Daniel@tompoezie True, this is still an issue. Did you find a solution? I’m afraid this plugin is not maintenanced anymore.
Forum: Plugins
In reply to: [Open User Map] “read more” on location description (map) : tradHey @storm6969,
Ah, now I got it! 😀 Actually it is already possible to translate this to French. If you are using a translation plugin it should list “Read more” and other english terms as strings ready for translation.
Best regards,
DanielForum: Reviews
In reply to: [Open User Map] Excellent plugin!Thanks a lot!
Forum: Plugins
In reply to: [Open User Map] email variableHi @ektrakt,
This happens because because the shortcode returns the email wrapped in a div box. So the only way would be to use the PHP function inside a real php template of your single page:
<?php echo oum_get_location_value( 'email', $post_id ); ?>Or you just stick to showing the email address (but not linked with a mailto).
Best Regards,
DanielForum: Plugins
In reply to: [Open User Map] “read more” on location description (map) : tradHi @storm6969,
I’m not exactly sure what you are asking for…
The “read more” link only appears if you’ve enabled the “Public pages for locations (Single pages)” feature. So that the button links to the single page of the location. It is not meant to show more of the description text.
Or do you want me to shorten the description text automatically? I can’t do this, because there are other websites already relying on the full length description text. If you want to have texts with a limited character count please use a custom field. There you can define the max length.
Another possible solution would be to use the new oum_location_bubble_content Hook to fully customize the output for each location bubble. Please see details under Settings > Open User Map > Help & Getting started > Hooks. You will need a little bit of programming skills to do this, but there is an example.
Best regards,
Daniel- This reply was modified 3 years, 4 months ago by 100plugins.
Forum: Plugins
In reply to: [Open User Map] Get current map pos and zoom when add locationHi @storm6969,
Yes, I like that! Will be available with a next release. I’ll keep you posted.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Count location per userHi @storm6969,
That is a nice idea – although I think there are not so many use cases. But I will consider this as an option for a future release.
PS: This can already be done with PHP and some programming skills. But that’s out of scope for my support.Best Regards,
Daniel