Max
Forum Replies Created
-
Forum: Reviews
In reply to: [PicPoints - Interactive SVG Image Maps, Floor Plans Builder] Great PluginThank you for the feedback! I am always looking for ways to improve the plugin, so if you have any feature requests or ideas on what else could be added, feel free to share them anytime!
Thank you so much for the review! I’m thrilled to hear you like the plugin. If you ever have any suggestions or feedback for future updates, please feel free to share, I’m always open to them!
- This reply was modified 2 weeks, 1 day ago by Max.
Hello.
The full documentation is not ready yet. I am working on it and hope it will be finished next week.
Anyway, I created a YouTube playlist with some tutorials: YouTube Playlist
And some articles: PicPoints ArticlesRegarding the shortcode, it currently supports 4 parameters now:
- id: the ID of the map (the map should have a “publish” state)
- width / height: any valid CSS value.
- class: CSS classes separated by spaces.
- sceneid: the ID of the scene you want to load (if you want to override the default scene defined in the config file).
$defaults = [
'id' => null,
'width' => '100%',
'height' => '400px',
'class' => '',
'sceneid' => ''
];If you have any suggestions or feedback, please let me know, I’m always open to them!
Forum: Plugins
In reply to: [Vision - Interactive Image Map with Hotspots Builder] Documentation for JS??Hello. I will show a sample.
1) Create a map with layers (img 1), add “Extra CSS class“, in my example it’s “my-class”
Img 1 2) Define CSS styles for this layer with extra class, to use it we need go to the custom css tab, enable switcher and type our own styles.
.my-class .vision-body {
background: #ff000050; // red with 50% opacity
}
3) Let’s write some js code. The plugin writes all markup directly into the page, so we can manipulate their elements easely. Go to the JS custom section and write this code (it changes layer background color after click)
jQuery(document).ready(function($) {
$('.my-class').on('click', function(e) {
const randomColor = '#' + Math.floor(Math.random()*16777215).toString(16) + '40';
$(this).find('.vision-body').css('background', randomColor);
});
});
// you can get access to the plugin core by using "this" pointer
// console.log(this);
4) The result

P.S.
I’d like to note that this plugin has limited functionality. I continue to support it, but solely in terms of fixing critical bugs and ensuring compatibility with new versions of WordPress.If you’re looking for something more, I suggest taking a closer look at PicPoints – it’s has an advanced Figma-like interface, renders the map via Shadow DOM (so styles won’t conflict with either the theme or the plugin), allows you to draw complex polygons, and much more. The core functionality has already been written by me and development is still ongoing.
If you have any suggestions or feature requests, I’m always open to them, feel free to reach out at any time.Forum: Reviews
In reply to: [GutenDraw - Visualize Ideas with Excalidraw] Great Plugin!Thank you so much for your kind words! Yes, I definitely plan to keep this plugin alive and updated. I’m hoping to release an update soon that adds image support, right now Excalidraw stores images in base64 format, which isn’t ideal. I want to switch to using plain URLs from the WordPress Media Library instead. If you have any other suggestions, I’m always ready to listen. Thanks again, and I will try my best.
Forum: Reviews
In reply to: [iPages - FlipBook Image & PDF Viewer] ExcellentThanks for your review. Glad you find the plugin simple and easy to use. 1500 flipbooks is impressive.
Best regards, Max.Forum: Reviews
In reply to: [Vision - Interactive Image Map with Hotspots Builder] Good supportThank you for your review and for sharing your experience!
If you have any further suggestions or run into any other needs, please don’t hesitate to reach out. Thanks again for your kind words!Best regards, Max.
This feature (import) is not available at the moment, but even if it becomes available, it won’t be possible to fully transfer everything because the formats are different.
I would just like to know what else would be good to implement.Try to use shapes for nadir. Create a shape and set parameters as shown in the image below.

P.S.
I’m currently developing another plugin for creating virtual tours – HappyVR. It is built on a new teck stack, it uses Marzipano for rendering, supports tiles in scenes, and does not conflict with themes because it is fully isolated using Shadow DOM. I would appreciate any feedback or suggestions.Forum: Plugins
In reply to: [iPages - FlipBook Image & PDF Viewer] Need to know Rotate buttonCan you provide a screenshot how it should look like?
Forum: Plugins
In reply to: [HappyVR - Virtual Tour Builder & 360 Panorama Viewer] FOV SuggestionI added options for view limits (FOV, Yaw, Pitch) in v.1.3.0
1) You can set common settings for all virtual tour scenes (image 01)
2) You can set custom settings for a specific scene (image 02)
Image 01. Common View Limits Settings 
Image 02. Specific View Limits Settings for a Scene Forum: Plugins
In reply to: [HappyVR - Virtual Tour Builder & 360 Panorama Viewer] Pop up optionI added the
widthproperty in v.1.2.5. It accepts any valid CSS value, such as100px,300px,100%, etc.
By default (if the value is not set):
Ifpopover type= “dialog”,width= “min(960px, calc(100% – 70px))”
Ifpopover type= “popover”,width= “320px”
Next feature will be options for FOV.
- This reply was modified 4 months, 3 weeks ago by Max.
Forum: Plugins
In reply to: [HappyVR - Virtual Tour Builder & 360 Panorama Viewer] Pop up optionAre you talking about this? If yes, maybe it will be good to add options for popover size, I will think about it too.


I’d like to implement something similar to Google Maps navigation basically (see image), a dedicated control specifically for scene navigation, let’s call it that. But I’ll be upfront, this isn’t a quick task. Right now, I’m currently working on the embed feature and FOV limitation.
Forum: Reviews
In reply to: [HappyVR - Virtual Tour Builder & 360 Panorama Viewer] Amazing Plugin!!Thank you so much for your kind words! I’m really glad to hear that.
Your feedback means a lot and keeps me motivated to keep improving the product. I’m always open to suggestions, if you have any ideas for new features or improvements, please don’t hesitate to share them. I’d love to hear what would make the plugin even more useful!
Thanks again!