Code

Discussion on iPanorama 360° - Virtual Tour Builder for WordPress

Discussion on iPanorama 360° - Virtual Tour Builder for WordPress

By
Cart 4,343 sales

Avirtum supports this item

Supported

This author's response time can be up to 10 business days.

510 comments found.

Hello, can I move the plugin to another domain?

Yes, you can.

Ok, thanks. And I guess there is no way to use just the code, I mean to use the functionality without installing the plugin? (Like webrotate360.com)

Mouse wheel zoom does not work on the “tinyplanet” view type on a computer. Pinch to zoom does work on the “tinyplanet” view type on mobile.

The mouse wheel zoom works on all other view types. Can this be fixed on the “tinyplanet” view type?

Any luck testing?

I’ve tested tinyplanet, it works on Windows 10 Chrome (mouse wheel), plus my Android (pinch)

Please see my demo site, https://dev.orbicular.media/tinyplanetlife/ . The mouse wheel zoom does not seem to work. If it does, it is painfully slow compared to the other views. Can the zoom speed be changed or controlled?

Hi, Yes please add minimap !

It seems like a good plugin but no minimap function is a no buy for me, its a pitty because even cheaper plugins here on envato supports it.

I do understand, but can you name just one?)

Hello, I am using IPanorama 360º, and I needed to update my Wordpress version for 6.0. Do you expect an update for WordPress 6.0 soon?

It supports 6.0 too

Hi, iPanorama 360° for WordPress have a marker categorization and a filter to show or not them? If yes, what should I do to do that? If not, can you implement this function? Is it possible to use 360° videos instead of images? Is it compatible with ACF or Toolset plugins to show custom fields values inside the popup and toolbox? Is it compatible with WPML to translate the content inside the 360° images?

Thank you for your reply. I have reply to you from email.

Hi, why markers is not showing in gyroscope mode. How we suppose to move between scenes if no markers??

In the cyro mode you can’t move from one scene to another. The plugin doesn’t support this.

So what is the purpose of having this option at all if not useful?

Someone needs only one scene.

Can 360 videos be used instead of just images?

Sorry, but no. The plugin doesn’t support 360 video.

Hi, I’m testing the plugin, but I can’t make the looks of your demos. Do you have a documentation for this? Thanks.

The demos on my site are from the jquery old version. But most of them can be done with the wordpress version too.

Hi, i have 2 question : 1- can we click on the keyboard to move the panorama to the right and left instead of using the mouse ? 2- can we decrease the rotation time when we pivot to the right and to the left ? Thank you

1. Yes, it’s possible. You should go to the scene config, open the actions tab and disable the option “No Keys”. 2. Are you talking about the autorotation speed? If yes, this config is also inside the actions tab.

Hi, do you have a documentation page, that details how the plugin can be extended. I love the plugin, but an interactive floor plan is a must-have for most of my clients. Thanks

There is no full documentation, there is help labels in the plugin builder and the free version to test.

Hi, presale question, there’s a way I can have a little map at the bottom of the container, and then click it and go to specific scene, like google maps. and also I can have the same tour for web view and vr headset view?

Hello. Sorry, but the plugin doesn’t support the floor plan.

HI there, I’m playing around with the light version for a client rn. This plugin is very impressive and well built!

I’m having two “issues” though.

For some reason I can’t find the css related to the background opacity of the popovers (lightbox & inbox). At the moment its a dark see through background and I would like to have opacity completely seethrough. Could you show me where that would be located?

And also, is it possible to define a min and max camera zoom area – So th camera could only zoom in between ?

Thanks for any hints ;)

Hello. Please, write me to my email avirtum[@]gmail.com or use the codecanyon support form. I will show an example of how to achieve this.

Just for everyone else considering a purchase of this plugin. After sending a mail I have received very helpful feedback within 30 minutes.

From this point of view this author is trustworthy and competent.

Thanks for the help !

when the user clicks on the preview image, is it possible to make it go to full screen automatically? thank you.

Yes, but we should write some js code inside the custom js section, because by default this feature is not implemented.

is it possible to lock the 360 rotation, only on the X axis?

You can use this code inside the js custom section
var instance = this,
$ = jQuery;

instance.$container.on("ipanorama:scene-after-load", function(e, data) {
    data.scene.control.minPolarAngle = 90 * Math.PI / 180;
    data.scene.control.maxPolarAngle = 90 * Math.PI / 180;
});

Hi, I have issue with your plugin. I use TransPress plugin which adds subdirectory for language (/ar). Your plugin shortcode will not show Markers when I switch language (/ar) while it show it normally when on the default website language(English). Please advice urgently how to solve this. Thank you

Working, you’re genius Now how to inject this code in the plugin to be the default for all new created ipanorama.

You can use a third-party js plugin to inject this code. Another way, I will fix it in a next version.

I tried third-party js plugin but it did not work. I guess I will have to wait the next update

Hello I want to buy the plugin. I want to know that can we add a soft music when virtual tour is running since it will give real sense of tour.

Thanks. I want to ask you last questions. When i buy it. Do I get demo inbuilt since i find it deificult to create virtual tours from scratch.

Sorry, there is no demo inside, the builder list is empty at the start.

Hello! very good plugin. I’m thinking of buying the premium version… but I have a problem. I have this code in my custom js tab: const myJSON = ’ { “active” : “hello” } ’; const myObj = JSON.parse(myJSON); document.getElementById(“demo”).innerHTML = myObj.active;

And I would like that in each scene the “active” json data was a different text… I’m trying to make it like this: {“active” : “what ever”} in each scene (in the user data section), but not it works. Could you tell me how to call the user data json correctly in custom js?

It should be something like this
var instance = this,
$ = jQuery;

var $title = $("<div>").addClass("mytitle");
instance.$container.append($title);

instance.$container.on("ipanorama:scene-before-load", function(e, data) {
   $title.html(data.scene.cfg.userData); 
})
</div>

Pre-sale questions. I have tried the free version and have a few questions.

Is there a way to change the zoom function on mobile devices? Pinch to zoom is working the opposite that it should. The pinch motion is causing the image to zoom out instead of zooming in.

Is there a way to change the size of the thumbnail previews in the civic widget?

I’ve fixed it, test

It now works like expected.

Is there a way to set the max or min zoom amount for viewing a photo?

The interface doesn’t have such controls, it can be done from the custom js code only

Hello, I bought your plugin recently because it is the best. You have done a fantastic job. The plugin is precise and allows a lot of customization. So I congratulate you and I say thank you. I also have a question. I would like to put a transparent background for the tooltip. How can I do ? Thank you so much. I’m also sending you an email.

It can be done with some custom css like this
.ipnrm .ipnrm-tooltips .ipnrm-tooltip .ipnrm-arrow {
    display:none;
}
.ipnrm .ipnrm-tooltips .ipnrm-tooltip .ipnrm-form {
    background:transparent;
}
.ipnrm .ipnrm-tooltips .ipnrm-tooltip .ipnrm-form:after {
    display:none;
}

Hello Max The code works perfectly. Thank you ! And again congratulations. It is a fantastic plugin for creating virtual tours. Best regards, Victoria

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey