Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

babyfryd

Pioneers
  • Posts

    5
  • Joined

  • Last visited

Everything posted by babyfryd

  1. Hi' What a great attribution :) I have one problem though; According to Google ( https://support.google.com/merchants/answer/1347943 ) the feed for Apparel now has to include one line (item) for each size or color of an item: Has anyone found a solution for this? I am currently using this feedmachine configuration: http://addons.oscommerce.com/info/7130 But this just lists the sizes as comma-separated "1y, 2y, 3y, 4y" in a size column on the spreadsheet (it should have been made as 4 lines in the spreadsheet as 4 induvidual products) Kind regards, Mikael
  2. Hi Redrum I had the same problem, and removed the 'products_quantity' from the $sql_data_array. In my categories.php (heavily modified) it's around line 258. In admin/categories.php replace: $sql_data_array = array('products_quantity' => tep_db_prepare_input($HTTP_POST_VARS['products_quantity']), 'products_model' => tep_db_prepare_input($HTTP_POST_VARS['products_model']), 'products_price' => tep_db_prepare_input($HTTP_POST_VARS['products_price']), 'products_date_available' => $products_date_available, 'products_weight' => tep_db_prepare_input($HTTP_POST_VARS['products_weight']), 'products_status' => tep_db_prepare_input($HTTP_POST_VARS['products_status']), 'products_tax_class_id' => tep_db_prepare_input($HTTP_POST_VARS['products_tax_class_id']), 'manufacturers_id' => tep_db_prepare_input($HTTP_POST_VARS['manufacturers_id'])); with $sql_data_array = array('products_model' => tep_db_prepare_input($HTTP_POST_VARS['products_model']), 'products_price' => tep_db_prepare_input($HTTP_POST_VARS['products_price']), 'products_date_available' => $products_date_available, 'products_weight' => tep_db_prepare_input($HTTP_POST_VARS['products_weight']), 'products_status' => tep_db_prepare_input($HTTP_POST_VARS['products_status']), 'products_tax_class_id' => tep_db_prepare_input($HTTP_POST_VARS['products_tax_class_id']), 'manufacturers_id' => tep_db_prepare_input($HTTP_POST_VARS['manufacturers_id'])); It works for me! But please be aware that I'm a PHP newbie, so it might cause problems somewhere else Kind regards, Mikael
×
×
  • Create New...