Cealin
Forum Replies Created
-
For us it appears the problem actually is a delay. So after more than an hour the webhook fires and order goes to paid.
Since an hour ago we get this problem as well. Successful payments at Mollie, but WooCommerce orders stay at Pending payment status. WIth order notification only giving Payment attempt started.
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Order not updating / Solution foundThis could be a problem as well https://help.mollie.com/hc/en-us/articles/213470829-Which-IP-addresses-does-Mollie-use
Cloudflare could also give problems for some.Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Order not updating / Solution foundThank you for this. This indeed is a serious problem Mollie has to fix.
Forum: Plugins
In reply to: [Menu Caching] PHP Fatal errorAfter changing PHP version form 7.4 to 8.3 I also get this error when attempting to flush WP Rocket cache:
Fatal error: Uncaught Error: call_user_func_array(): Argument #1 ($callback) must be a valid callback, class Wp_Menu_Caching_Admin does not have a method "dc_purge_all_menu_html_transients"
in /var/www/royallook/public_html/wp-includes/class-wp-hook.php on line 326
Call stack:
WP_Hook::apply_filters()
wp-includes/class-wp-hook.php:348
WP_Hook::do_action()
wp-includes/plugin.php:517
do_action()
wp-content/plugins/wp-rocket/inc/functions/files.php:883
rocket_clean_domain()
wp-content/plugins/wp-rocket/inc/common/purge.php:470
do_admin_post_rocket_purge_cache()
wp-includes/class-wp-hook.php:324
WP_Hook::apply_filters()
wp-includes/class-wp-hook.php:348
WP_Hook::do_action()
wp-includes/plugin.php:517
do_action()
wp-admin/admin-post.php:85Any idea how to fix? π
Kind regards
Sadly the solution doesn’t work. There is only WooPayments active for me on the ‘Paymentsβ tab. iDeal is activated inside there but cannot be moved.
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Javascript errorHello Damian,
Thanks for the fast reply! There were indeed such optimizations. I copied the site to a testing environment, removed all other plugins, activated WordPress default 2020 theme. Still got the error.
I reverted back to 1.9.x.x version, which still works properly.
Kind regards
Forgot to mention, in another topic I saw it the other way around. I would like to do the opposite, using the invoice number as order number:
/** * Format order number with invoice number settings */ add_filter( 'wpo_wcpdf_invoice_number', 'wpo_wcpdf_format_invoice_number', 20, 4 ); function wpo_wcpdf_format_invoice_number( $invoice_number, $order_number, $order_id, $order_date ) { // We want to use the order number as invoice number! $invoice_number = ltrim($order_number, '#'); // get format settings $template_settings = get_option('wpo_wcpdf_template_settings'); $formats['prefix'] = isset($template_settings['invoice_number_formatting_prefix'])?$template_settings['invoice_number_formatting_prefix']:''; $formats['suffix'] = isset($template_settings['invoice_number_formatting_suffix'])?$template_settings['invoice_number_formatting_suffix']:''; $formats['padding'] = isset($template_settings['invoice_number_formatting_padding'])?$template_settings['invoice_number_formatting_padding']:''; // Replacements $order_year = date_i18n( 'Y', strtotime( $order_date ) ); $order_month = date_i18n( 'm', strtotime( $order_date ) ); foreach ($formats as $key => $value) { $value = str_replace('[order_year]', $order_year, $value); $value = str_replace('[order_month]', $order_month, $value); $formats[$key] = $value; } // Padding - minimum of 3 for safety if ( ctype_digit( (string)$formats['padding'] ) && $formats['padding'] > 3 ) { $invoice_number = sprintf('%0'.$formats['padding'].'d', $invoice_number); } $formatted_invoice_number = $formats['prefix'] . $invoice_number . $formats['suffix'] ; return $formatted_invoice_number; }Found the problem! Jquery got enqueued in functions.php. Removing this enqueue fixed my problem. Hope this can help somebody else π
I found out that the problem is the theme. But I cannot update or replace this theme. How to make it work for a theme? π
Also, the following error appeared: Uncaught TypeError: $(…).tabSlideOut is not a function
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] No admin email with new orderHello Ewout,
Thanks for your reply. There was no email at all. I fixed the problem, however! Something was wrong with WordPress sending emails. I installed WP-Mail-SMTP and changed admin mails to be sent from my Gmail account instead of through WordPress. Now the emails arrive perfectly!Forum: Plugins
In reply to: [Sequential Order Numbers for WooCommerce] No admin email with new orderWoops, you are right, I mentioned the wrong plugin. Thanks for your answer :).
Forum: Plugins
In reply to: [Easy Portfolio] How to sort the portfolio category order issueForum: Fixing WordPress
In reply to: Static Front Page https/ssl mixed content errorsThanks for the reply, will try your suggestion!
I wonder why if that page is not set as the Static Home Page, all images do load correctly as https?
Forum: Fixing WordPress
In reply to: Javascript add if width screenThanks for the quick and useful responses! Now I understand why i ended up with a blank page π
I will look into using CSS to control the amount of products showed per row.
The website is http://www.hildegardwinkel.nl by th way :).