stresslessweb
Forum Replies Created
-
Forum: Plugins
In reply to: [Event Tickets and Registration] Webhooks won’t validateI have the same issue.
I see the following error in the browser console:
webhooks.min.js?ver=5.5.8:11 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'post')
at obj.initiateValidation (webhooks.min.js?ver=5.5.8:11:1307)
at obj.onSigningFieldChange (webhooks.min.js?ver=5.5.8:11:2149)
at HTMLInputElement.dispatch (jquery.min.js?ver=3.6.1:2:43064)
at y.handle (jquery.min.js?ver=3.6.1:2:41048)I added a breakpoint at the point where it fails (
return await tribe.ky.post(ajaxurl, args).json()
) and inspected the “tribe’ object – it does not have a tribe.ky property – it is undefined.PHP – 7.4.33
WordPress – 6.1.1
The Events Calendar – 6.0.10
Event Tickets – 5.5.8
Theme – BuddyBoss 3.0.0- This reply was modified 1 year, 8 months ago by stresslessweb.
I am experiencing the same issue. I too “fixed” it by adding a function in a custom function:
add_action('plugins_loaded', function(){ if (!function_exists('bp_registration_options_admin_footer')) { function bp_registration_options_admin_footer() { error_log("Fix: undefined function called 'bp_registration_options_admin_footer'"); } } });
Forum: Plugins
In reply to: [WooCommerce] Stop customer registration spamI’m having the same kind of problem
Was there any resolution to this isuse?Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Does not work with eMemberHere’s is what I figured out. If the admin user is a member in eMember then that admin user will not retain the “BackWPup Admin” role.
Either remove a the admin user from eMember or create a new admin user in WP but Do Not add him to eMember.
Forum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials] Preview Testimonial not workingNo that doesn’t work. I tried that many times before. And I just tried it again.
Forum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials] Preview Testimonial not workingForum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials] Preview Testimonial not workingHi Travis I sent you an email at [email address moderated – let’s not make the spam bots lives easier, eh?]
Forum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials] Preview Testimonial not workingWell that didn’t work. All the testimonials are published. Now I get 404 error
Forum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials] jQuery Conflict with other pluginsAnother conflict I found was with WooCommerce.
The Checkout page in WooCommerce loads the Order Details (below the Billing Address) via AJAX.
The Order Details section was blank due to a failed AJAX call.Unchecking the “Load JavaScript in the footer?” option fixed.
Thanks to this thread which pointed me to the solution.
Posting it here in case someone else encounters this issue.