Page 1 of 1

imagevue wordpress and fotomoto

Posted: 22 Jul 2011, 18:15
by hardliner
Hello,

i have integrate the imagevue Gallery in wordpress with instructions below.

viewtopic.php?f=30&t=5832&p=21474&hilit ... ess#p21474

Its works fine, but i have upgrade the gallery to 2.7.5 and i have enable the fotomoto shopping cart. Now the Links buy print does not work. When i be logged in to Admin Panel and i tested the Folder now its going. I have analyze the Issue and i found the Issue.

The Integration in wordpress work with a separate page. The URL is masked and you see only like this:
<yourwebsite>/gallery.

And now the fotomoto icons does not work. But with deeplink with complete URL works fine. That was:

<yourwebsite>/folder1/folder2/gallery

How i can this issue fixed?

Next Issue is the font is another from the paglink on wordpress to deeplink.

I hope you can me help.

Best Regards
Danjel

Re: imagevue wordpress and fotomoto

Posted: 22 Jul 2011, 18:38
by mjau-mjau
Do you have a link to your imagevue wordpress though? It would help a million to understand the nature of your problem.

Re: imagevue wordpress and fotomoto

Posted: 22 Jul 2011, 19:30
by hardliner
Hello mjau-mjau,

here the URL where works:

http://danjel.rojka.de/wp-content/galle ... _und_Paul/

And now go over the Link below:

http://danjel.rojka.de/galerie

and now go in the MenĂ¼ to-->Portfolio-->Portrait-->Miri_und_Paul

and you will see the fotomoto Buttons not work.

Re: imagevue wordpress and fotomoto

Posted: 23 Jul 2011, 04:28
by mjau-mjau
This has an obvious explanation. In your document, you have not embedded the FOTOMOTO javascript required to operate the Fotomoto module. There are several items that will not work when you are porting Imagevue into your own template, unless you also implement the necessary javascripts also.

My suggestion is that you visit your own main gallery, and view the source:
http://danjel.rojka.de/wp-content/gallerie/

Amongst other things, you will see the Fotomoto script:
Code
<script type="text/javascript"> 
		// <![CDATA[
			$(window).load(function () {
				$.getScript('http://widget.fotomoto.com/stores/script/c6decc5f14aac782a292ba99896ccde4cc4961ec.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> 

Re: imagevue wordpress and fotomoto

Posted: 24 Jul 2011, 06:26
by hardliner
Sorry but i not find any fotomoto-script or a file with this Code.

What can i do that was works with my configuration.

Re: imagevue wordpress and fotomoto

Posted: 24 Jul 2011, 16:22
by mjau-mjau
hardliner wrote:Sorry but i not find any fotomoto-script or a file with this Code.
What do you mean? I even gave you the link - Just click it and view source in your browser. If you can not do this, then I think you will have problems setting up your own custom page.
hardliner wrote:What can i do that was works with my configuration.
Your "configuration" is to abandon the provided index.php from Imagevue, and use your own implementation instead. You are clearly creating your own html or wordpress template somehow ... Nothing wrong with that, but then you must also know some basic html, and then know how to add JS to the custom html or other items that are required to run Imagevue with Fotomoto.

That is why I am referring you to view the source of your own main gallery, as to see what javascript codes are required to run Imagevue. Yes it does require some technical understanding unfortunately ...