Edit the file:
/includes/modules/shipping/storepickup.php
and add the code in RED:
Code:
function __construct() {
$this->code = 'storepickup';
$this->title = MODULE_SHIPPING_STOREPICKUP_TEXT_TITLE;
$this->description = MODULE_SHIPPING_STOREPICKUP_TEXT_DESCRIPTION;
$this->sort_order = MODULE_SHIPPING_STOREPICKUP_SORT_ORDER;
$this->icon = ''; // add image filename here; must be uploaded to the /images/ subdirectory
$this->tax_class = MODULE_SHIPPING_STOREPICKUP_TAX_CLASS;
$this->tax_basis = MODULE_SHIPPING_STOREPICKUP_TAX_BASIS;
$this->enabled = ((MODULE_SHIPPING_STOREPICKUP_STATUS == 'True') ? true : false);
$this->update_status();
}