510 comments found.
Hi! Can your plugin display the 360 images from a different domain link? We’re going to have a lot of images (around 400) and I’d rather host them on my external storage.
Never mind I can
Great plugin boss!
Hi, can you tell me the process of creating these scenes? Thanks
Hello. Use the support (https://codecanyon.net/user/avirtum) form and I will help you
Hi, I’d like to learn more about the monetization model before placing a purchase. Is there a SaaS model in place where users may subscribe to my site to use this tool?
Also, is the Live preview working? because when I try to see the live preview, I only get a blank white page
Hello. It should, if can share a link I can test. Also, please you the support form instead comments.
Is this a multi user product that I can offer customers on my website?
The standard license assumes that the plugin must be installed on a single site. The way to use it is up to a customer, whether it is single-user mode or multi-user mode, when everyone can create their own tours and publish them.
Hello, first of all I would like to congratulate you for your epic work! This plugin is a real gem! I would like to add a small copyright with a link at the bottom of the scene (maybe next to the controls). Can you please send me an example on how to achieve that? Many thanks!
Hello. You can try this code – https://ibb.co/pb88Zqd
const plugin = this;
const $ = jQuery;
const $label = $('<a>').attr({'href':'https://google.com'}).text('google.com').css({
'display': 'block',
'position': 'absolute',
'left': '10px',
'top': '10px',
'padding': '5px 10px',
'background': '#000',
'color': '#fff',
'text-decoration': 'none',
'font-size': '12px'
});
plugin.$container.append($label);
</a>
Presale Question: Could you please explain in details what kind of images/photos to be uploaded in order to make the virtual tour? 2- Does it require a specific camera? 3- is it 360 degree video camera? 4- can we use mobile phone? 5- and if yes which mode do we use? 6- is it only one image to be used or more? sorry but still I cannot understand how your plugin works
1) The photo should have the Equirectangolar format (360×180) 2) Yes, this type of photo makes a special 360 cameras 3) Yes 4-5) You can, there are special programs that allow you to merge several photos around you into a one 360 scene. 6) One image per a scene, a virtual tour has several scenes mostly
Does this plugin take panorama photos from iphone ?
The image should be equirectangular format
Hello. I Have problem. When I update plug in iPanorama, everything disappears and I have to restore it. Where could be the error? https://www.studiovisum.eu
Try to restore the plugin first. As I can see the shortcodes are not active.
Hello. When I update the plugin, only the Lite version appears and I have to restore the Pro version via FTP. If there was an option to enter just the license number, it would be O.K. I don’t know about this option. If there is , my apologies. The Html code doesn’t work at all, it doesn’t load at all. That is the reality. It’s a shame that this is happening. Otherwise I am very satisfied. Vladimir
Hello, So I finally figured it out. I’m glad it’s the way I imagine it. Learning, learning, learning. Just one more thing to conclude. I’m definitely not going to update the plugin and i Panorama anymore, because it always throws me into the Lite version. Vladimir
Hi Max, great job, I like this plug-in. Is there a chance to embed files from an external source e.g. Dropbox? I couldn’t make this work. Thx Alex
We can use images for scenes that are hosted on another services. But there is a condition, this service must allow to get this image via ajax request. Sometimes such services block it. For dropbox try to use this kind of link to get the raw image – https://www.dropbox.com/s/8v4yflq2hsvj7l5/ipanorama-preview.png?raw=1, see the last parameter.
Hi, i am test the plugin, but i find the rotation when mouse drag stopped very frustating, is some way to total stop the rotation when the mouse drag is stopped? i am trying with
var instance = this, $ = jQuery;
instance.$container.on(“ipanorama:scene-camera-end”, function(e, data) { });
but i dont find the correct method, thanks
Other thing, the markers not load until i move the camera and i make a 360 rotation
Are you talking about the movement that continues after you release the mouse?
Hi, yes exactly that
Hi, I am using iPanorama for a while now and it works like a charm. However, I have this issue with the Pro version : I have to go through the FTP to upgrade from lite to pro. Is there a way to make this upgrade more friendly. Thanks for your answer. Best regards.
What do you mean by that? I misunderstood you a little. You should copy the package with pro version to your new instance.
I mean that there is no way on Wordpress dashboard to switch from lite to pro version. I have to go through Ftp to make the upgrade by installing ipanorama pro on the plugins directory and delete the lite version. Maybe it would be better if there was a way to do this from the Wordpress dashboard ?...
I see, yes you’re right, only this way at the moment. I will think about it.
Hi, Before placing order I want to know can I show all views as an icon above arrows button/icons like sphere, cylider etc, what value is required to show earth like view, does all scenes loads simultanously, and can we secure the link of pano so no one can download the pano, cause there is no watermark option available I guess
1. There is no protect for pano images, a site user can download it via the browser dev tools 2. Each scene loads one by one if it’s active, not at all at once 3. Do not understand about pano views?
3. we can set pano type can we have all these type as controls like in a row above controls.
Do you mean change the scene type on the fly?
yes, fly mean watching the current scene right?,
The plugin doesn’t support this feature, the scene type is static and we can change it in the builder only.
as there may be large files is it possible that we can show a message while it completly load the pano image e.g please wait until image loads as it need high internet speed and larger screen gives a grreatview, and hides once loads.
As I am using the free versionn can you please let me know if I want to enable zoom on mobile device and disable on desktop using custom js or is there any option within the system available for responsive settings
const plugin = this;
const $ = jQuery;
const $win = $(window);
$win.on('resize', () => {
const flag = $win.width() < 1024;
// disable zoom for unloaded scenes
for(scene of plugin.config.scenes) {
scene.noZoom = flag;
}
// disable zoom for loaded scene
for(scene of plugin.scenes) {
scene.control.noZoom = flag;
}
});
1. Please advice the js that show some kind of text animate or use gif while loading, I hope there should be some function pre-built in future, yet I only found this plugin useful which I will for sure get soon for my upcomingn project.
How I can open shortcode in elementor popup please advice
1. If the popup supports shortcodes you can use it or I miss something?
2. To show a custom loading bar you can use this code To put into the custom css section
.myloading {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: none;
justify-content: center;
align-items: center;
pointer-events: none;
}
.myloading.active {
display: flex;
}
To put into the js custom section
const plugin = this;
const $ = jQuery;
const $loading = $('<div>').addClass('myloading').text('loading');
plugin.$container.append($loading);
plugin.$container.on('ipanorama:scene-progress', (e, data) => {
const flag = data.progress.loaded == data.progress.total;
$loading.toggleClass('active', !flag);
});
</div>
1. I am using Elementor Dynamic Tags with ACF as value in ACF mentioned as an shortcode, but it does not load that, Elementor Popup nor JetEngine Popup load pano if defined in ACF as and load as shortcode by load it as dynamic value.
This is a difficult question for me, without a visual how you’re trying to do that or test I can’t answer.
I sent you an email, please check SPAM folder too.
I got it and will report back soon
Hi, please reply back on the email once you able too, thanks.
I’ve answered several hours ago.
Hi, I don’t understand how to make these kind of tours. If we give this option to our users can they create their scene easily? Or it needs special equipment or special apps or any technical specialty? TNX
Hello. The main thing is the image for the scene, it must be a format equirectangular.
Hi, i have sent email to support with ossuei have. Did you get it ?
What kind of problem do you have? I answer on all emails mostly.
The footer sticks to the menu when loading. I jave sent you the website link with login credentials so you can check it out.
I answered to you and asked “Can you mark on the image what is wrong?”
Why is the image quality in chrome for mobile (samsung or other) poor? but on pc it is good! Is there a solution to solve this?
Can you share a link to your web page to test?
I just sent you an email at : avirtum[@]gmail.com
Not showing on mobile. After the image load it goes black or white on some phones
Can you send me your scene images from the support form?
where is the link to the support forum?
It loads and works well on desktop then doesn’t work on mobile. I downloaded and use the latest version. It was working perfectly before in earlier version. Where can I download an earlier version in the meanwhile since this is time sensitive?
Use the form inside my profile here
Hi Avirtum. I bought a license for the iPanorama 360 wordpress plugin last year and was able to build multiple items in the same website. Everything worked well. Great product. Now I am trying to add stuff to previously built items and create new items but it’s not letting me. Is there a term limit for the license? Do I need to renew it?
Hello. No, you do not need to renew. This problem is because you updated the plugin automatic, as a result it was downloaded from wordpress.org where the free version is. You should download the new version from codecanyon and install it manually.
Thank you. That worked. Cheers.
Hi may i know can this plugin use to generate the iframe embeded code then put in some property page?
Hello. The plugin supports this feature. Inside the builder, the shortcode tab, the embed code line. The code will be like this ”<iframe width=”560” height=”315” src=”http://dev.loc/wp/ipanorama/virtualtour/3” frameborder=”0” allowfullscreen></iframe>”. You can test it in the free version too.
Is there a 1.6.31 available for download???
Yes, it’s. I’ve uploaded it recently.
does this work for directory sites where subscribers can upload images to their listings via frontend of my directory website?
I do not know, anyway the user role should have access to the wp admin backend to create a tour, also you can test the free version.
not a good idea allowing a subscriber access the the backend, they should only have access to the frontend
I such way it’s impossible, the plugin doesn’t support the frontend upload
oh well, looks like it needs improvement