Daniel
Forum Replies Created
-
Forum: Plugins
In reply to: [Open User Map] Feature RequestsHi @mictorhugo and @earl_d,
Please respect that this forum is for support requests. You can submit feature requests on the website and even request a custom development over there.
- Favouriting locations – That’s a great idea, but it’s quite specific and likely beyond the core scope of the plugin for most users. This might be a good fit for a custom development service if you need it tailored to your site.
- Marking locations as “Visited” – Similar to the favouriting feature, this would be quite a niche addition. If you’re interested, custom development could be an option.
- Flagging or reporting locations – This is already possible! You can find details on how to enable this feature here.
- Private locations – This feature has been available since version 1.4.3. You can use the new
"user"
shortcode attribute to restrict locations to specific users. Let me know if you need guidance on setting it up!
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Location slugHi @earl_d,
You can change?the slug from oum-location to something-else with this PHP (add it to your theme’s functions.php or use a Code Snippet plugin):
function my_oum_location_custom_slug( $args, $post_type ) {
if ( 'oum-location' === $post_type ) {
// Change 'new-location-slug' to whatever slug you want
$args['rewrite']['slug'] = 'new-location-slug';
}
return $args;
}
add_filter( 'register_post_type_args', 'my_oum_location_custom_slug', 10, 2 );After adding the above code, go to?Settings → Permalinks?in the WordPress admin and simply click “Save Changes” to flush the rewrite rules. You don’t need to change anything else, just saving the page once will flush the permalinks.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] List of user submissionHi @earl_d,
Do you mean in the WordPress dashboard (“All locations”)? If you want to see details of the submission click on the title of the location.
Please clarify if you were looking for something else.
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Disable deletion of markerForum: Plugins
In reply to: [Open User Map] Anyone can delete marker?Good to hear ??
Forum: Plugins
In reply to: [Open User Map] Anyone can delete marker?Hi @icepick8,
Only registered users are able to edit or delete their markers. When signed out you should not see the “Edit location” button inside the location bubble.
Can you confirm?
Best regards,
DanielForum: Plugins
In reply to: [Open User Map] Pro “Link” OptionHi @grumpywp,
In the upcoming update (1.4.3), I will remove the behavior of opening custom field links in a new tab.
Best regards,
Daniel