kees78
Forum Replies Created
-
hi,
i know i can turn it off in the settings, but i want to do it programmatically for reasons of automation. Somehow the filter provider does not work. How come?
Sorry weekend in between. Yes the cpt is showing in the yoast content types. But i want to programmatically exclude it from the sitemap. The function does not prevent this however. How to proceed?
Hello? Anybody?
Sorry little typo. I changed the file bulk-table.php. Sending it to you now.
I have increased it to 2048M, max of the server, but still the same…
Forum: Plugins
In reply to: [WooCommerce] Error updating product lookup tableHere it is:
AH01071: Got error 'PHP message: PHP Fatal error: Uncaught TypeError: Argument 4 passed to Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\LookupDataStore::insert_lookup_table_data() must be of the type int, null given, called in /var/www/vhosts/xxxxx/httpdocs/wp-content/plugins/woocommerce/src/Internal/ProductAttributesLookup/LookupDataStore.php on line 400 and defined in /var/www/vhosts/xxxxxx/httpdocs/wp-content/plugins/woocommerce/src/Internal/ProductAttributesLookup/LookupDataStore.php:620\nStack trace:\n#0 /var/www/vhosts/xxxxx/httpdocs/wp-content/plugins/woocommerce/src/Internal/ProductAttributesLookup/LookupDataStore.php(400): Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\LookupDataStore->insert_lookup_table_data()\n#1 /var/www/vhosts/xxxxx/httpdocs/wp-content/plugins/woocommerce/src/Internal/ProductAttributesLookup/LookupDataStore.php(363): Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\LookupDataStore->create_data_for_simple_product()\n#...', referer: https://xxxxx/wp-admin/admin-ajax.php?action=as_async_request_queue_runner&nonce=5ca60b5e27Sorry, turned out a field was set as hidden, mandatory but not auto filled.
After changing, error disappeared.Forum: Plugins
In reply to: [Meta for WooCommerce] external merchant setting is nullHi,
It actually turned out the problem is solved, probably because it was caused by another conflict: out of max execution time for various woocommerce plugins.
Since increasing the max_execution_time, error disappeared.Kind regards, Kees
Forum: Plugins
In reply to: [MailPoet - Newsletters, Email Marketing, and Automation] AnchorsI have exactly the same wish! Please exclude anchor links from the filter…
Thanks in advance,
- This reply was modified 5 years, 1 month ago by kees78.
Forum: Plugins
In reply to: [Add-on Contact Form 7 – MailPoet 3] Update userSo how can i do this? I tried it myself on the website but it doesnt work…
After subscribed to one list, you dont get added to the next list?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce not/different storing variation information?Hi,
I actually found the solution. It has to do with an outdated jquery library that the theme uses. I installed a plugin called “Enable jQuery Migrate Helper” and the problem disappeared.
Hope this might help others,
Kind regards,
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] custom fields not syncingok thank you!
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] custom fields not syncingOk thank you, i understand now that you have to use the mergetag, in my case “MMERGE5”. It just worked, which is great.
Then the next problem is: how can i get this working for guest orders?
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Birthdate FieldHi @stefk, I posted a new topic on the forum, see https://ww.wp.xz.cn/support/topic/custom-fields-not-syncing-2/.
So now waiting for an answer…Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Birthdate FieldHi I have a similar problem. Based on your link to the wiki, i have the following function added:
function custom_mailchimp_sync_user_mergetags($merge_vars, $user) { $merge_vars['TROUWDATUM'] = 'tryout'; return $merge_vars; } add_filter('mailchimp_sync_user_mergetags', 'custom_mailchimp_sync_user_mergetags', 100, 2);In the log, i see the information is not sended .
However, when i change the function to:
function custom_mailchimp_sync_user_mergetags($merge_fields, $user) { /// add anything you would like to this array - and return it $merge_fields['TROUWDATUM'] = 'tryout'; return $merge_fields; } add_filter('mailchimp_sync_user_mergetags', 'custom_mailchimp_sync_user_mergetags', 10, 2);The information is sended, i see in the logs.
but then the information is not imported in mailchimp. I created a custom field in mailchimp with “Trouwdatum” and for testing purposes set it on text.
What is going wrong here?