Title: webfoundry's Replies | WordPress.org

---

# webfoundry

  [  ](https://wordpress.org/support/users/webfoundry/)

 *   [Profile](https://wordpress.org/support/users/webfoundry/)
 *   [Topics Started](https://wordpress.org/support/users/webfoundry/topics/)
 *   [Replies Created](https://wordpress.org/support/users/webfoundry/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/webfoundry/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/webfoundry/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/webfoundry/engagements/)
 *   [Favorites](https://wordpress.org/support/users/webfoundry/favorites/)

 Search replies:

## Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Remove frequencies on Recurring donations](https://wordpress.org/support/topic/remove-frequencies-on-recurring-donations/)
 *  [webfoundry](https://wordpress.org/support/users/webfoundry/)
 * (@webfoundry)
 * [5 years, 12 months ago](https://wordpress.org/support/topic/remove-frequencies-on-recurring-donations/#post-13004123)
 * 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Remove frequencies on Recurring donations](https://wordpress.org/support/topic/remove-frequencies-on-recurring-donations/)
 *  [webfoundry](https://wordpress.org/support/users/webfoundry/)
 * (@webfoundry)
 * [5 years, 12 months ago](https://wordpress.org/support/topic/remove-frequencies-on-recurring-donations/#post-13003490)
 * Hi Mark – I was just looking for an answer to this, too. Did you manage to get
   anywhere?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Beautiful taxonomy filters] Terms selected in wrong (multiple) taxonomy dropdowns](https://wordpress.org/support/topic/terms-selected-in-wrong-multiple-taxonomy-dropdowns/)
 *  Thread Starter [webfoundry](https://wordpress.org/support/users/webfoundry/)
 * (@webfoundry)
 * [8 years ago](https://wordpress.org/support/topic/terms-selected-in-wrong-multiple-taxonomy-dropdowns/#post-10360979)
 * I think the solution looks something like this instead. It’s definitely a bug
   so worth similar might work for future versions.
 *  ` $key=$category->taxonomy;
    if($queryvars[$key]===$category->slug){ $output.
   = ‘ selected=”selected” ‘; }`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GeoDirectory - WP Business Directory Plugin and Classified Listings Directory] Shortcode and location breadcrumb links not working](https://wordpress.org/support/topic/shortcode-and-location-breadcrumb-links-not-working/)
 *  Thread Starter [webfoundry](https://wordpress.org/support/users/webfoundry/)
 * (@webfoundry)
 * [11 years ago](https://wordpress.org/support/topic/shortcode-and-location-breadcrumb-links-not-working/#post-6222316)
 * Hi,
 * No – if you click the links on the left showing the locations, produced by the
   shortcode, the pages they lead to are just blank.
 * Thanks
    Stu

Viewing 4 replies - 1 through 4 (of 4 total)