Avirtum
Forum Replies Created
-
Forum: Plugins
In reply to: [Vision - Interactive Image Map Builder] Shortcode not workingForum: Plugins
In reply to: [Vision - Interactive Image Map Builder] Shortcode not working@velulix You can download the previous version from https://wordpress.org/plugins/vision/advanced/.
Forum: Plugins
In reply to: [Vision - Interactive Image Map Builder] Shortcode not workingI have tested the shortcode functionality (see screenshots below). Everything is working as expected; however, there may be a conflict with other plugins or your theme. It’s hard to say without examining the details.
Screenshots:
https://ibb.co/spyx7rPK
https://ibb.co/ccGzjWGc
Forum: Plugins
In reply to: [Vision - Interactive Image Map Builder] Shortcode not workingOk, thx for the report. I will check it and report back.
Forum: Reviews
In reply to: [Vision - Interactive Image Map Builder] Superb SupportThank you for your kind words!
Forum: Plugins
In reply to: [Vision - Interactive Image Map Builder] Export/Import to other siteHello,
You can perform export and import operations. Open an item and look at the top-right corner, there is a hamburger menu. Hover over it, and you will see the options “Save config as” and “Load config as”.
About database tables. All data is stored in the “wp_vision” table. However, there may be an issue with image URLs: they can be saved as either absolute or relative paths, depending on how they were originally set. As a result, you may need to update them manually after importing maybe.
I’ve tested with FF 141.0.2, and dragging work as expected. @simongarrett was right the issue go away.
Thank you for reporting this. I’ll investigate the issue after this weekend and do my best to resolve it.
Forum: Plugins
In reply to: [iPanorama 360 - Advanced Virtual Tour Builder] Limit on number of markers?Hello. If we are talking about the free version, there is only one limitation: you can create only one virtual tour with unlimited scenes and markers. All other features are the same as in the Pro version.
Forum: Plugins
In reply to: [iPanorama 360 - Advanced Virtual Tour Builder] Guidelines for adding markersHello. Sorry for the late answer. About the marker position insted of edit it in the view, you can use the input fields: yaw and pitch.
Okay, that’s because no one wanted or asked for this feature but you :).
Hello. You can try this code inside the custom js section.
const plugin = this;
const $ = jQuery;
let activeScene = null;
let containerWidth = plugin.$container.width();
const lockMoving = (event) => {
let pos = activeScene.control.getPosition();
let zoom = activeScene.control.getZoom();
const zoomThreshhold = 2;
let fix = false;
if(zoom > zoomThreshhold) { zoom = zoomThreshhold; fix = true; }
if(fix) {
activeScene.control.removeEventListener('change', lockMoving);
activeScene.control.setZoom(zoom);
activeScene.control.addEventListener('change', lockMoving);
}
const posThreshhold = (activeScene.control.imageSize.width * zoom)/2 - containerWidth/2;
fix = false;
if(pos.x < -posThreshhold) { pos.x = -posThreshhold; fix = true; }
else if(pos.x > posThreshhold) { pos.x = posThreshhold; fix = true; }
if(fix) {
activeScene.control.removeEventListener('change', lockMoving);
activeScene.control.setPosition(pos.x, pos.y);
activeScene.control.addEventListener('change', lockMoving);
}
}
plugin.$container.on('ipanorama:scene-before-load', (e, data) => {
if(activeScene && activeScene.cfg.type == 'flat') {
activeScene.control.removeEventListener('change', lockMoving);
}
activeScene = data.scene;
if(activeScene.cfg.type == 'flat') {
activeScene.control.addEventListener('change', lockMoving);
}
});
$(window).on('resize', () => {
containerWidth = plugin.$container.width();
});Thank you for your feedback! I truly appreciate you taking the time to share your experience. I’m sorry to hear that the plugin’s subfolder functionality didn’t meet your expectations based on the description. Your input helps us improve, and I’ll review the feature listing to ensure it’s clearer in the future.
As a solo developer, I’m doing my best to maintain and improve this plugin—much of it offered for free—but sometimes I simply can’t cover everything at once. If you’d like further assistance or have suggestions, feel free to reach out to support—I’d be glad to help where I can!
All the best, Max Lawrence (Avirtum)Forum: Plugins
In reply to: [Vision - Interactive Image Map Builder] annoying wrapping p-tagsNice
Forum: Plugins
In reply to: [Vision - Interactive Image Map Builder] annoying wrapping p-tagsTry to test again v.1.9.9. I modified some parts of output and with wpautop ON it shows correct markup on my side.