Using Drupal 5.2 and Uber 7E as localhost. On the live site Drupal 7.3 and Uber 7E. And the same for a second live site. All 3 have the same issue with the In Store warning. With In Store not selected as a module, the site works fine.
With In Store in place and the Local Pick radio button checked the warning appears and you can not go any farther in the check out process. If the flat rate radio button is checked the order is fully processed.
$method = $methods[$quote_option[0]];
$quote_data = array();
ob_start();
$quote_data[$method['id']] = call_user_func($method['quote']['callback'], $products, $details);
$messages = ob_get_contents();
ob_end_clean();
if ($messages && variable_get('uc_quote_log_errors', false)){
watchdog('quote', $messages, WATCHDOG_WARNING);
}
if (!isset($quote_data[$quote_option[0]][$quote_option[1]])){
drupal_set_message(t('Invalid option selected. Recalculate shipping quotes to continue.'), 'error');
return false;Appreciate the look as this is a nice feature that has a lot of positive applications once the callback issue is resolved.
Jim



Joined: 10/16/2007