dsawyers
Forum Replies Created
-
Forum: Plugins
In reply to: [bbp style pack] Function Load ErrorI have the same issue.
to fix the issue, edit bbp-style-pack.php line 86
change
add_action(‘setup_theme‘, ‘bsp_theme_check’);
to
add_action(‘after_setup_theme‘, ‘bsp_theme_check’);
You’ll need to do this manually until the developer fixes the issue.WordPress core is now stricter (since version 6.7) about when theme functions and text domains can be loaded.
I’d like to upvote this question. We’re rebuilding our site and we have no idea if this is even in use on any of our current pages.
Forum: Plugins
In reply to: [Payment Gateway for PayPal on WooCommerce] glitch when there’s a $0 checkoutseems to be working perfectly now. thank you.
Forum: Plugins
In reply to: [Payment Gateway for PayPal on WooCommerce] glitch when there’s a $0 checkoutthank you so much. I still had an issue with a class hiding the place order button
/woo-paypal-gateway/ppcp/public/css/ppcp-paypal-checkout-for-woocommerce-public.css?ver=9.0.48.wpg_place_order_hide { display: none !important; }
I was able to write some code that removed the class when the total was $0, but you might want to consider making that part of the core plugin as well.Unfortunately, this vulnerability was known for at least 2 months and hasn’t been fixed. I think we’re going to have to find a replacement.
Forum: Plugins
In reply to: [Hyperlink Group Block] Security noticeWe’ve been seeing that notice since February. I was really hoping this would fixed by now.
Forum: Plugins
In reply to: [Gravity Forms Zero Spam] forms being marked spam that aren’t spamironically, the zero spam plugin started flagging the emails as spam after honeypot was turned off for the same reason, none of the forms were sending because they were flagged as spam and we’re not sure why.
turned out our client does have a pro license and we unsubscribed the webhooks. it seems like there really should be a solution for the free version.
- This reply was modified 1 year, 1 month ago by dsawyers.
Yes, I saw that solution on another thread, but this is the free version, and the setting isn’t available.
I updated the plugin, I’ll let you know if we see any more alerts.
Thank you, we updated the test site to 9.0.1 and we successfully processed a PayPal and PayPal Credit Card Payments checkout.
We updated our staging site and tested it with version 9.0 and still get the error. We have a variable product (and the variation names are long), not sure if that makes a difference.
/purchase_units/@reference_id==’wc_order_hxWwC1c8Zj3rK’/items/0/name The value of a field is either too short or too long.- This reply was modified 1 year, 3 months ago by dsawyers.
Forum: Plugins
In reply to: [WP Docs] Demos brokenDemos are still broken.
you don’t have any advice on what BNFW function I can call from a custom script to trigger that notification?
it looks like the rest API doesn’t trigger certain function (like save_post), but I can create an action that triggers on rest_insert. I just haven’t figured out the right action to call the notification.