Avirtum
Forum Replies Created
-
Forum: Plugins
In reply to: [Vision - Interactive Image Map Builder] Not able to create layersHello. What version of PHP do you have? Also if it is possible make a screenshot of the issue, plus you can look at Query Monitor (https://www.ads-software.com/plugins/query-monitor/), there may also be messages about the problem with the plugin. Anyway, thanks for the report.
Forum: Plugins
In reply to: [Vision - Interactive Image Map Builder] Salvataggio documentiHello.
I don’t really understand the problem you want to solve. Namely about documents. If documents are simple images and we want to show them by clicking on a certain area, then everything is simple. We create a map, then select our main image (A), then create areas (now the plugin supports only rectangles, a plan to implement polygons soon) and bind to this area popover, which in turn contains the image (B,C,D, etc) that we want to show above the main image (A).
Anyway, you can watch this short video tutorial on how plguin works – https://www.youtube.com/watch?v=NoQCkmznF4E
Hello. Try these images – https://avirtum.com/misc/6-textures/. They used to create a cube from 6 textures (1024×1024).
I’m talking about sizes 6144×1024 – https://avirtum.com/misc/cubemap.jpg. Yes, WordPress adds this postfix, but you can delete it and get the URL to the original image.
Remove “-scaled” postfix. WordPress makes different sizes of uploaded images, try to use original.
Hello. I think you have the wrong format, the image should be like this – https://avirtum.com/misc/cubemap.jpg
I can’t see the screenshot. Anyway, without access to admin side I can’t say more. Can you tell me which version this issue started with? Like do a downgrade so I can just compare the changes I made.
I’ve tested it on my side. I created a new WP instance and install the plugin lite version, it works as expected. Also I checked the code, it shows this error only if you have several items in the table “wp_vision”.
Hello. Try to check the MySQL database with phpMyAdmin as example. You need to check the table “wp_vision” and how many rows this table has. Anyway I will test this issue on my side, but I need time.
Forum: Plugins
In reply to: [Vision - Interactive Image Map Builder] Complex shapesThe current version doesn’t support this, but I have plan to do so in next releases.
Forum: Plugins
In reply to: [iPanorama 360 - Advanced Virtual Tour Builder] Image has infinitive scrollI see, I will try to add this option to the engine and UI as soon as possible
Forum: Plugins
In reply to: [iPanorama 360 - Advanced Virtual Tour Builder] Image has infinitive scrollTry this code inside the custom js section. If it will be ok for your case I can add this as a new scene option in next release
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();
});Forum: Reviews
In reply to: [iPanorama 360 - Advanced Virtual Tour Builder] Very powerful pluginHi?@thewebforce, I’m glad to see your satisfaction with my product and appreciate your feedback.
Kind regards,
MaxForum: Plugins
In reply to: [Vision - Interactive Image Map Builder] On Hover Image ChangeHello. Try this code, just paste it to the custom css section
.vision-map .vision-tooltip .vision-form:hover {
background: #ff0000;
cursor:pointer;
}Forum: Plugins
In reply to: [CatFolders - WP Media Folders] Cannot create foldersTry to check the browser console log, maybe it contains warnings or errors. Also check the MySQL tables “wp_catfolders” and “wp_catfolders_posts”. Are they exists? Do they have data? It looks like the data just isn’t being written to MySQL tables for some reason, so after the page refresh you don’t see anything.