Lyle:
Found this bit of code in uc_storepickup.module and assume this is the correct location for the change. Played around with a number of mods, but most end up with a blank screen. Knowing more PHP would be a enhancement on my end.
function uc_storepickup_shipping_method(){
$methods = array();
$enabled = variable_get('uc_quote_enabled', array('storepickup' => true));
$weight = variable_get('uc_quote_method_weight', array('storepickup' => 0));
$methods['storepickup'] = array(
'id' => 'storepickup',
'module' => 'uc_storepickup',
'title' => t('In-store Pickup'),
'enabled' => $enabled['storepickup'],
'quote' => array(
'type' => 'small_package',
'callback' => 'uc_storepickup_quote',
'accessorials' => array( t('Shipping Rate'), ),
),
'ship' => array(
'type' => 'customer_pickup',
'callback' => '',
),
'weight' => $weight['customer_pickup'],
);
return $methods;
}Did replace the accessorials with the following.
'accessorials' => array('pickup' => t('Shipping Rate')) Not much of a PHP person so there are most likly a number of errors in that substitution. Let me know what needs to be changed where that change should occur. Also did not locate the place where return value to the array could be changed. Again, PHP is just not my cup of tea but fun to play with when it works!!!
Jim



Joined: 10/16/2007