Index: amazon_media/amazon-item-software-details.tpl.php
===================================================================
--- amazon_media/amazon-item-software-details.tpl.php	(revision 77)
+++ amazon_media/amazon-item-software-details.tpl.php	(revision 14)
@@ -4,5 +4,4 @@
 <div><strong><?php print t('Publisher'); ?>:</strong> <?php print $publisher; ?></div>
 <div><strong><?php print t('Operating System'); ?>:</strong> <?php print $operatingsystem; ?></div>
 <div><strong><?php print t('Price'); ?>:</strong> <?php print $listpriceformattedprice; ?></div>
-<div><strong><?php print t('Offered Price'); ?>:</strong> <?php print $offeredpriceformattedprice; ?></div>
 </div>
Index: amazon_media/amazon-item-video-games-details.tpl.php
===================================================================
--- amazon_media/amazon-item-video-games-details.tpl.php	(revision 77)
+++ amazon_media/amazon-item-video-games-details.tpl.php	(revision 14)
@@ -4,5 +4,4 @@
 <div><strong><?php print t('Genre'); ?>:</strong> <?php print $genre; ?></div>
 <div><strong><?php print t('Age rating'); ?>:</strong> <?php print $esrbagerating; ?></div>
 <div><strong><?php print t('Price'); ?>:</strong> <?php print $listpriceformattedprice; ?></div>
-<div><strong><?php print t('Offered Price'); ?>:</strong> <?php print $offeredpriceformattedprice; ?></div>
 </div>
Index: amazon-item-details.tpl.php
===================================================================
--- amazon-item-details.tpl.php	(revision 77)
+++ amazon-item-details.tpl.php	(revision 14)
@@ -4,5 +4,4 @@
 <div><strong><?php print t('Manufacturer'); ?>:</strong> <?php print $manufacturer; ?></div>
 <div><strong><?php print t('Part Number'); ?>:</strong> <?php print $mpn; ?></div>
 <div><strong><?php print t('Price'); ?>:</strong> <?php print $listpriceformattedprice; ?></div>
-<div><strong><?php print t('Offered Price'); ?>:</strong> <?php print $offeredpriceformattedprice; ?></div>
 </div>
Index: amazon.install
===================================================================
--- amazon.install	(revision 77)
+++ amazon.install	(revision 14)
@@ -45,9 +45,6 @@
       'listpriceamount' => array('type' => 'float', 'unsigned' => TRUE),
       'listpricecurrencycode' => array('type' => 'varchar', 'length' => 32),
       'listpriceformattedprice' => array('type' => 'varchar', 'length' => 32),
-      'offeredpriceamount' => array('type' => 'float', 'unsigned' => TRUE),
-      'offeredpricecurrencycode' => array('type' => 'varchar', 'length' => 32),
-      'offeredpriceformattedprice' => array('type' => 'varchar', 'length' => 32),
       'productgroup' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE),
       'producttypename' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE),
       'timestamp' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0),
Index: includes/amazon.views.inc
===================================================================
--- includes/amazon.views.inc	(revision 77)
+++ includes/amazon.views.inc	(revision 14)
@@ -126,8 +126,6 @@
   _amazon_make_simple_text_field($data, 'amazon_item', 'releasedate', 'Release date', 'The release date of the product.');
   _amazon_make_simple_text_field($data, 'amazon_item', 'listpriceformattedprice', 'List price', 'The current list price of the item. (Unformatted)');
   unset($data['amazon_item']['listpriceformattedprice']['argument']);
-  _amazon_make_simple_text_field($data, 'amazon_item', 'offeredpriceformattedprice', 'Offered price', 'The current lowest new price of the item. (Unformatted)');
-  unset($data['amazon_item']['offeredpriceformattedprice']['argument']);
 
   // Define the base group of this table. Fields that don't
   // have a group defined will go into this field by default.
Index: amazon.module
===================================================================
--- amazon.module	(revision 77)
+++ amazon.module	(revision 14)
@@ -354,12 +354,6 @@
     $item['listpriceformattedprice'] = (string)$xml->ItemAttributes->ListPrice->FormattedPrice;
   }
 
-  if (!empty($xml->Offers->Offer->OfferListing->Price->Amount)) {
-    $item['offeredpriceamount'] = (string)$xml->Offers->Offer->OfferListing->Price->Amount;
-    $item['offeredpricecurrencycode'] = (string)$xml->Offers->Offer->OfferListing->Price->CurrencyCode;
-    $item['offeredpriceformattedprice'] = (string)$xml->Offers->Offer->OfferListing->Price->FormattedPrice;
-  }
-
   $participant_types = split(',', AMAZON_PARTICIPANT_TYPES);
 
   // Pull in the basics of the ItemAttributes collection.
@@ -635,7 +629,6 @@
     $values['binding']             = check_plain($item['binding']);
     $values['releasedate']             = check_plain($item['releasedate']);
     $values['listprice']             = check_plain($item['listpriceformattedprice']);
-    $values['offeredprice']             = check_plain($item['offeredpriceformattedprice']);
     $values['producttype']             = check_plain($item['producttype']);
     return $values;
   }
