w7th
Forum Replies Created
-
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Donor AvatarSorry for the delay! I upload a screen capture of me trying to upload an image. https://w7th.com/media/donor-dashboard.mov.
Got it! Thanks so much!
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Donor Dashboard HistoryHi @mrdaro,
We were using Give 2.12.1, but updating to Give 2.12.2 seems to have done the trick.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Donor DashboardHey Rick,
Gotcha! That makes sense. I’ll stay tuned for the release. Thanks for the update and a great product!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, 5 months ago by w7th.
Resolved- it was a Mod_security issue with my new host.
Forum: Plugins
In reply to: [Open Graph and Twitter Card Tags] Use Custom Taxonomy thumbnail as ImageAwesome, thanks so much!
Forum: Plugins
In reply to: [Open Graph and Twitter Card Tags] Use Custom Taxonomy thumbnail as ImageUpdate: 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
In reply to: [AccessPress Social Login Lite - Social Login WordPress Plugin] Twitter IssueYeah, 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’)) { …