supervinnie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Find duplicates in PhpMyadmin MysqlMaybe I underestimated myself. I managed to achieve the following.
Original entry:
CREATE TABLEwp_posts` (
IDbigint(20) unsigned NOT NULL AUTO_INCREMENT,
post_authorbigint(20) unsigned NOT NULL DEFAULT ‘0’,
post_datedatetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’,
post_date_gmtdatetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’,
post_contentlongtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
post_titletext COLLATE utf8mb4_unicode_520_ci NOT NULL,
post_excerpttext COLLATE utf8mb4_unicode_520_ci NOT NULL,
post_statusvarchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ‘publish’,
comment_statusvarchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ‘open’,
ping_statusvarchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ‘open’,
post_passwordvarchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ”,
post_namevarchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ”,
to_pingtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
pingedtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
post_modifieddatetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’,
post_modified_gmtdatetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’,
post_content_filteredlongtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
post_parentbigint(20) unsigned NOT NULL DEFAULT ‘0’,
guidvarchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ”,
menu_orderint(11) NOT NULL DEFAULT ‘0’,
post_typevarchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ‘post’,
post_mime_typevarchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ”,
comment_countbigint(20) NOT NULL DEFAULT ‘0’,
PRIMARY KEY (ID),
KEYpost_name(post_name(191)),
KEYtype_status_date(post_type,post_status,post_date,ID),
KEYpost_parent(post_parent),
KEYpost_author(post_author)
) ENGINE=InnoDB AUTO_INCREMENT=7151 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci`The new entry after some editing:
CREATE TABLEwp_posts` (
IDbigint(20) unsigned NOT NULL AUTO_INCREMENT,
post_authorbigint(20) unsigned NOT NULL DEFAULT ‘0’,
post_datedatetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’,
post_date_gmtdatetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’,
post_contentlongtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
post_titletext COLLATE utf8mb4_unicode_520_ci NOT NULL,
post_excerpttext COLLATE utf8mb4_unicode_520_ci NOT NULL,
post_statusvarchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ‘publish’,
comment_statusvarchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ‘open’,
ping_statusvarchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ‘open’,
post_passwordvarchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ”,
post_namevarchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ”,
to_pingtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
pingedtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
post_modifieddatetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’,
post_modified_gmtdatetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’,
post_content_filteredlongtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
post_parentbigint(20) unsigned NOT NULL DEFAULT ‘0’,
guidvarchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ”,
menu_orderint(11) NOT NULL DEFAULT ‘0’,
post_typevarchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ‘post’,
post_mime_typevarchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ”,
comment_countbigint(20) NOT NULL DEFAULT ‘0’,
PRIMARY KEY (ID),
KEYpost_author(post_author),
KEYpost_name(post_name(191)),
KEYpost_parent(post_parent),
KEYtype_status_date(post_type,post_status,post_date,ID) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=7408 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci`Everything seems to be present. The only difference is the order of the items. Does that matter?
Forum: Fixing WordPress
In reply to: Find duplicates in PhpMyadmin MysqlContinueing on the subject, I have found a difference in tables that is too big for me to solve. Would you mind if I put down my question for help here?
In the original database the wp_posts table returns:
TransIP MySQL/mysterymountain2022_nl_wordpress/ https://mysql.transip.nl/db_sql.php?db=mysterymountain2022_nl_wordpress Uw SQL-query is succesvol uitgevoerd. SHOW CREATE TABLE wp_posts wp_posts CREATE TABLE <code>wp_posts</code> ( <code>ID</code> bigint(20) unsigned NOT NULL AUTO_INCREMENT, <code>post_author</code> bigint(20) unsigned NOT NULL DEFAULT '0', <code>post_date</code> datetime NOT NULL DEFAULT '0000-00-00 00:00:00', <code>post_date_gmt</code> datetime NOT NULL DEFAULT '0000-00-00 00:00:00', <code>post_content</code> longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, <code>post_title</code> text COLLATE utf8mb4_unicode_520_ci NOT NULL, <code>post_excerpt</code> text COLLATE utf8mb4_unicode_520_ci NOT NULL, <code>post_status</code> varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish', <code>comment_status</code> varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', <code>ping_status</code> varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', <code>post_password</code> varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', <code>post_name</code> varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', <code>to_ping</code> text COLLATE utf8mb4_unicode_520_ci NOT NULL, <code>pinged</code> text COLLATE utf8mb4_unicode_520_ci NOT NULL, <code>post_modified</code> datetime NOT NULL DEFAULT '0000-00-00 00:00:00', <code>post_modified_gmt</code> datetime NOT NULL DEFAULT '0000-00-00 00:00:00', <code>post_content_filtered</code> longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, <code>post_parent</code> bigint(20) unsigned NOT NULL DEFAULT '0', <code>guid</code> varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', <code>menu_order</code> int(11) NOT NULL DEFAULT '0', <code>post_type</code> varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post', <code>post_mime_type</code> varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', <code>comment_count</code> bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (<code>ID</code>), KEY <code>post_name</code> (<code>post_name</code>(191)), KEY <code>type_status_date</code> (<code>post_type</code>,<code>post_status</code>,<code>post_date</code>,<code>ID</code>), KEY <code>post_parent</code> (<code>post_parent</code>), KEY <code>post_author</code> (<code>post_author</code>) ) ENGINE=InnoDB AUTO_INCREMENT=7151 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ciBut the “new” database returns this:
TransIP MySQL/mysterymountain_nl_mysterymountain2022_nl_wordpress/ https://mysql.transip.nl/db_sql.php?db=mysterymountain_nl_mysterymountain2022_nl_wordpress Uw SQL-query is succesvol uitgevoerd. SHOW CREATE TABLE wp_posts wp_posts CREATE TABLE <code>wp_posts</code> ( <code>ID</code> bigint(20) unsigned NOT NULL AUTO_INCREMENT, <code>post_author</code> bigint(20) unsigned NOT NULL DEFAULT '0', <code>post_date</code> datetime NOT NULL DEFAULT '0000-00-00 00:00:00', <code>post_date_gmt</code> datetime NOT NULL DEFAULT '0000-00-00 00:00:00', <code>post_content</code> longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, <code>post_title</code> text COLLATE utf8mb4_unicode_520_ci NOT NULL, <code>post_excerpt</code> text COLLATE utf8mb4_unicode_520_ci NOT NULL, <code>post_status</code> varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish', <code>comment_status</code> varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', <code>ping_status</code> varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', <code>post_password</code> varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', <code>post_name</code> varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', <code>to_ping</code> text COLLATE utf8mb4_unicode_520_ci NOT NULL, <code>pinged</code> text COLLATE utf8mb4_unicode_520_ci NOT NULL, <code>post_modified</code> datetime NOT NULL DEFAULT '0000-00-00 00:00:00', <code>post_modified_gmt</code> datetime NOT NULL DEFAULT '0000-00-00 00:00:00', <code>post_content_filtered</code> longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, <code>post_parent</code> bigint(20) unsigned NOT NULL DEFAULT '0', <code>guid</code> varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', <code>menu_order</code> int(11) NOT NULL DEFAULT '0', <code>post_type</code> varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post', <code>post_mime_type</code> varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', <code>comment_count</code> bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (<code>ID</code>), KEY <code>ID</code> (<code>ID</code>), KEY <code>post_author</code> (<code>post_author</code>), KEY <code>post_date</code> (<code>post_date</code>), KEY <code>post_status</code> (<code>post_status</code>), KEY <code>post_name</code> (<code>post_name</code>(191)), KEY <code>post_parent</code> (<code>post_parent</code>), KEY <code>post_type</code> (<code>post_type</code>) ) ENGINE=InnoDB AUTO_INCREMENT=7402 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ciWhen you put these results in https://text-compare.com/
You can see how:
comment_countbigint(20) NOT NULL DEFAULT ‘0’,
PRIMARY KEY (ID),
KEYpost_name(post_name(191)),
KEYtype_status_date(post_type,post_status,post_date,ID),
KEYpost_parent(post_parent),
KEYpost_author(post_author)`
Differs greatly from:
comment_countbigint(20) NOT NULL DEFAULT ‘0’,
PRIMARY KEY (ID),
KEYID(ID),
KEYpost_author(post_author),
KEYpost_date(post_date),
KEYpost_status(post_status),
KEYpost_name(post_name(191)),
KEYpost_parent(post_parent),
KEYpost_type(post_type)`And I have not been able to figure out how to correct this….
Forum: Fixing WordPress
In reply to: Find duplicates in PhpMyadmin MysqlThanks for the help.
I also agree about the bad service. But I am one of 500 employees in a large company and the big boss isn’t gonna listen to my complaint about this small issue.
So, we just fix it and hope it won’t happen again.Checked the table again for duplicates and ran your query. Then ran your previous query with the result:
(I tried to mark the differences with the output from the original database with ****)CREATE TABLEwp_options` (
option_idbigint(20) unsigned NOT NULL AUTO_INCREMENT,
option_namevarchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ”,
option_valuelongtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
autoloadvarchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ‘yes’,
PRIMARY KEY (option_id),
UNIQUE KEYoption_name(option_name)****USING BTREE****,
KEYautoload(autoload)
) ENGINE=InnoDB AUTO_INCREMENT=****10667**** DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci`I tried to Google wether these differences really matter. But from I can read the “auto increment” number is not really important, and the addition of “using btree” should affect the performance of the table.
Am I correct?- This reply was modified 3 years, 11 months ago by supervinnie.
- This reply was modified 3 years, 11 months ago by supervinnie.
- This reply was modified 3 years, 11 months ago by supervinnie.
Forum: Fixing WordPress
In reply to: Find duplicates in PhpMyadmin MysqlWell, the cleanup has been done. But i haven’t found yet how to set it to unique?
And to be honest there are many other tables to also check. They all had faults.
Forum: Fixing WordPress
In reply to: Find duplicates in PhpMyadmin MysqlI also ran your query in the original database, which never has given any problems.
CREATE TABLEwp_options` (
option_idbigint(20) unsigned NOT NULL AUTO_INCREMENT,
option_namevarchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ”,
option_valuelongtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
autoloadvarchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ‘yes’,
PRIMARY KEY (option_id),
UNIQUE KEYoption_name(option_name),
KEYautoload(autoload)
) ENGINE=InnoDB AUTO_INCREMENT=46258 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci`Forum: Fixing WordPress
In reply to: Find duplicates in PhpMyadmin MysqlIn fact, I’m 100% sure the database is a mess. We asked the hosting company to help us migrate a website and they mess it up bigtime. They simply refused to help in any way because they said they did their job: transfer the files (nobody ever anything about the integrity of the data….).
We have been able to fix most of the website, only thing left is that visitors can’t log in to their account via the front-end, only via wp-login.php (but this is for another topic probably).
To answer your query, the results it gave me was:
CREATE TABLEwp_options` (
option_idbigint(20) unsigned NOT NULL AUTO_INCREMENT,
option_namevarchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ”,
option_valuelongtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
autoloadvarchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ‘yes’,
PRIMARY KEY (option_id),
KEYoption_name(option_name),
KEYautoload(autoload)
) ENGINE=InnoDB AUTO_INCREMENT=9129 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci`I have been mannually going through every table in the database, comparing it with the original and trying to copy those settings. At least it helped me to get the website working for 90% again.
Forum: Fixing WordPress
In reply to: Find duplicates in PhpMyadmin MysqlHi, I edited the query to this:
SELECT option_name, COUNT(option_name) FROM wp_options GROUP BY option_name HAVING COUNT(option_name) > 1;And I got the following result:
asl_debug_data 2 asl_options 2 charitable_settings 2 elementor_log 30 fs_accounts 2From what I can see, I indeed have this amount of duplicates.
But, is there also a way that I end up in the screen where I can make the edits? I’m happy I have a list of the duplicates, but this isn’t a clickable list, is that even possible via the query?Forum: Plugins
In reply to: [WooCommerce] WooCommerce keeps resetting the page templateThis error is the only one from the last few days. All the other ones are at lest 3 weeks old.
2022-05-05T05:20:20+00:00 DEBUG ideal: Start process_payment for order 31681 2022-05-05T05:20:20+00:00 DEBUG setUserMollieCustomerId: Stored Mollie customer ID cst_Dyx93xHFoL with user 647 2022-05-05T05:20:20+00:00 DEBUG getUserMollieCustomerId: Created a Mollie Customer (cst_Dyx93xHFoL) for WordPress user with ID 647 (live). 2022-05-05T05:20:20+00:00 DEBUG mollie_wc_gateway_ideal: Create Mollie payment object for order 31681 2022-05-05T05:20:20+00:00 DEBUG Order 31681 returnUrl: https://www.my webshop.nl/bestelling-ontvangen/bedankt-voor-je-bestelling/?key=wc_order_9goidB6LgFHs5&order_id=31681&utm_nooverride=1&filter_flag=onMollieReturn 2022-05-05T05:20:20+00:00 DEBUG Order 31681 webhookUrl: https://www.my webshop.nl/wc-api/mollie_wc_gateway_ideal?order_id=31681&key=wc_order_9goidB6LgFHs5&filter_flag 2022-05-05T05:20:20+00:00 DEBUG Creating payment object: type Order, first try creating a Mollie Order. 2022-05-05T05:20:20+00:00 DEBUG {"amount":{"currency":"EUR","value":"85.30"},"redirectUrl":"https:\/\/www.my webshop.nl\/bestelling-ontvangen\/bedankt-voor-je-bestelling\/?key=wc_order_9goidB6LgFHs5&order_id=31681&utm_nooverride=1&filter_flag=onMollieReturn","webhookUrl":"https:\/\/www.my webshop.nl\/wc-api\/mollie_wc_gateway_ideal?order_id=31681&key=wc_order_9goidB6LgFHs5&filter_flag","method":"ideal","payment":{"issuer":"ideal_ABNANL2A","customerId":"cst_Dyx93xHFoL"},"locale":"nl_NL","metadata":{"order_id":31681,"order_number":"CCNL-1855"},"orderNumber":"CCNL-1855"} 2022-05-05T05:20:21+00:00 DEBUG {"resource":"order","id":"ord_b7ko1y","profileId":"pfl_c3nyQaFKfq","mode":"live","amount":{"value":"85.30","currency":"EUR"},"amountCaptured":null,"amountRefunded":null,"status":"created","billingAddress":{"streetAndNumber":"Duinslag 26","postalCode":"2554BS","city":"'s-Gravenhage","country":"NL","givenName":"Ce","familyName":"Hempenius","email":"[email protected]"},"consumerDateOfBirth":null,"orderNumber":"CCNL-1855","shippingAddress":{"streetAndNumber":"Duinslag 26","postalCode":"2554BS","city":"'s-Gravenhage","country":"NL","givenName":"Ce","familyName":"Hempenius","email":"[email protected]"},"method":"ideal","locale":"nl_NL","metadata":{"order_id":31681,"order_number":"CCNL-1855"},"isCancelable":false,"webhookUrl":"https:\/\/www.my webshop.nl\/wc-api\/mollie_wc_gateway_ideal?order_id=31681&key=wc_order_9goidB6LgFHs5&filter_flag","redirectUrl":"https:\/\/www.my webshop.nl\/bestelling-ontvangen\/bedankt-voor-je-bestelling\/?key=wc_order_9goidB6LgFHs5&order_id=31681&utm_nooverride=1&filter_flag=onMollieReturn","createdAt":"2022-05-05T05:20:20+00:00","expiresAt":"2022-06-02T05:20:20+00:00","expiredAt":null,"paidAt":null,"authorizedAt":null,"canceledAt":null,"completedAt":null,"lines":[{"resource":"orderline","id":"odl_1.7rs1b8","orderId":"ord_b7ko1y","name":"Solution Finish - Black Trim Restorer - 355ml - Plastic hersteller","sku":"ccnl-ACBCC12-x","type":"physical","status":"created","metadata":{"order_item_id":9229},"isCancelable":false,"quantity":1,"quantityShipped":0,"amountShipped":{"value":"0.00","currency":"EUR"},"quantityRefunded":0,"amountRefunded":{"value":"0.00","currency":"EUR"},"quantityCanceled":0,"amountCanceled":{"value":"0.00","currency":"EUR"},"shippableQuantity":0,"refundableQuantity":0,"cancelableQuantity":0,"unitPrice":{"value":"43.95","currency":"EUR"},"vatRate":"21.00","vatAmount":{"value":"7.63","currency":"EUR"},"totalAmount":{"value":"43.95","currency":"EUR"},"createdAt":"2022-05-05T05:20:20+00:00"},{"resource":"orderline","id":"odl_1.e01bme","orderId":"ord_b7ko1y","name":"CCNL - Nitril Handschoen - 4 paar","sku":"ccnl-EURGL603130-x","type":"physical","status":"created","metadata":{"order_item_id":9230},"isCancelable":false,"quantity":1,"quantityShipped":0,"amountShipped":{"value":"0.00","currency":"EUR"},"quantityRefunded":0,"amountRefunded":{"value":"0.00","currency":"EUR"},"quantityCanceled":0,"amountCanceled":{"value":"0.00","currency":"EUR"},"shippableQuantity":0,"refundableQuantity":0,"cancelableQuantity":0,"unitPrice":{"value":"1.90","currency":"EUR"},"vatRate":"21.00","vatAmount":{"value":"0.33","currency":"EUR"},"totalAmount":{"value":"1.90","currency":"EUR"},"createdAt":"2022-05-05T05:20:20+00:00"},{"resource":"orderline","id":"odl_1.k3asug","orderId":"ord_b7ko1y","name":"CCNL - Foam Applicator Borstel - 1 stuk - Borstel","sku":"ccnl-foamapplborst","type":"physical","status":"created","metadata":{"order_item_id":9231},"isCancelable":false,"quantity":2,"quantityShipped":0,"amountShipped":{"value":"0.00","currency":"EUR"},"quantityRefunded":0,"amountRefunded":{"value":"0.00","currency":"EUR"},"quantityCanceled":0,"amountCanceled":{"value":"0.00","currency":"EUR"},"shippableQuantity":0,"refundableQuantity":0,"cancelableQuantity":0,"unitPrice":{"value":"2.49","currency":"EUR"},"vatRate":"21.00","vatAmount":{"value":"0.86","currency":"EUR"},"totalAmount":{"value":"4.98","currency":"EUR"},"createdAt":"2022-05-05T05:20:20+00:00"},{"resource":"orderline","id":"odl_1.q6kg3e","orderId":"ord_b7ko1y","name":"Klin Korea - Buffing King - 45x38 - Microvezeldoek","sku":"ccnl-KLIN-3215D-x","type":"physical","status":"created","metadata":{"order_item_id":9232},"isCancelable":false,"quantity":2,"quantityShipped":0,"amountShipped":{"value":"0.00","currency":"EUR"},"quantityRefunded":0,"amountRefunded":{"value":"0.00","currency":"EUR"},"quantityCanceled":0,"amountCanceled":{"value":"0.00","currency":"EUR"},"shippableQuantity":0,"refundableQuantity":0,"cancelableQuantity":0,"unitPrice":{"value":"6.99","currency":"EUR"},"vatRate":"21.00","vatAmount":{"value":"2.43","currency":"EUR"},"totalAmount":{"value":"13.98","currency":"EUR"},"createdAt":"2022-05-05T05:20:20+00:00"},{"resource":"orderline","id":"odl_1.wnkd7w","orderId":"ord_b7ko1y","name":"Dodo Juice - Release the Grease - 1000ml - Ontvetter","sku":"ccnl-DJRG10S","type":"physical","status":"created","metadata":{"order_item_id":9233},"isCancelable":false,"quantity":1,"quantityShipped":0,"amountShipped":{"value":"0.00","currency":"EUR"},"quantityRefunded":0,"amountRefunded":{"value":"0.00","currency":"EUR"},"quantityCanceled":0,"amountCanceled":{"value":"0.00","currency":"EUR"},"shippableQuantity":0,"refundableQuantity":0,"cancelableQuantity":0,"unitPrice":{"value":"18.00","currency":"EUR"},"vatRate":"21.00","vatAmount":{"value":"3.12","currency":"EUR"},"totalAmount":{"value":"18.00","currency":"EUR"},"createdAt":"2022-05-05T05:20:20+00:00"},{"resource":"orderline","id":"odl_1.389tum","orderId":"ord_b7ko1y","name":"Gratis gewone spraykop","sku":"ccnl-gratisgewonespraykop","type":"physical","status":"created","metadata":{"order_item_id":9234},"isCancelable":false,"quantity":1,"quantityShipped":0,"amountShipped":{"value":"0.00","currency":"EUR"},"quantityRefunded":0,"amountRefunded":{"value":"0.00","currency":"EUR"},"quantityCanceled":0,"amountCanceled":{"value":"0.00","currency":"EUR"},"shippableQuantity":0,"refundableQuantity":0,"cancelableQuantity":0,"unitPrice":{"value":"0.00","currency":"EUR"},"vatRate":"0.00","vatAmount":{"value":"0.00","currency":"EUR"},"totalAmount":{"value":"0.00","currency":"EUR"},"createdAt":"2022-05-05T05:20:20+00:00"},{"resource":"orderline","id":"odl_1.9bj4r4","orderId":"ord_b7ko1y","name":"CCNL - Foam Applicator - 4 stuks - Applicators","sku":"ccnl-foamapplicx4","type":"physical","status":"created","metadata":{"order_item_id":9235},"isCancelable":false,"quantity":1,"quantityShipped":0,"amountShipped":{"value":"0.00","currency":"EUR"},"quantityRefunded":0,"amountRefunded":{"value":"0.00","currency":"EUR"},"quantityCanceled":0,"amountCanceled":{"value":"0.00","currency":"EUR"},"shippableQuantity":0,"refundableQuantity":0,"cancelableQuantity":0,"unitPrice":{"value":"2.49","currency":"EUR"},"vatRate":"21.00","vatAmount":{"value":"0.43","currency":"EUR"},"totalAmount":{"value":"2.49","currency":"EUR"},"createdAt":"2022-05-05T05:20:20+00:00"},{"resource":"orderline","id":"odl_1.feslky","orderId":"ord_b7ko1y","name":"Verzending","sku":null,"type":"shipping_fee","status":"created","metadata":{"order_item_id":"9236"},"isCancelable":false,"quantity":1,"quantityShipped":0,"amountShipped":{"value":"0.00","currency":"EUR"},"quantityRefunded":0,"amountRefunded":{"value":"0.00","currency":"EUR"},"quantityCanceled":0,"amountCanceled":{"value":"0.00","currency":"EUR"},"shippableQuantity":0,"refundableQuantity":0,"cancelableQuantity":0,"unitPrice":{"value":"0.00","currency":"EUR"},"vatRate":"0.00","vatAmount":{"value":"0.00","currency":"EUR"},"totalAmount":{"value":"0.00","currency":"EUR"},"createdAt":"2022-05-05T05:20:20+00:00"}],"_links":{"self":{"href":"https:\/\/api.mollie.com\/v2\/orders\/ord_b7ko1y","type":"application\/hal+json"},"dashboard":{"href":"https:\/\/www.mollie.com\/dashboard\/org_3618234\/orders\/ord_b7ko1y","type":"text\/html"},"checkout":{"href":"https:\/\/www.mollie.com\/checkout\/order\/b7ko1y","type":"text\/html"},"documentation":{"href":"https:\/\/docs.mollie.com\/reference\/v2\/orders-api\/create-order","type":"text\/html"}},"_embedded":null,"shopperCountryMustMatchBillingCountry":false} 2022-05-05T05:20:21+00:00 DEBUG setUserMollieCustomerId: Stored Mollie customer ID cst_Dyx93xHFoL with user 647 2022-05-05T05:20:21+00:00 DEBUG ideal: Mollie payment object ord_b7ko1y (live) created for order 31681 2022-05-05T05:20:21+00:00 DEBUG For order 31681 redirect user to Mollie Checkout URL: https://www.mollie.com/checkout/order/b7ko1y 2022-05-05T05:20:52+00:00 DEBUG mollie_wc_gateway_ideal: Mollie payment object ord_b7ko1y (live) webhook call for order 31681. 2022-05-05T05:20:52+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrderService::orderNeedsPayment mollie_wc_gateway_ideal: Order 31681 orderNeedsPayment check: yes, order not previously processed by Mollie gateway. 2022-05-05T05:20:52+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrder::onWebhookPaid called for order 31681 2022-05-05T05:20:56+00:00 DEBUG Mollie\WooCommerce\Gateway\MolliePaymentGateway::getReturnRedirectUrlForOrder 31681: Determine what the redirect URL in WooCommerce should be. 2022-05-05T05:20:56+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrderService::orderNeedsPayment mollie_wc_gateway_ideal: Order 31681 orderNeedsPayment check: yes, order not previously processed by Mollie gateway. 2022-05-05T05:20:56+00:00 DEBUG Mollie\WooCommerce\Payment\PaymentModule::onMollieReturn: Redirect url on return order mollie_wc_gateway_ideal, order 31681: https://www.my webshop.nl/bestelling-ontvangen/bedankt-voor-je-bestelling/?key=wc_order_9goidB6LgFHs5&order_id=31681&utm_nooverride=1 2022-05-05T05:20:56+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrder::onWebhookPaid WooCommerce payment_complete() processed and returned to Mollie\WooCommerce\Payment\MollieOrder::onWebhookPaid for order 31681 2022-05-05T05:20:56+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrder::onWebhookPaid processing paid order via Mollie plugin fully completed for order 31681 2022-05-05T05:20:56+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrder::onWebhookPaid updated payment with webhook and metadata 2022-05-05T13:48:48+00:00 DEBUG ideal: Start process_payment for order 31682 2022-05-05T13:48:48+00:00 DEBUG mollie_wc_gateway_ideal: Create Mollie payment object for order 31682 2022-05-05T13:48:48+00:00 DEBUG Order 31682 returnUrl: https://www.my webshop.nl/bestelling-ontvangen/bedankt-voor-je-bestelling/?key=wc_order_wJbPMayHRKQhu&order_id=31682&utm_nooverride=1&filter_flag=onMollieReturn 2022-05-05T13:48:48+00:00 DEBUG Order 31682 webhookUrl: https://www.my webshop.nl/wc-api/mollie_wc_gateway_ideal?order_id=31682&key=wc_order_wJbPMayHRKQhu&filter_flag 2022-05-05T13:48:48+00:00 DEBUG Creating payment object: type Order, first try creating a Mollie Order. 2022-05-05T13:48:48+00:00 DEBUG {"amount":{"currency":"EUR","value":"22.45"},"redirectUrl":"https:\/\/www.my webshop.nl\/bestelling-ontvangen\/bedankt-voor-je-bestelling\/?key=wc_order_wJbPMayHRKQhu&order_id=31682&utm_nooverride=1&filter_flag=onMollieReturn","webhookUrl":"https:\/\/www.my webshop.nl\/wc-api\/mollie_wc_gateway_ideal?order_id=31682&key=wc_order_wJbPMayHRKQhu&filter_flag","method":"ideal","payment":{"issuer":"ideal_RABONL2U","customerId":null},"locale":"nl_NL","metadata":{"order_id":31682,"order_number":"CCNL-1856"},"orderNumber":"CCNL-1856"} 2022-05-05T13:48:48+00:00 DEBUG {"resource":"order","id":"ord_s1v3ws","profileId":"pfl_c3nyQaFKfq","mode":"live","amount":{"value":"22.45","currency":"EUR"},"amountCaptured":null,"amountRefunded":null,"status":"created","billingAddress":{"streetAndNumber":"Regulushof 7","postalCode":"3318TJ","city":"Dordrecht","country":"NL","givenName":"Jeffrey","familyName":"Kirchhoff","email":"[email protected]"},"consumerDateOfBirth":null,"orderNumber":"CCNL-1856","shippingAddress":{"streetAndNumber":"Regulushof 7","postalCode":"3318TJ","city":"Dordrecht","country":"NL","givenName":"Jeffrey","familyName":"Kirchhoff","email":"[email protected]"},"method":"ideal","locale":"nl_NL","metadata":{"order_id":31682,"order_number":"CCNL-1856"},"isCancelable":false,"webhookUrl":"https:\/\/www.my webshop.nl\/wc-api\/mollie_wc_gateway_ideal?order_id=31682&key=wc_order_wJbPMayHRKQhu&filter_flag","redirectUrl":"https:\/\/www.my webshop.nl\/bestelling-ontvangen\/bedankt-voor-je-bestelling\/?key=wc_order_wJbPMayHRKQhu&order_id=31682&utm_nooverride=1&filter_flag=onMollieReturn","createdAt":"2022-05-05T13:48:48+00:00","expiresAt":"2022-06-02T13:48:48+00:00","expiredAt":null,"paidAt":null,"authorizedAt":null,"canceledAt":null,"completedAt":null,"lines":[{"resource":"orderline","id":"odl_1.s2pjdq","orderId":"ord_s1v3ws","name":"CCNL - Plastic Krabber - 100 stuks","sku":"ccnl-plasticrazor","type":"physical","status":"created","metadata":{"order_item_id":9238},"isCancelable":false,"quantity":1,"quantityShipped":0,"amountShipped":{"value":"0.00","currency":"EUR"},"quantityRefunded":0,"amountRefunded":{"value":"0.00","currency":"EUR"},"quantityCanceled":0,"amountCanceled":{"value":"0.00","currency":"EUR"},"shippableQuantity":0,"refundableQuantity":0,"cancelableQuantity":0,"unitPrice":{"value":"17.49","currency":"EUR"},"vatRate":"21.00","vatAmount":{"value":"3.04","currency":"EUR"},"totalAmount":{"value":"17.49","currency":"EUR"},"createdAt":"2022-05-05T13:48:48+00:00"},{"resource":"orderline","id":"odl_1.y4q8r4","orderId":"ord_s1v3ws","name":"Verzending","sku":null,"type":"shipping_fee","status":"created","metadata":{"order_item_id":"9239"},"isCancelable":false,"quantity":1,"quantityShipped":0,"amountShipped":{"value":"0.00","currency":"EUR"},"quantityRefunded":0,"amountRefunded":{"value":"0.00","currency":"EUR"},"quantityCanceled":0,"amountCanceled":{"value":"0.00","currency":"EUR"},"shippableQuantity":0,"refundableQuantity":0,"cancelableQuantity":0,"unitPrice":{"value":"4.96","currency":"EUR"},"vatRate":"21.00","vatAmount":{"value":"0.86","currency":"EUR"},"totalAmount":{"value":"4.96","currency":"EUR"},"createdAt":"2022-05-05T13:48:48+00:00"}],"_links":{"self":{"href":"https:\/\/api.mollie.com\/v2\/orders\/ord_s1v3ws","type":"application\/hal+json"},"dashboard":{"href":"https:\/\/www.mollie.com\/dashboard\/org_3618234\/orders\/ord_s1v3ws","type":"text\/html"},"checkout":{"href":"https:\/\/www.mollie.com\/checkout\/order\/s1v3ws","type":"text\/html"},"documentation":{"href":"https:\/\/docs.mollie.com\/reference\/v2\/orders-api\/create-order","type":"text\/html"}},"_embedded":null,"shopperCountryMustMatchBillingCountry":false} 2022-05-05T13:48:48+00:00 DEBUG ideal: Mollie payment object ord_s1v3ws (live) created for order 31682 2022-05-05T13:48:48+00:00 DEBUG For order 31682 redirect user to Mollie Checkout URL: https://www.mollie.com/checkout/order/s1v3ws 2022-05-05T13:49:12+00:00 DEBUG mollie_wc_gateway_ideal: Mollie payment object ord_s1v3ws (live) webhook call for order 31682. 2022-05-05T13:49:12+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrderService::orderNeedsPayment mollie_wc_gateway_ideal: Order 31682 orderNeedsPayment check: yes, order not previously processed by Mollie gateway. 2022-05-05T13:49:12+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrder::onWebhookPaid called for order 31682 2022-05-05T13:49:15+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrder::onWebhookPaid WooCommerce payment_complete() processed and returned to Mollie\WooCommerce\Payment\MollieOrder::onWebhookPaid for order 31682 2022-05-05T13:49:15+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrder::onWebhookPaid processing paid order via Mollie plugin fully completed for order 31682 2022-05-05T13:49:15+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrder::onWebhookPaid updated payment with webhook and metadata 2022-05-05T13:49:19+00:00 DEBUG Mollie\WooCommerce\Gateway\MolliePaymentGateway::getReturnRedirectUrlForOrder 31682: Determine what the redirect URL in WooCommerce should be. 2022-05-05T13:49:19+00:00 DEBUG Mollie\WooCommerce\Payment\PaymentModule::onMollieReturn: Redirect url on return order mollie_wc_gateway_ideal, order 31682: https://www.my webshop.nl/bestelling-ontvangen/bedankt-voor-je-bestelling/?key=wc_order_wJbPMayHRKQhu&order_id=31682&utm_nooverride=1 2022-05-05T15:17:27+00:00 DEBUG Mollie\WooCommerce\Payment\PaymentModule::shipAndCaptureOrderAtMollie - 31680 - Try to process completed order for a potential capture at Mollie. 2022-05-05T15:17:27+00:00 DEBUG Mollie\WooCommerce\Payment\PaymentModule::shipAndCaptureOrderAtMollie - 31680 - Order successfully updated to shipped at Mollie, capture of funds underway. 2022-05-05T15:17:28+00:00 DEBUG mollie_wc_gateway_ideal: Mollie payment object ord_s9moqq (live) webhook call for order 31680. 2022-05-05T15:17:28+00:00 DEBUG Mollie\WooCommerce\Gateway\MolliePaymentGateway::handlePaidOrderWebhook - mollie_wc_gateway_ideal: Order 31680 does not need a payment by Mollie (payment ord_s9moqq). 2022-05-05T15:17:28+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrderService::processRefunds called for order 31680 / paymentord_s9moqq 2022-05-05T15:17:28+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrderService::processRefunds: No refunds to process for order 31680 / paymentord_s9moqq 2022-05-05T15:17:28+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrderService::processChargebacks called for order 31680 / payment ord_s9moqq 2022-05-05T15:17:28+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrderService::processChargebacks: No chargebacks to process for order 31680 / payment ord_s9moqq 2022-05-05T15:18:10+00:00 DEBUG Mollie\WooCommerce\Payment\PaymentModule::shipAndCaptureOrderAtMollie - 31682 - Try to process completed order for a potential capture at Mollie. 2022-05-05T15:18:10+00:00 DEBUG Mollie\WooCommerce\Payment\PaymentModule::shipAndCaptureOrderAtMollie - 31682 - Order successfully updated to shipped at Mollie, capture of funds underway. 2022-05-05T15:18:12+00:00 DEBUG Mollie\WooCommerce\Payment\PaymentModule::shipAndCaptureOrderAtMollie - 31681 - Try to process completed order for a potential capture at Mollie. 2022-05-05T15:18:12+00:00 DEBUG Mollie\WooCommerce\Payment\PaymentModule::shipAndCaptureOrderAtMollie - 31681 - Order successfully updated to shipped at Mollie, capture of funds underway. 2022-05-05T15:18:16+00:00 DEBUG mollie_wc_gateway_ideal: Mollie payment object ord_s1v3ws (live) webhook call for order 31682. 2022-05-05T15:18:16+00:00 DEBUG Mollie\WooCommerce\Gateway\MolliePaymentGateway::handlePaidOrderWebhook - mollie_wc_gateway_ideal: Order 31682 does not need a payment by Mollie (payment ord_s1v3ws). 2022-05-05T15:18:16+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrderService::processRefunds called for order 31682 / paymentord_s1v3ws 2022-05-05T15:18:16+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrderService::processRefunds: No refunds to process for order 31682 / paymentord_s1v3ws 2022-05-05T15:18:16+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrderService::processChargebacks called for order 31682 / payment ord_s1v3ws 2022-05-05T15:18:16+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrderService::processChargebacks: No chargebacks to process for order 31682 / payment ord_s1v3ws 2022-05-05T15:18:18+00:00 DEBUG mollie_wc_gateway_ideal: Mollie payment object ord_b7ko1y (live) webhook call for order 31681. 2022-05-05T15:18:18+00:00 DEBUG Mollie\WooCommerce\Gateway\MolliePaymentGateway::handlePaidOrderWebhook - mollie_wc_gateway_ideal: Order 31681 does not need a payment by Mollie (payment ord_b7ko1y). 2022-05-05T15:18:18+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrderService::processRefunds called for order 31681 / paymentord_b7ko1y 2022-05-05T15:18:18+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrderService::processRefunds: No refunds to process for order 31681 / paymentord_b7ko1y 2022-05-05T15:18:18+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrderService::processChargebacks called for order 31681 / payment ord_b7ko1y 2022-05-05T15:18:18+00:00 DEBUG Mollie\WooCommerce\Payment\MollieOrderService::processChargebacks: No chargebacks to process for order 31681 / payment ord_b7ko1y- This reply was modified 4 years ago by supervinnie.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce keeps resetting the page template### WordPress Environment ### WordPress address (URL): https://www.mywebshop.nl Site address (URL): https://www.mywebshop.nl WC Version: 6.4.1 REST API Version: ✔ 6.4.1 WC Blocks Version: ✔ 7.2.2 Action Scheduler Version: ✔ 3.4.0 WC Admin Version: ✔ 3.3.2 Log Directory Writable: ✔ WP Version: 5.9.3 WP Multisite: – WP Memory Limit: 10 GB WP Debug Mode: – WP Cron: ✔ Language: nl_NL External object cache: – ### Server Environment ### Server Info: Apache/2 PHP Version: 7.4.22 PHP Post Max Size: 256 MB PHP Time Limit: 1800 PHP Max Input Vars: 3000 cURL Version: 7.71.0 OpenSSL/1.1.1d SUHOSIN Installed: – MySQL Version: 10.3.24-MariaDB-cll-lve Max Upload Size: 16 MB Default Timezone is UTC: ✔ fsockopen/cURL: ✔ SoapClient: ✔ DOMDocument: ✔ GZip: ✔ Multibyte String: ✔ Remote Post: ✔ Remote Get: ✔ ### Database ### WC Database Version: 6.4.1 WC Database Prefix: wp_ Totale databasegrootte: 453.76MB Database datagrootte: 378.73MB Database index grootte: 75.03MB wp_woocommerce_sessions: Data: 0.34MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_downloadable_product_permissions: Data: 0.09MB + Index: 0.14MB + Engine InnoDB wp_woocommerce_order_items: Data: 1.52MB + Index: 0.19MB + Engine InnoDB wp_woocommerce_order_itemmeta: Data: 8.52MB + Index: 6.03MB + Engine InnoDB wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_actionscheduler_actions: Data: 0.23MB + Index: 0.27MB + Engine InnoDB wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_actionscheduler_logs: Data: 0.08MB + Index: 0.03MB + Engine InnoDB wp_adtribes_my_conversions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_aws_cache: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_aws_index: Data: 4.52MB + Index: 3.03MB + Engine InnoDB wp_cart_notices: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_commentmeta: Data: 0.05MB + Index: 0.03MB + Engine InnoDB wp_comments: Data: 5.52MB + Index: 2.19MB + Engine InnoDB wp_commercekit_searches: Data: 0.09MB + Index: 0.00MB + Engine InnoDB wp_commercekit_swatches_cache_count: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_commercekit_waitlist: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_commercekit_wishlist: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_commercekit_wishlist_items: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_cp_calculated_fields_form_discount_codes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_cp_calculated_fields_form_posts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_cp_calculated_fields_form_revision: Data: 0.27MB + Index: 0.00MB + Engine InnoDB wp_cp_calculated_fields_form_settings: Data: 0.11MB + Index: 0.00MB + Engine InnoDB wp_democracy_a: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_democracy_log: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wp_democracy_q: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_email_log: Data: 109.52MB + Index: 0.00MB + Engine InnoDB wp_ewwwio_images: Data: 4.52MB + Index: 4.03MB + Engine InnoDB wp_ewwwio_queue: Data: 0.08MB + Index: 0.05MB + Engine InnoDB wp_e_events: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_followup_coupons: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_followup_coupon_logs: Data: 0.06MB + Index: 0.05MB + Engine InnoDB wp_followup_customers: Data: 0.11MB + Index: 0.20MB + Engine InnoDB wp_followup_customer_carts: Data: 2.52MB + Index: 0.13MB + Engine InnoDB wp_followup_customer_notes: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_followup_customer_orders: Data: 0.09MB + Index: 0.05MB + Engine InnoDB wp_followup_email_coupons: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_followup_email_excludes: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wp_followup_email_logs: Data: 0.41MB + Index: 0.23MB + Engine InnoDB wp_followup_email_orders: Data: 4.52MB + Index: 0.67MB + Engine InnoDB wp_followup_email_order_coupons: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_followup_email_tracking: Data: 0.23MB + Index: 0.30MB + Engine InnoDB wp_followup_followup_history: Data: 17.52MB + Index: 0.22MB + Engine InnoDB wp_followup_order_categories: Data: 0.31MB + Index: 0.31MB + Engine InnoDB wp_followup_order_items: Data: 0.27MB + Index: 0.33MB + Engine InnoDB wp_followup_subscribers: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_followup_subscribers_to_lists: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_followup_subscriber_lists: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_indexnow_failed_submissions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_indexnow_passed_submissions: Data: 0.08MB + Index: 0.00MB + Engine InnoDB wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_mailpoet_custom_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_mailpoet_dynamic_segment_filters: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_mailpoet_feature_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_mailpoet_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_mailpoet_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_mailpoet_mapping_to_external_entities: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_mailpoet_newsletters: Data: 0.16MB + Index: 0.03MB + Engine InnoDB wp_mailpoet_newsletter_links: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wp_mailpoet_newsletter_option: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_mailpoet_newsletter_option_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_mailpoet_newsletter_posts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_mailpoet_newsletter_segment: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_mailpoet_newsletter_templates: Data: 4.52MB + Index: 0.00MB + Engine InnoDB wp_mailpoet_scheduled_tasks: Data: 0.11MB + Index: 0.09MB + Engine InnoDB wp_mailpoet_scheduled_task_subscribers: Data: 0.19MB + Index: 0.08MB + Engine InnoDB wp_mailpoet_segments: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_mailpoet_sending_queues: Data: 0.16MB + Index: 0.03MB + Engine InnoDB wp_mailpoet_settings: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_mailpoet_statistics_clicks: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_mailpoet_statistics_forms: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_mailpoet_statistics_newsletters: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_mailpoet_statistics_opens: Data: 0.02MB + Index: 0.09MB + Engine InnoDB wp_mailpoet_statistics_unsubscribes: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_mailpoet_statistics_woocommerce_purchases: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_mailpoet_stats_notifications: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_mailpoet_subscribers: Data: 0.11MB + Index: 0.20MB + Engine InnoDB wp_mailpoet_subscriber_custom_field: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_mailpoet_subscriber_ips: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_mailpoet_subscriber_segment: Data: 0.08MB + Index: 0.06MB + Engine InnoDB wp_mailpoet_user_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_mollie_pending_payment: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_mo_openid_linked_user: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_options: Data: 119.50MB + Index: 1.72MB + Engine InnoDB wp_opt_properties_float: Data: 0.05MB + Index: 0.03MB + Engine InnoDB wp_postmeta: Data: 41.56MB + Index: 12.03MB + Engine InnoDB wp_posts: Data: 6.52MB + Index: 0.66MB + Engine InnoDB wp_product_catmeta: Data: 0.05MB + Index: 0.00MB + Engine InnoDB wp_pum_subscribers: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_relevanssi: Data: 7.52MB + Index: 10.55MB + Engine InnoDB wp_relevanssi_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_relevanssi_stopwords: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_revslider_css: Data: 0.13MB + Index: 0.00MB + Engine InnoDB wp_revslider_css_bkp: Data: 0.13MB + Index: 0.00MB + Engine InnoDB wp_revslider_layer_animations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_revslider_layer_animations_bkp: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_revslider_navigations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_revslider_navigations_bkp: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_revslider_sliders: Data: 0.05MB + Index: 0.00MB + Engine InnoDB wp_revslider_sliders_bkp: Data: 0.08MB + Index: 0.00MB + Engine InnoDB wp_revslider_slides: Data: 0.05MB + Index: 0.00MB + Engine InnoDB wp_revslider_slides_bkp: Data: 0.11MB + Index: 0.00MB + Engine InnoDB wp_revslider_static_slides: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_revslider_static_slides_bkp: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_sfa_abandoned_carts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_sg_fblike_popup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_sg_html_popup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_sg_image_popup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_sg_popup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_sg_popup_addons: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_sg_popup_addons_connection: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_sg_popup_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_sg_shortCode_popup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_smush_dir_images: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_termmeta: Data: 0.38MB + Index: 0.33MB + Engine InnoDB wp_terms: Data: 0.31MB + Index: 0.28MB + Engine InnoDB wp_term_relationships: Data: 1.52MB + Index: 1.52MB + Engine InnoDB wp_term_taxonomy: Data: 1.52MB + Index: 0.83MB + Engine InnoDB wp_tm_taskmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_tm_tasks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_usermeta: Data: 1.52MB + Index: 0.42MB + Engine InnoDB wp_users: Data: 0.05MB + Index: 0.05MB + Engine InnoDB wp_wcpdf_invoice_number: Data: 0.08MB + Index: 0.00MB + Engine InnoDB wp_wcpdf_packing_slip_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wcs_payment_retries: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wc_admin_notes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wc_customer_lookup: Data: 0.14MB + Index: 0.11MB + Engine InnoDB wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_gpf_render_cache: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wc_order_bundle_lookup: Data: 0.11MB + Index: 0.13MB + Engine InnoDB wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_order_product_lookup: Data: 1.52MB + Index: 0.48MB + Engine InnoDB wp_wc_order_stats: Data: 0.19MB + Index: 0.16MB + Engine InnoDB wp_wc_order_tax_lookup: Data: 0.13MB + Index: 0.11MB + Engine InnoDB wp_wc_product_attributes_lookup: Data: 0.30MB + Index: 0.23MB + Engine InnoDB wp_wc_product_meta_lookup: Data: 0.08MB + Index: 0.09MB + Engine InnoDB wp_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_bundled_itemmeta: Data: 0.45MB + Index: 0.42MB + Engine InnoDB wp_woocommerce_bundled_items: Data: 0.05MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_gpf_google_taxonomy: Data: 1.52MB + Index: 0.00MB + Engine InnoDB wp_woocommerce_pinterest: Data: 0.08MB + Index: 0.05MB + Engine InnoDB wp_woocommerce_pinterest_boards_mapping: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_pinterest_google_categories_mapping: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_pinterest_google_product_categories: Data: 0.28MB + Index: 0.00MB + Engine InnoDB wp_woocommerce_subscription_downloads: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_woof_query_cache: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wpgdprc_access_requests: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wpgdprc_consents: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wpgdprc_delete_requests: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wpgdprc_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wpmailsmtp_debug_events: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wpmailsmtp_tasks_meta: Data: 0.06MB + Index: 0.00MB + Engine InnoDB wp_wpr_rucss_used_css: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_wps_hit: Data: 0.02MB + Index: 0.14MB + Engine InnoDB wp_wps_index: Data: 5.52MB + Index: 7.55MB + Engine InnoDB wp_wps_key: Data: 0.33MB + Index: 0.20MB + Engine InnoDB wp_wps_object_term: Data: 1.52MB + Index: 1.69MB + Engine InnoDB wp_wps_object_type: Data: 0.02MB + Index: 0.08MB + Engine InnoDB wp_wps_query: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wps_uri: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wps_user_agent: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wysija_campaign: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wysija_campaign_list: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wysija_custom_field: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wysija_email: Data: 0.23MB + Index: 0.00MB + Engine InnoDB wp_wysija_email_user_stat: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wysija_email_user_url: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wysija_form: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wysija_list: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wysija_queue: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wysija_subscriber_ips: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wysija_url: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wysija_url_mail: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wysija_user: Data: 0.06MB + Index: 0.02MB + Engine InnoDB wp_wysija_user_field: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wysija_user_history: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wysija_user_list: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yith_wcwl: Data: 0.09MB + Index: 0.02MB + Engine InnoDB wp_yith_wcwl_lists: Data: 0.11MB + Index: 0.34MB + Engine InnoDB wp_yith_ywrac_email_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_yoast_indexable: Data: 8.52MB + Index: 9.09MB + Engine InnoDB wp_yoast_indexable_hierarchy: Data: 1.52MB + Index: 1.25MB + Engine InnoDB wp_yoast_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_yoast_primary_term: Data: 0.06MB + Index: 0.03MB + Engine InnoDB wp_yoast_prominent_words: Data: 0.30MB + Index: 0.42MB + Engine InnoDB wp_yoast_seo_links: Data: 3.52MB + Index: 3.03MB + Engine InnoDB wp_yoast_seo_meta: Data: 1.52MB + Index: 0.00MB + Engine InnoDB ### Post Type Counts ### acf-field: 2 acf-field-group: 2 attachment: 1484 block: 1 bnfw_notification: 1 br_notice: 6 customize_changeset: 2 custom_css: 1 elementor_library: 77 event: 3 faq: 18 follow_up_email: 11 forum: 25 jetpack_migration: 2 mailpoet_page: 1 nav_menu_item: 123 oembed_cache: 59 page: 52 popup: 6 popup_theme: 9 porto_builder: 93 post: 249 product: 204 product-feed: 1 product_variation: 7 question_answer: 20 revision: 2 saswp: 3 shop_coupon: 286 shop_order: 1547 shop_order_refund: 22 shop_subscription: 18 sidebar: 1 tooltips: 1 user_request: 1 vc_grid_item: 1 vtprd-rule: 1 web-story: 1 wpcf7_contact_form: 4 wpsl_stores: 64 wysijap: 1 xlwcty_thankyou: 1 yith-wcbm-badge: 5 yith-wcgpf-feed: 1 yith_wcan_preset: 1 yuzo: 1 ywrac_cart: 178 ### Security ### Secure connection (HTTPS): ✔ Hide errors from visitors: ✔ ### Active Plugins (72) ### CAPTCHA 4WP: door WP White Security – 7.0.6.1 Akismet Anti-Spam: door Automattic – 4.2.3 Better Notifications for WP: door Made with Fuel – 1.8.11 Calculated Fields Form: door CodePeople – 1.1.84 Cart Notices for WooCommerce: door BeRocket – 3.5.7.3 Classic Editor: door WordPress Contributors – 1.6.2 Classic Widgets: door WordPress Contributors – 0.3 CommerceGurus Commercekit: door CommerceGurus – 2.0.2 Contact Form 7: door Takayuki Miyoshi – 5.5.6 Cookie Notice & Compliance for GDPR / CCPA: door Hu-manity.co – 2.2.3 Aangepaste bestelnummers voor WooCommerce: door Tyche Softwares – 1.3.4 Customer Reviews for WooCommerce: door CusRev – 4.38 Display Posts: door Bill Erickson – 3.0.2 Easy Table of Contents: door Magazine3 – 2.0.21 Ecommerce Social Login, Social Sharing by miniOrange: door miniOrange – 1.1.6 Elementor: door Elementor.com – 3.6.5 E-Mail Log: door Sudar – 2.4.8 Essential Addons for Elementor: door WPDeveloper – 5.1.1 EWWW Image Optimizer: door Exactly WWW – 6.5.1 Site Kit by Google: door Google – 1.73.0 GTranslate: door Translate AI Multilingual Solutions – 2.9.11 IndexNow: door Microsoft Bing – 1.0.1 Jetpack: door Automattic – 10.9 Kirki Customizer Framework: door David Vongries – 4.0.23 Loco Translate: door Tim Whitlock – 2.6.1 Mollie Payments for WooCommerce: door Mollie – 7.1.0 Perfect Brands for WooCommerce: door QuadLayers – 2.0.8 Popup Maker: door Popup Maker – 1.16.7 Premium Addons for Elementor: door Leap13 – 4.9.11 Schema & Structured Data for WP & AMP: door Magazine3 – 1.9.96 Search & Filter: door Designs & Code – 2.2.12 SEO Internal Links: door Pankaj Jha – 2.3.1 Shortcode in Menus: door Gagan Deep Singh – 3.5.1 WooCommerce NL Postcode Checker: door WP Overnight – 2.8.4 CTX Feed: door WebAppick – 4.4.59 Product Feed PRO for WooCommerce: door AdTribes.io – 11.5.5 NextMove Lite - Thank You Page for WooCommerce: door XLPlugins – 2.15.1 WooCommerce Bulk Stock Management: door WooCommerce – 2.2.31 WooCommerce Conversion Tracking: door weDevs – 2.0.9 WooCommerce Cost of Goods: door SkyVerge – 2.11.1 WooCommerce Dynamic Pricing: door Element Stark – 3.1.27 WooCommerce EU BTW-Nummer: door WooCommerce – 2.4.2 WooCommerce Filter Orders by Product: door Md. Kowsar Hossain – 3.2 Follow-Up Emails: door WooCommerce – 4.9.20 WooCommerce Google Analytics Integration: door WooCommerce – 1.5.8 WooCommerce MyParcel: door MyParcel – 4.11.0 WooCommerce PDF Invoices & Packing Slips: door WP Overnight – 2.14.4 WooCommerce Product Bundles: door WooCommerce – 6.15.2 (update naar versie 6.15.3 is beschikbaar) WOOF - WooCommerce Products Filter: door realmag777 – 1.2.6.4 WooCommerce Subscription Downloads: door WooCommerce – 1.2.0 WooCommerce Subscriptions: door WooCommerce – 4.1.0 (update naar versie 4.2.0 is beschikbaar) WooCommerce: door Automattic – 6.4.1 Yoast SEO Premium: door Team Yoast – 18.4 Yoast SEO: door Team Yoast – 18.7 Asset CleanUp: Page Speed Booster: door Gabe Livan – 1.3.8.5 Cookie Information | Gratis WP AVG-toestemmingsplugin: door Cookie Information – 2.0.14 WP Google My Business Auto Publish: door Martin Gibson – 3.1 WP-Mail-SMTP: door WPForms – 3.4.0 WP Rocket: door WP Media – 3.11.2 WP Sitemap Page: door Tony Archambeau – 1.9.1 Smush: door WPMU DEV – 3.9.9 WP Store Locator: door Tijmen Smit – 2.2.235 Social Chat: door QuadLayers – 5.0.3 WP Overnight Sidekick: door Jeremiah Prummer Ewout Fernhout Michael Kluver – 2.4.0 Yoast SEO: News: door Team Yoast – 13.1 Yoast SEO: WooCommerce: door Team Yoast – 14.7 Custom Product Tabs for WooCommerce: door YIKES Inc. – 1.7.7 YITH WooCommerce Added to Cart Popup Premium: door YITH – 1.8.4 YITH WooCommerce Ajax Product Filter: door YITH – 4.9.0 YITH WooCommerce Badge Management Premium: door YITH – 1.4.14 YITH WooCommerce Questions and Answers: door YITH – 1.5.0 Embed Plus Plugin for YouTube: door Embed Plus for YouTube Team – 14.1 ### Inactive Plugins (22) ### Adminimize: door Frank Bültge – 1.11.7 Advanced Custom Fields: door Delicious Brains – 5.12.2 Automatic Translate Addon For Loco Translate: door Cool Plugins – 2.3.1 Better Search Replace: door Delicious Brains – 1.4 Disable Emails: door WebAware – 1.8.0 Facebook for WooCommerce: door Facebook – 2.6.13 Redis Object Cache: door Till Krüss – 2.0.25 Regenerate Thumbnails: door Alex Mills (Viper007Bond) – 3.1.5 Relevanssi: door Mikko Saari – 4.15.2 Shortcode Cleaner Lite: door Jozoor – 1.0.9 The Best Price Filter for Woocommerce: door writ3it – 1.0.3 Trustpilot-reviews: door Trustpilot – 2.5.901 User Role Editor: door Vladimir Garagulya – 4.62 WooCommerce Cart Notices: door SkyVerge – 1.13.3 WooCommerce Checkout Field Editor: door WooCommerce – 1.7.2 WooCommerce POS: door kilbot – 0.4.27 WooCommerce Social Login: door SkyVerge – 2.11.1 WP-Optimize - Clean, Compress, Cache: door David Anderson Ruhani Rabin Team Updraft – 3.2.3 WP Rollback: door Impress.org – 1.7.1 YITH WooCommerce Compare: door YITH – 2.13.0 YITH WooCommerce Wishlist: door YITH – 3.8.0 YITH WooCommerce Wishlist Premium: door YITH – 3.4.0 ### Dropin Plugins (1) ### advanced-cache.php: advanced-cache.php ### Must Use Plugins (1) ### WordPress automation by Installatron: door – ### Settings ### API Enabled: ✔ Force SSL: ✔ Currency: EUR () Currency Position: left_space Thousand Separator: . Decimal Separator: , Number of Decimals: 2 Taxonomies: Product Types: bundle (bundle) external (external) grouped (grouped) simple (simple) subscription (subscription) variable (variable) variable subscription (variable-subscription) Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog) exclude-from-search (exclude-from-search) featured (featured) outofstock (outofstock) rated-1 (rated-1) rated-2 (rated-2) rated-3 (rated-3) rated-4 (rated-4) rated-5 (rated-5) Connected to WooCommerce.com: ✔ ### WC Pages ### Winkelbasis: #207 - /producten/ Winkelmand: #1334 - /mijn-account/winkelwagen/ Afrekenen: #1330 - /mijn-account/kassa/ Mijn account: #10 - /mijn-account/ Algemene voorwaarden: #960 - /klantenservice/algemene-voorwaarden/ ### Theme ### Name: Shoptimizer Child Theme Version: 1.2.1 Author URL: Child Theme: ✔ Parent Theme Name: Shoptimizer Parent Theme Version: 2.5.3 Parent Theme Author URL: https://www.commercegurus.com/ WooCommerce Support: ✔ ### Templates ### Overrides: shoptimizer-child-theme/woocommerce/emails/admin-cancelled-order.php shoptimizer-child-theme/woocommerce/emails/admin-failed-order.php shoptimizer-child-theme/woocommerce/emails/admin-new-order.php shoptimizer-child-theme/woocommerce/emails/customer-completed-order.php shoptimizer-child-theme/woocommerce/emails/customer-invoice.php shoptimizer-child-theme/woocommerce/emails/customer-new-account.php shoptimizer-child-theme/woocommerce/emails/customer-note.php shoptimizer-child-theme/woocommerce/emails/customer-on-hold-order.php shoptimizer-child-theme/woocommerce/emails/customer-processing-order.php shoptimizer-child-theme/woocommerce/emails/customer-refunded-order.php shoptimizer-child-theme/woocommerce/emails/customer-reset-password.php shoptimizer-child-theme/woocommerce/emails/email-addresses.php shoptimizer-child-theme/woocommerce/emails/email-customer-details.php shoptimizer-child-theme/woocommerce/emails/email-downloads.php shoptimizer-child-theme/woocommerce/emails/email-footer.php shoptimizer-child-theme/woocommerce/emails/email-header.php shoptimizer-child-theme/woocommerce/emails/email-order-details.php shoptimizer-child-theme/woocommerce/emails/email-order-items.php shoptimizer-child-theme/woocommerce/emails/email-styles.php ### Abonnementen ### WCS_DEBUG: ✔ Nee Subscriptions Mode: ✔ Live Subscriptions Live URL: https://www.mywebshop.nl Subscriptions Template Theme Overrides: shoptimizer-child-theme/woocommerce/emails/email-order-details.php shoptimizer-child-theme/woocommerce/emails/subscription-info.php Subscription Statuses: wc-active: 14 wc-cancelled: 4 WooCommerce Account Connected: ✔ Yes Active Product Key: ❌ No Custom Retry Rules: ✔ No Custom Retry Rule Class: ✔ No Custom Raw Retry Rule: ✔ No Custom Retry Rule: ✔ No Retries Migration Status: ✔ Completed Report Cache Enabled: ✔ Ja Cache Update Failures: ✔ 0 fout ### Winkel configureren ### Country / State: Nederland ### Abonnementen per betaalmethode ### Mollie - Bancontact: wc-active: 3 Mollie - iDEAL: wc-active: 9 wc-cancelled: 3 Mollie - KBC/CBC Betaalknop: wc-active: 2 wc-cancelled: 1 ### Ondersteuning betaalmethode ### Mollie - iDEAL: products refunds subscriptions subscription_cancellation subscription_suspension subscription_reactivation subscription_amount_changes subscription_date_changes multiple_subscriptions subscription_payment_method_change subscription_payment_method_change_admin subscription_payment_method_change_customer Mollie - PayPal: products refunds Mollie - Bancontact: products refunds subscriptions subscription_cancellation subscription_suspension subscription_reactivation subscription_amount_changes subscription_date_changes multiple_subscriptions subscription_payment_method_change subscription_payment_method_change_admin subscription_payment_method_change_customer Mollie - Overboeking: products refunds Mollie - Klarna betaal later: products refunds Mollie - KBC/CBC Betaalknop: products refunds subscriptions subscription_cancellation subscription_suspension subscription_reactivation subscription_amount_changes subscription_date_changes multiple_subscriptions subscription_payment_method_change subscription_payment_method_change_admin subscription_payment_method_change_customer Mollie - Belfius Direct Net: products refunds subscriptions subscription_cancellation subscription_suspension subscription_reactivation subscription_amount_changes subscription_date_changes multiple_subscriptions subscription_payment_method_change subscription_payment_method_change_admin subscription_payment_method_change_customer Mollie - SOFORT Banking: products refunds subscriptions subscription_cancellation subscription_suspension subscription_reactivation subscription_amount_changes subscription_date_changes multiple_subscriptions subscription_payment_method_change subscription_payment_method_change_admin subscription_payment_method_change_customer Mollie - EPS: products refunds subscriptions subscription_cancellation subscription_suspension subscription_reactivation subscription_amount_changes subscription_date_changes multiple_subscriptions subscription_payment_method_change subscription_payment_method_change_admin subscription_payment_method_change_customer Mollie - Giropay: products refunds subscriptions subscription_cancellation subscription_suspension subscription_reactivation subscription_amount_changes subscription_date_changes multiple_subscriptions subscription_payment_method_change subscription_payment_method_change_admin subscription_payment_method_change_customer ### Product Bundles ### Database Version: 6.15.2 Loopback Test: ✔ Template Overrides: – ### Action Scheduler ### Afgerond: 571 Oldest: 2022-04-05 17:08:21 +0200 Newest: 2022-05-06 07:02:56 +0200 Mislukt: 131 Oldest: 2018-09-14 00:00:00 +0200 Newest: 2022-01-24 11:44:12 +0100 In behandeling: 37 Oldest: 2022-05-06 20:45:55 +0200 Newest: 2027-01-01 03:00:00 +0100 ### Status report information ### Generated at: 2022-05-06 07:11:13 +02:00Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] Preventing the loading of Translate APIOops, I didn’t see that. Thanks for pointing that out.
Case closed I guess 😉Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] Preventing the loading of Translate APIApologies, I forgot to add a second message that many pagespeed tools give:
External script dat are dynamically injected via ‘document.write()’ can cause tens of seconds of delay with slow internet connections
That message is actually given by Google Pagespeed and is regarding to:
https://translate.googleapis.com/_/translate_http/_/js/k=translate_http.tr.en_US.gJJL_xPvTyY.O/am=Ag/d=1/exm=el_conf/ed=1/rs=AN8SPfqresJjng6wD8arVyG0el7ZrkABBw/m=el_mainI have the same problem. Except in my case it adds / nl / into the link (being from the Netherlands that would make kind of sense). But it results in a “page not found”.
Fine, you made your point, I made mine.
You asked for some details, which is fair enough. But you would understand that it is not common practise to throw all kinds of data off your webshop into a public thread. Everybody can see which plugin I have, my setup and there might be more important data within the screenshots.
It’s not smart practise to just put all of that out in the open like that. But your only alternative is an e-mailaddress which I’m not allowed to use?So my only option, to get any kind of assistance, is to do the most dumb action I could do: put all kinds of sensitive data out in the open for everybody to see?
So you don’t understand that is is frustrating that a plugin stops working all of a sudden only to discover there are about 20 different fields of prices, of which only 1 seems to work properly?
And I’m not allowed to express my dissatisfaction based on a plugin that used to work well, and stopped working along the way and has tons of stuff added to it, while the basic and most common stuff breaks down?
I don’t call you names, nor am I slating your plugin. I am stating that it is overcomplicated when you add a lot of extra fields, of which only a few actually seem to work.On the page you link to you say: “For the paid version of our plugin we offer support by email. When reaching out to us please mention your order number or license key so we can verify you are actually a user of the Elite version of our plugin. You can email to [email protected]”
I’m not a pro user. So I assume that this e-mailadres is not suppossed to be used by me. (which is part of the reason why I reached out via wordpress itself).Yeah, you’ve added heaps of different options. Too bad the most common ones don’t even work anymore. So yeah, overcomplicated.
Where can I sent the info you ask for? I’m not gonna put all that “sensitive” information on a public forum.