Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls

X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

 
Reply
   X-Cart forums > News and Announcements
 
Thread Tools
  #31  
Old 04-18-2016, 10:34 PM
 
mixon mixon is offline
Michael Bugrov
 

X-Cart team
  
Join Date: Jul 2005
Posts: 91
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Quote:
Originally Posted by Lloyds
Where is the "How to setup Amazon Feeds" page located? I can't find anything.

Where can I find my "Merchant ID" at Amazon seller?

Can I use the same info as my AWS CDN information, or is it separate for sellers?

The Merchant ID and other required info is provided during the Amazon MWS account registration.

You should have a Professional Seller Account in order to get Amazon MWS info and use Amazon Feeds.

You can find more info about Amazon Feeds submission in the Amazon Documentation.

IMPORTANT: The Amazon MWS account info is provided only after the successful registration.
Attached Images
File Type: png screenshot-amazon.png (92.5 KB, 13 views)
__________________
--
Sincerely yours,
Michael Bugrov,
X-Cart Software Architector

founder of: X-Monitoring service
founder of: Infinite scroll

Facebook
Linked-in
Reply With Quote
  #32  
Old 04-19-2016, 03:30 AM
 
aim aim is offline
Advanced Staff Users
 

X-Cart team
  
Join Date: Dec 2008
Posts: 928
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Quote:
Originally Posted by red_and_white
Hello,
are you Xcart team planning to update ALL modules to 4.7.5 version? Actually I can't find mine. they are 4.7.4 version. Thank You

We have updated the modules.

Thank you.
__________________
Sincerely yours,
Ildar Amankulov
Head of Maintenance group
Reply With Quote
  #33  
Old 04-19-2016, 09:07 AM
 
duragrit duragrit is offline
 

Advanced Member
  
Join Date: Feb 2013
Posts: 36
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Hello, where are the rest of the product categories for the X-Cart Amazon Product Feed?

There are only a select list of product categories shown in the X-Cart Amazon Product Type?

Our products are tools, which fall under various sub-categories of the Amazon "Tools & Home Improvement" parent category.

Example Amazon sub categories that our products are applicable for are:
Cutoff Wheels
Power Tool Accessory Sets
Cutting Burs
Ocsillating Tool Accessories
Power Rotary Tool Cutting Wheels
Power Rotary Tool Sanders
Hook & Loop Discs
Woodworking Project Kits
Hand Rasps
Flat Files
Round Files
Sanding Blocks
Random Orbital Sheets
Half Sheets
Multi Sheets

Can you please add the "Tools & Home Improvement" parent category, and at the very least the above sub categories to the X-Cart Amazon Product Types.

Also, some of our products are applicable to multiple sub-categories.
Can you please make it possible to have the option to list them under multiple sub-categories?

Also, we want to sell on the Amazon USA, Canada & Mexico marketplaces.
Our Amazon Seller Account is setup with a Marketplace IDs for each of these marketplaces.
Presently the Amazon Product Feed only allows us to select one of these marketplaces (USA, Canada or Mexico).
Please make it possible to allow us to list our X-Cart Amazon Products Feed on all 3 marketplaces.

Thank you.

Regards,
Chris

P.S. Not sure if I should have posted this here or created a new thread in the forum?
If the latter, please advise and I'll do so accordingly. Thank you.
__________________
X-Cart v4.7.5 Gold Plus
Modules: Infinite Scroll, X-Cloud Backup
theXCartStore: xTreme Gear Template, xMobile, xAccess, xBanners 2, xMenus Responsive, Predictive Search
Reply With Quote

The following user thanks duragrit for this useful post:
cherie (04-19-2016)
  #34  
Old 04-19-2016, 11:28 AM
 
Dougrun Dougrun is offline
 

X-Adept
  
Join Date: Apr 2012
Posts: 895
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Looking in the support files section you have named 2 modules the same thing. The Amazon payments advanced, and the pay by amazon.
x-pay-with-amazon-4.6.3.zip
kinda confusing. The module is named Pay by Amazon in XC backend so all files should be named the same.
__________________
4.7.x xcart store
Business 5.4xx
Reply With Quote
  #35  
Old 04-19-2016, 07:50 PM
 
zebu zebu is offline
 

eXpert
  
Join Date: Oct 2006
Posts: 310
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Hi All,

We updated successfully to 4.7.5 (from 4.7.4) yesterday. All has gone seamlessly - except we have a reoccurring error in our logs:

Warning: Invalid argument supplied for foreach() in /home/....../public_html/include/func/func.user.php on line 140

HTML Code:
class XCUserAddressBook { public static function getDataForMail($address_book, $ship2diff, $existing_address, $new_address) { // {{{ $res = array(); >>>> Line 140 >>>> foreach ($address_book as $addrid => $data) {

Any ideas on what may have effected this in the upgrade?

Thanks
__________________
Version 4.7.7
Reply With Quote
  #36  
Old 04-19-2016, 08:19 PM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,190
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Some code is calling the function with $address_book not being an array. You can add before that line

PHP Code:
if (!is_array($address_book)) {
    
$address_book = array();

__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote

The following 3 users thank cflsystems for this useful post:
aim (04-19-2016), elmirage001 (04-26-2016), zebu (04-19-2016)
  #37  
Old 04-19-2016, 09:08 PM
 
aim aim is offline
Advanced Staff Users
 

X-Cart team
  
Join Date: Dec 2008
Posts: 928
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Quote:
Originally Posted by cflsystems
Some code is calling the function with $address_book not being an array. You can add before that line

PHP Code:
if (!is_array($address_book)) {
    
$address_book = array();


The solution from Steve Stoyanov can be used.

The PHP notice does not affect any functionality.

Thank you, Steve.
__________________
Sincerely yours,
Ildar Amankulov
Head of Maintenance group

Last edited by qualiteam : 04-19-2016 at 09:29 PM.
Reply With Quote

The following user thanks aim for this useful post:
zebu (04-19-2016)
  #38  
Old 04-19-2016, 09:13 PM
 
zebu zebu is offline
 

eXpert
  
Join Date: Oct 2006
Posts: 310
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Thanks Steve and Ildar - much appreciated!
__________________
Version 4.7.7
Reply With Quote
  #39  
Old 04-20-2016, 09:12 AM
  cherie's Avatar 
cherie cherie is offline
 

X-Wizard
  
Join Date: May 2003
Location: USA
Posts: 1,534
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Quote:
Originally Posted by cflsystems
XC does not think this is a bug. To me this is a bug. There are 2 modules - AOM and Special Offers - which do not work together. So the solution - there is no solution. Do not use Special Offers module. Period.
Flashbacks to this bewildering back-and-forth thread about Bugs vs Features:

https://forum.x-cart.com/showthread.php?p=359871#post359871
__________________
redlimeweb.com
custom mods and design integration
4.7 linux
Reply With Quote

The following user thanks cherie for this useful post:
aim (04-20-2016)
  #40  
Old 04-27-2016, 12:45 PM
 
Lloyds Lloyds is offline
 

Advanced Member
  
Join Date: Apr 2013
Posts: 72
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Seriously, there is no step by step process published for getting this set up? I have attached an image for the Amazon page. What do I select to get to the next step?

Note: I do have a seller account setup.





Quote:
Originally Posted by mixon
The Merchant ID and other required info is provided during the Amazon MWS account registration.

You should have a Professional Seller Account in order to get Amazon MWS info and use Amazon Feeds.

You can find more info about Amazon Feeds submission in the Amazon Documentation.

IMPORTANT: The Amazon MWS account info is provided only after the successful registration.
__________________
4.7.5 - lloydsofindiana.com

5.3.2.7 - Customprintproducts.com

Lloyds of Indiana
Binding Machines, Binding Supplies, Laminators, UV Coating
Reply With Quote
Reply
   X-Cart forums > News and Announcements


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 05:52 AM.

   

 
X-Cart forums © 2001-2020