Search…

X3 Photo Gallery Support Forums

Search…
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Imagevue/Fotomoto Integration and Wordpress Gallery Acce

08 Apr 2012, 09:27

stony wrote:Cool. Glad I could help you find your bug. Speaking of bugs, when I uncheck the option to upload and overwrite in settings for uploader, it still insists on staying checked when I actually upload. Not sure if you were ever planning on returning to the issue I had trouble with when I posted here but it remains unresolved. I removed your access privileges so let me know if you can tell me how we get the fotomoto shopping cart to work in my blog shop. Thanks! S
Well, looking at your Wordpress site again, it is almost impossible for us to figure out what exactly is wrong, but after studying it I noticed several things:

First of all, you are using what, 50 or more plugins on your website? I noticed you had 43 different javascripts loading for your website, which not only slows down the loading, but also is a recipe for complications.

... So related to this, I see you have 3x swfobject.js files in your wordpress. They are all the same javascript, but most likely different versions. There is a chance that the last one loaded will overwrite the first one, but also there may be a chance that loading duplicate versions of duplicate files may cause complications.

Furthermore, I don't know how many javascripts you are loading related to jQuery, but there are dozens, and I am assuming that somehow the fotomoto code we added may not be loading properly. So I would try this ... Instead of the code you added earlier:
Code
<script type="text/javascript">
		// <![CDATA[
			$(window).load(function () {
				$.getScript('http://widget.fotomoto.com/stores/script/d38be31a98741bc78fd9a5f7755c33a27b95602d.js?api=true&aid=38e40b1303333859', function () {
					window.getCaptions = function(captions) {
						document.getElementById('imagevue').sendCaptions(captions);
					}
					window.getImageProducts = function(products) {
						document.getElementById('imagevue').sendImageProducts(products);
					}
				});
			});

		// ]]>
		</script>
... lets try to add it without some advanced jQuery event ...
Code
<script type="text/javascript" src="http://widget.fotomoto.com/stores/script/d38be31a98741bc78fd9a5f7755c33a27b95602d.js?api=true&aid=38e40b1303333859"></script>
<script type="text/javascript">
	// <![CDATA[
	window.getCaptions = function(captions) {
		document.getElementById('imagevue').sendCaptions(captions);
	}
	window.getImageProducts = function(products) {
		document.getElementById('imagevue').sendImageProducts(products);
	}
	//]]>
 </script>
So, I think there is a chance this may solve it ... Although I would try to fix the complications with the multiple swfobject.js files also. Some of the plugins you are using are not very robust, or they would add their required javascripts to the wordpress queue, so that all your plugins dont load duplicate files on top of each other ...
 
User avatar
stony
Topic Author
Posts: 18
Joined: 24 Mar 2012, 18:14

Re: Imagevue/Fotomoto Integration and Wordpress Gallery Acce

08 Apr 2012, 15:27

Yes, I noticed the plugin overload back when we started our discussion and removed a plethora of them just to get a vanilla slate. I only reinstated them when that did not solve the issue. I will try your code and get back to you. Thanks! S
 
User avatar
stony
Topic Author
Posts: 18
Joined: 24 Mar 2012, 18:14

Re: Imagevue/Fotomoto Integration and Wordpress Gallery Acce

08 Apr 2012, 19:33

Guess what? Slighty schitzy. But it worked! Sweet! Thanks for that. The imagevue window does not want to leave, but it does have fotomoto functionality now. S 8)
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Imagevue/Fotomoto Integration and Wordpress Gallery Acce

09 Apr 2012, 00:19

stony wrote:Guess what? Slighty schitzy. But it worked! Sweet! Thanks for that. The imagevue window does not want to leave, but it does have fotomoto functionality now. S 8)
Good! This is what I thought, because it came down to something simple that that little javascript batch was not executing for some jQuery-related reason. What do you mean the Imagevue window does not want to leave?
 
User avatar
stony
Topic Author
Posts: 18
Joined: 24 Mar 2012, 18:14

Re: Imagevue/Fotomoto Integration and Wordpress Gallery Acce

09 Apr 2012, 00:32

Try it. When you choose a category, the pic for that category comes up in a fullscreen mode. When you choose the fotomoto cart in that pic, say to print, it throws the pic out of fullscreen and back down to the blog size interface, but then that covers the fotomoto fullscreen interface with the pic in it. Can't get rid of the little one. It keeps the small blog interface for imagevue over a fullscreen fotomoto sale window.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Imagevue/Fotomoto Integration and Wordpress Gallery Acce

09 Apr 2012, 01:45

First of all, the gallery simply needs to leave fullscreen mode to allow "html" scripts to interact with the page (like fotomoto). This is because in fullscreen mode, the SWF is operating in standalone mode disregarding html. Clicking a html/javascript related function need to return the gallery to html embedded mode just to function.

As for the Imagevue SWF overlaying the fotomoto window, you need to fix one last thing as is also done in the default Imagevue gallery. Fix the Imagevue embed code to include the opaque wmode setting. Find:
Code
{allowScriptAccess: 'always', allowFullScreen: true, bgcolor: '#ffffff'}
Change to
Code
{allowScriptAccess: 'always', allowFullScreen: true, bgcolor: '#ffffff', wmode: 'opaque'}
 
User avatar
stony
Topic Author
Posts: 18
Joined: 24 Mar 2012, 18:14

Re: Imagevue/Fotomoto Integration and Wordpress Gallery Acce

09 Apr 2012, 02:00

Nice. Much obliged. We have a winner! s :D
 
User avatar
stony
Topic Author
Posts: 18
Joined: 24 Mar 2012, 18:14

Re: Imagevue/Fotomoto Integration and Wordpress Gallery Acce

10 Apr 2012, 21:04

So I only made your recommended changes to get my blog copy working, but at my fracticon.com site it is still not always showing the fotomoto cart. For example, the category pix for Culture & Society, Dreamscapes, Nature, Colorific, and Events in a test just now did now show the fotomoto cart icon as the fourth icon, only the other three icons when moused over the image. Waddup :?:
 
User avatar
stony
Topic Author
Posts: 18
Joined: 24 Mar 2012, 18:14

Re: Imagevue/Fotomoto Integration and Wordpress Gallery Acce

10 Apr 2012, 21:19

Hmmm.... I changed the Fotomotobutton Click option from Window to Menu in Imagevue Gallery Settings and it all tested okay. Go figger. :?
 
User avatar
stony
Topic Author
Posts: 18
Joined: 24 Mar 2012, 18:14

Re: Imagevue/Fotomoto Integration and Wordpress Gallery Acce

12 Apr 2012, 11:44

Image comment forms are not accepting data. :oops:
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Imagevue/Fotomoto Integration and Wordpress Gallery Acce

15 Apr 2012, 12:07

What comment forms? You mean the contact form and send link?
 
User avatar
stony
Topic Author
Posts: 18
Joined: 24 Mar 2012, 18:14

Re: Imagevue/Fotomoto Integration and Wordpress Gallery Acce

15 Apr 2012, 12:53

http://fracticon.com
Choose a category from the Browse Gallery menu
Once that image comes in there is a thought bubble as the first of three icons showing in the upper left corner of the screen that says Comments when moused over
click it
A window pops up saying no comments and offering to post one
Choose to post one
You cannot enter data in the fields

Okay had tried this twice and did it again just to be sure and it did not work. Just did it again and it worked. Went it again, locked up my screen. See attachment.

Also, the icon next to it for News with the RSS icon brings up a grid of blank thumbnails. See attachments. :(
Attachments
buttons.jpg
buttons.jpg (150.13 KiB) Viewed 6957 times
blanks.jpg
blanks.jpg (55.02 KiB) Viewed 6957 times
blank.jpg
blank.jpg (62.43 KiB) Viewed 6957 times
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Imagevue/Fotomoto Integration and Wordpress Gallery Acce

16 Apr 2012, 00:34

What are those squares in your 2nd screenshot? how did you get there?

It worked fine here:
Image

Are you sure you are not in full screen mode? When in fullscreen mode, Flash does not allow text input because of some security reasons.
 
User avatar
stony
Topic Author
Posts: 18
Joined: 24 Mar 2012, 18:14

Re: Imagevue/Fotomoto Integration and Wordpress Gallery Acce

16 Apr 2012, 01:46

I see that. Tx for the comment.

The squares are what I get when I click the News icon to the right if the Comment icon.
 
User avatar
Artur
Imagevue PowerPack
Posts: 510
Joined: 20 May 2011, 03:17

Re: Imagevue/Fotomoto Integration and Wordpress Gallery Acce

04 May 2012, 04:08

First. I'm not quite sure, but I think that you are using subdomains as gallery, 'm I right?
Next thing. Your news files are located in other subdomain or other folder than your gallery suggest. Look at the the example output from your RSS module (new pictures):
Code
path="/content/Leisure and Travel/Places/Europe/Austria/Archive/" image_name="08-europe-austria-vienna_0098.med-315.jpg"
Where in your site is page named "Leisure and Travel/Places/Europe/Austria/Archive/"? I can't realy locate it in the gallery menu...
(your gallery files are in http://fracticon.com, but news module is installed here: http://fracticon.w8r.com)

For RSS (new comments) the output is correct and I can find it in your gallery menu:
Code
path="/content/Culture/" image_name="C360_2011-10-2917-12-35.jpg"
Remember that when you are moveing your files or folders via FTP then your news module will not work properly.
stony wrote: Once that image comes in there is a thought bubble as the first of three icons showing in the upper left corner of the screen that says Comments when moused over
click it
A window pops up saying no comments and offering to post one
Choose to post one
You cannot enter data in the fields
Keep in mind that you can't enter any data in the text fields when your gallery is in "fulscreen mode". This is an flash security (related to adobe not flash developers) and it can't be done in any way.