iugoau
Forum Replies Created
-
Sorry that was a typo – this is for Groundhogg.
Mailgun is listed as supported however the missing integration for mailgun bounce reporting is an issue. Other options such as wooninja add ons dont actually cover the requirement of receiving bounce reports to the mailbox or to the GH reporting dashboard when mailgun is the sending service provider.Hi Liton ,
Thank you for responding!
We have disabled this plugin. One more issue we are still facing is with the Event Calendar. We are not able to edit and save the event date. We are trying to update it to future date but its not saving. Could this issue be related to Adminify ?
Forum: Plugins
In reply to: [WooCommerce] Checkout Page Requesting Card Details for Free ProductHi Jonayad,
I think this should be handled at the WooCommerce level, as we got this reply from the Events Calendar support :
Since you’re offering both free and paid tickets, it makes sense to keep Stripe and WooCommerce enabled. In that case, switching to Tickets Commerce or disabling payment methods isn’t really a viable option.
That said, the behavior you’re seeing, where WooCommerce asks for payment details even when the cart total is $0, does appear to be inherent to WooCommerce itself.
Unfortunately, since WooCommerce controls the checkout process, it’s outside the scope of what we can directly change on our end. With Tickets Commerce, which is our native system, this doesn’t happen; free tickets skip the payment details entirely.
As a potential workaround, you can try adding the following snippet to your site. It tells WooCommerce to skip the payment step if the cart total is zero:add_filter( 'woocommerce_cart_needs_payment', function ( $needs_payment, $cart ) { if ( $cart && 0 == $cart->get_total() ) { return false; } return $needs_payment; }, 10, 2 );Forum: Plugins
In reply to: [WooCommerce] Checkout Page Requesting Card Details for Free ProductHi Team,
This is the Pastebin link: https://pastebin.com/Y7XBTRgc
Product Link :https://ifpa.com.au/event/investment-insight-series-ep8/
Forum: Plugins
In reply to: [The Events Calendar] Issue while saving pagesPlease re-open this thread we’re seeing the same error.
For us its happening on requests to the WP Rest API, e.g. /wp-json/wp/v2/
2025/04/22 05:16:22 [error] 95434#95434: *276129 FastCGI sent in stderr: “PHP message: PHP Fatal error: Uncaught TEC\Common\Exceptions\Not_Bound_Exception: Error while making tec.rest-v1.endpoints.single-event: error while making tec.rest-v1.endpoints.single-event: nothing is bound to the ‘tec.rest-v1.endpoints.single-event’ id and it’s not an existing or instantiable class. in public/wp-content/plugins/event-tickets/common/src/Common/Contracts/Container.php:28
Stack trace:
#0 public/wp-content/plugins/event-tickets/common/vendor/vendor-prefixed/lucatume/di52/src/Container.php(267): TEC\Common\Contracts\Container->get(‘TEC\\Event_Autom…’)
#1 public/wp-content/plugins/events-calendar-pro/src/Tribe/Integrations/Event_Automator/Power_Automate_Provider.php(133): TEC\Common\lucatume\DI52\Container->make(‘TEC\\Event_Autom…’)
Forum: Fixing WordPress
In reply to: Issue with Groundhogg Search in Top MenuThanks !
Could you please update the code as it’s happening on every site and not showing the products in the admin panel?
Forum: Plugins
In reply to: [WooCommerce] Schedule Sale Price Not Working ProperlyHi Team,
I have updated the plugins but still the ticket price is showing sale price not the regular price on frontend.- This reply was modified 1 year, 9 months ago by iugoau.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Schedule Sale Price – Not workingHi Shameem, I created the new thread here.
https://ww.wp.xz.cn/support/topic/schedule-sale-price-not-working-properly/#new-topic-0Forum: Plugins
In reply to: [WooCommerce] WooCommerce Schedule Sale Price – Not workingHi,
I am currently using the following versions of WordPress and WooCommerce:
- WooCommerce Version: 8.9.3
- WordPress Version: 6.6.1
I have encountered an issue where the sale price schedule end date for a product was set to 2024-08-01. Despite this, the sale price is still being displayed on the front end of the website. Could you please assist me in resolving this issue? It seems that the sale price is not expiring as expected.
- This reply was modified 1 year, 10 months ago by iugoau.
Forum: Plugins
In reply to: [Campaign Monitor Forms by Optin Cat] php 8.0 or 8.1 compatibleHowdy,
Further to the above, it looks like the plugin should probably be using the WP provided JSON class instead? The plugin’s class seems to be a copy from an older version of WP.
In
campaign-monitor-wp/providers/campaignmonitor/campaignmonitor/class/serialisation.php:Instead of –
if (!class_exists('Services_JSON', false)) { require_once dirname(__FILE__).'/services_json.php'; }It could be –
if ( ! class_exists( 'Services_JSON' ) ) { require_once ABSPATH . '/wp-includes/class-json.php'; }(This whole class is actually marked deprecated since WP 5.3.0 in favour of the built-in PHP functions,
json_encodeandjson_decode.)A developer could optionally circumvent the
Array and string offset access syntax with curly braces is no longer supportederror by adding the following to a custom plugin (or a must use plugin):$class_file = ABSPATH . '/wp-includes/class-json.php'; if ( file_exists( $class_file ) ) { require_once $class_file; }This would ensure that WP’s version of the class is always loaded instead (though it might trigger a bunch of WP deprecation notices)