Notifications
Clear all

Script [Solved] WpForo compatibility with map plugin based on Leaflet.js

5 Posts
2 Users
1 Likes
402 Views
Posts: 29
Topic starter
(@moderworks)
Eminent Member
Joined: 4 years ago

Hello,

Please help me solve the problem with adding maps to the forum topic. Conducted experiments with several plugins, wpforo cuts json. Example, wordpress.org/plugins/waymark plugin

The map is added using a shortcode.

Code in the database generated by the plugin:

{"type":"FeatureCollection","features":[{"geometry":{"type":"Point","coordinates":[-68.74923,51.38436]},"type":"Feature","properties":{"type":"photo"}}]}

This is how the code is displayed on WordPress pages:

waymark_viewer_32b6d7.load_json({"type":"FeatureCollection","features":[{"geometry":{"type":"Point","coordinates":[-68.74923,51.38436]},"type":"Feature","properties":{"type":"photo"}}]});

Deserialized wpforo:

waymark_viewer_32b6d7.load_json({"type"[-68.74923,51.38436]},"type""photo"}}]});

Is it possible to solve this problem without compromising the security of the forum, any recommendations?

wpForo Version
1.9.9.1
WordPress Version
5.8.2
7.4.25
Topic Tags
4 Replies
Posts: 29
Topic starter
(@moderworks)
Eminent Member
Joined: 4 years ago

Screenshot

Reply
Posts: 29
Topic starter
(@moderworks)
Eminent Member
Joined: 4 years ago

Screenshot

Reply
Posts: 29
Topic starter
(@moderworks)
Eminent Member
Joined: 4 years ago

The question was solved with the help of:

if( WPF()->current_object['topicid'] == ) {
echo do_shortcode( '[]' );
};

wpforo is good)

Reply
1 Reply
Chris
Admin
(@chris)
Joined: 2 years ago

Support Team
Posts: 3485

Hi @moderworks,

Thank you for sharing with us your results, I'm glad to know that everything worked for you

Reply