I really need help with this please, I’ve been trying to figure it out but am not getting very far
re the API
I was looking at a particular site, amongst other things they are Zazzle affiliates and have a simple search that pulls products from Zazzle that shows image and price:
(I can send site link in pm)
And I’d like to have a similar thing accessible for my wix site and blogger blogs and I’ve been trying for ages to work this out.
Note: I want the code on my own site not as an iframe as per other services that offer this type of display.
Can someone point me in the direction of how I do this specific thing.
Chat bot has kindly made me some code, but I can’t get it to work on my wix site.
ps, am of course willing to pay for assistance re this, the usual sources for recruiting freelancers seem to have no clue what I’m on about … no news there!
Have you contacted WIX? I’ve been with them for years but I’ve never used API on any of my sites. Their customer service has always been great, and they do have people on chat who can help with those things.
Hi Tabz, I will do that but I think it’s a zazzle/wix thing in that I may need help figuring out the Zazzle API side, I have also emailed Zazzle re it. Thank you
I think that’s an API to allow people to create a product on another site and buy it through Zazzle. @CreativeLeahG seems to be looking for displaying the products from her store on her own website.
Edit: that plugin is 11 years old, I doubt Zazzle has an API that allows a developer to fetch products from a specific store. It would be cool though. @CreativeLeahG can you send me that link where you saw it from the initial post?
Only method I see atm, is an iframe integration.
There might be a Wix plugin for it, but I’m not familiar with Wix.
Ok, last edit, didn’t want to make a new reply
it looks like you can retrieve and search your store using, an old but still working, RSS method.
Wix had no clue what I was on about when I contacted them, but I’ve been put through to their freelancers to see if a coder person can assist.
Zazzle have something I am using, can see here to good effect but the images are too small and the results it throws up can be a bit hit and miss. But that might always be the case due to tags etc.
I might just have to stick with this.
Thanks for the info, I shall look into what I can do re those feeds. I do want to affiliate for others though so need affiliate code in there somewhere.
Yeah, I’m afraid you need something custom build by someone with experience with Wix for your use case.
I might one day take some time to look into this RSS option and see what fun stuff can be build, maybe something that generates a good image of a collection to share on social media. The current share option (when you press share link) has really small images.
Late to the party but adding some info here, in non-technical terms, in case people are interested in it.
In order to embed Zazzle rss data into your own site you will need a server side component (i.e. php or the like) that gets the data from Zazzle. You can’t do that directly from a HTML page because Zazzle’s security policy on the feed data prevents it from intermingling with data in your HTML page. This is fairly standard practice.
The reason that Iframes works is because the iframe is an independent container and is not directly accessible via the code in the HTML page that its embedded in.
If they aren’t both on the same server, to embed server side code into a HTML page without using iframes the server side code has to effectively give the browser permission to intermingle its data with the HTML page that requested it.