It looks like Give have added a filter hook for this, so you can just add something like:
// take daily and weekly options out for GiveWP Recurring Donations
function wf_give_recurring_periods($periodArray){
unset($periodArray['day']);
unset($periodArray['week']);
return $periodArray;
}
add_filter('give_recurring_periods','wf_give_recurring_periods', 10, 1);
to your functions.php.