What would be the best way to disable the product-specific affiliate links? I'd like to be able to just refer people to the main page of my site instead of the particular product.

Comments

bojanz’s picture

Status: Active » Closed (fixed)

Comment out the following from uc_affiliate2_menu():

$items[] = array(
'path' => join('/', array('user', $account->uid, 'affiliate', 'links')),
'title' => t('Generate Links'),
'access' => $access,
'callback' => 'uc_affiliate2_links',
'type' => MENU_LOCAL_TASK,
'weight' => 1
);

And clear your cache.

royerd’s picture

thanks.