Title: w7th's Replies | WordPress.org

---

# w7th

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Donor Avatar](https://wordpress.org/support/topic/donor-avatar/)
 *  Thread Starter [w7th](https://wordpress.org/support/users/w7th/)
 * (@w7th)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/donor-avatar/#post-18028047)
 * Sorry for the delay! I upload a screen capture of me trying to upload an image.
   [https://w7th.com/media/donor-dashboard.mov](https://w7th.com/media/donor-dashboard.mov).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Magic Login - Passwordless Authentication for WordPress - Login Without Password] Magic Login and Brevo/Sendinblue](https://wordpress.org/support/topic/magic-login-and-brevo-sendinblue/)
 *  Thread Starter [w7th](https://wordpress.org/support/users/w7th/)
 * (@w7th)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/magic-login-and-brevo-sendinblue/#post-17127670)
 * Got it! Thanks so much!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Donor Dashboard History](https://wordpress.org/support/topic/donor-dashboard-history/)
 *  Thread Starter [w7th](https://wordpress.org/support/users/w7th/)
 * (@w7th)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/donor-dashboard-history/#post-14740176)
 * Hi [@mrdaro](https://wordpress.org/support/users/mrdaro/),
 * We were using Give 2.12.1, but updating to Give 2.12.2 seems to have done the
   trick.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Donor Dashboard](https://wordpress.org/support/topic/donor-dashboard/)
 *  Thread Starter [w7th](https://wordpress.org/support/users/w7th/)
 * (@w7th)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/donor-dashboard/#post-14339689)
 * Hey Rick,
    Gotcha! That makes sense. I’ll stay tuned for the release. Thanks 
   for the update and a great product!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Caldera Forms - More Than Contact Forms] select from dropdown menu based on url variable](https://wordpress.org/support/topic/select-from-dropdown-menu-based-on-url-variable/)
 *  [w7th](https://wordpress.org/support/users/w7th/)
 * (@w7th)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/select-from-dropdown-menu-based-on-url-variable/#post-11005401)
 * Hey, if I understand correctly, I’ve been trying to do something similar and 
   this jQuery seems to work for me! If you’re still looking for a solution or just
   to know.
 * Just be sure to use “?” instead of “&” in the URL. This code should be placed
   on the page with the form.
 *     ```
       $(document).ready(function() {
         // Construct URL object using current browser URL
         var url = new URL(document.location);
   
         // Get query parameters object
         var params = url.searchParams;
   
         // Get value of delivery results
         var results_delivery = params.get("results_delivery");
   
         // Set it as the dropdown value
         $("#DROPDOWN-ID").val(results_delivery);
       });
       ```
   
    -  This reply was modified 7 years, 6 months ago by [w7th](https://wordpress.org/support/users/w7th/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kadence Security – Password, Two Factor Authentication, and Brute Force Protection] Error Installing](https://wordpress.org/support/topic/error-installing-14/)
 *  Thread Starter [w7th](https://wordpress.org/support/users/w7th/)
 * (@w7th)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/error-installing-14/#post-10797080)
 * Resolved- it was a Mod_security issue with my new host.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Open Graph and Twitter Card Tags] Use Custom Taxonomy thumbnail as Image](https://wordpress.org/support/topic/use-custom-taxonomy-thumbnail-as-image/)
 *  Thread Starter [w7th](https://wordpress.org/support/users/w7th/)
 * (@w7th)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/use-custom-taxonomy-thumbnail-as-image/#post-9839739)
 * Awesome, thanks so much!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Open Graph and Twitter Card Tags] Use Custom Taxonomy thumbnail as Image](https://wordpress.org/support/topic/use-custom-taxonomy-thumbnail-as-image/)
 *  Thread Starter [w7th](https://wordpress.org/support/users/w7th/)
 * (@w7th)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/use-custom-taxonomy-thumbnail-as-image/#post-9834524)
 * Update: I was able to change it on line 300 of the “public/class-webdados-fb-
   open-graph-public.php”
 * `if ( $webdados_fb->is_woocommerce_active() && intval($this->options['fb_wc_usecategthumb'])
   ==1 && is_product_category() ) {`
 * to
 * `if ( $webdados_fb->is_woocommerce_active() && intval($this->options['fb_wc_usecategthumb'])
   ==1 && is_tax('product_brand') ) {`
 * But is there a way to do this with filters in my functions.php file of my child
   theme?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AccessPress Social Login Lite - Social Login WordPress Plugin] Twitter Issue](https://wordpress.org/support/topic/twitter-issue-2/)
 *  Thread Starter [w7th](https://wordpress.org/support/users/w7th/)
 * (@w7th)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/twitter-issue-2/#post-9118852)
 * Yeah, it appears you’re correct. Since it’s being called by another plugin, I
   just added an “if” to the plugin’s code in /twitter/OAuth.php.
 * `if (!class_exists(‘OAuthException’)) { …
    -  This reply was modified 9 years, 2 months ago by [w7th](https://wordpress.org/support/users/w7th/).
    -  This reply was modified 9 years, 2 months ago by [w7th](https://wordpress.org/support/users/w7th/).
    -  This reply was modified 9 years, 2 months ago by [w7th](https://wordpress.org/support/users/w7th/).

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