• Hi,

    For the page listed we have enabled the option for the customer to specify the frequency. Is it possible to remove daily and weekly as options from the dropdown?

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Mark – I was just looking for an answer to this, too. Did you manage to get anywhere?

    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.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove frequencies on Recurring donations’ is closed to new replies.