ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...
Well, I guess if anything, the research to know what is expected/required seems to be a sticking point at the moment. I somewhat thought that I might be able to pull from another's code, but haven't found such an example yet really not one that will provide a quick (next hour or so) solution. But looks like it is possible, just need to know what data and header is expected.
ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...
Maybe I can help there. The Amazon Product Ads Upload File template might help to identify what is needed. I've put it my drop box for you to look at:
https://db.tt/7At3BkNV
Or the Google Merchant Center Feeder, or Amazon Inventory Loader from Numinix could shed some light to what is needed.
It just would be great to have the ability to generate a usable feed from this mod.
Live and learn... the Zen way.
Looking a bit further into what the sample feed looks like, it should not be too difficult to just hand match the headers up with what I get from the regular full export of my product listing. I shall give it a shot and post my findings.
Live and learn... the Zen way.
Matching up header is not too difficult but I've discovered that I don't have the products URL in my exported file. I need this for the Amazon feed. Any suggestion how this could be added to the exported file?
Live and learn... the Zen way.
ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...
Few functions to help build the uri:
Zen_get_info_page($prodID) returns the portion of: main_page=
Zen_get_product_path($prodID) to get the cPath as cat1_cat2_cat3.
And then would concatenate the products_id= with $prodID
I think though the cat number is already a part of the data, the info_page can be obtained through the above function and the $page that is applicable for the zen_href_function is FILENAME_DEFAULT.
So uri:
The false is to prevent adding the session_id onto the uri.Code:$new_uri = HTTP_SERVER . DIR_WS_CATALOG . zen_href_link(FILENAME_DEFAULT, 'main_page='. zen_get_info_page($prodID) .'&cPath='. zen_get_product_path($prodID) .'&products_id='.$prodID,,false);
ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...