Search…

X3 Photo Gallery Support Forums

Search…
 
hardliner
Experienced
Topic Author
Posts: 134
Joined: 22 Jul 2011, 10:15

imagevue wordpress and fotomoto

22 Jul 2011, 18:15

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
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: imagevue wordpress and fotomoto

22 Jul 2011, 18:38

Do you have a link to your imagevue wordpress though? It would help a million to understand the nature of your problem.
 
hardliner
Experienced
Topic Author
Posts: 134
Joined: 22 Jul 2011, 10:15

Re: imagevue wordpress and fotomoto

22 Jul 2011, 19:30

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.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: imagevue wordpress and fotomoto

23 Jul 2011, 04:28

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> 
 
hardliner
Experienced
Topic Author
Posts: 134
Joined: 22 Jul 2011, 10:15

Re: imagevue wordpress and fotomoto

24 Jul 2011, 06:26

Sorry but i not find any fotomoto-script or a file with this Code.

What can i do that was works with my configuration.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: imagevue wordpress and fotomoto

24 Jul 2011, 16:22

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 ...