That is the shipping estimator. Info in the shipping estimator doesn't get sent in the shopping cart page ... proof:
Code:
</table></form>
</td>
</tr>
<?php
//RCI start
echo $cre_RCI->get('shoppingcart', 'logic');
//RCI end
// WebMakers.com Added: Shipping Estimator
if ((SHIPPING_SKIP == 'No' || SHIPPING_SKIP == 'If Weight = 0') && $cart->weight > 0) {
if (SHOW_SHIPPING_ESTIMATOR == 'true') {
// always show shipping table
?>
<tr>
<td valign="top"><?php
if ( file_exists(TEMPLATE_FS_CUSTOM_MODULES . FILENAME_SHIPPING_ESTIMATOR)) {
require(TEMPLATE_FS_CUSTOM_MODULES . FILENAME_SHIPPING_ESTIMATOR);
} else {
require(DIR_WS_MODULES . FILENAME_SHIPPING_ESTIMATOR);
}
?></td>
</tr>
See the closing </form> tag above the call to the shipping estimator? Means any info entered ON the shopping cart page stops there for collection. Besides the next page (if not logged in) will be a redirect to the log in page, which is usually
https://.
When they say 'shopping cart' I don't think they are referring literally to the page 'shopping_cart' ... they mean the checkout, ie where customers are supplying form information and in particular when this info goes to a payment gateway for processing and / or storage.
Simon