I am trying to: Whenever a user login (I believe admin user will not trigger?), a Toolset WooCommerce field group will be generated. As a result, the product edit page will freeze every time.
Link to a page where the issue can be seen: hidden link
I expected to see: No WooCommerce field group should be generated.
Instead, I got: new WooCommerce field groups everytime someone logs in
Hello,
I had seen similar issues which are conflicts with other plugins, for example:
https://toolset.com/forums/topic/multiple-toolset-woocommerce-custom-fields-were-auto-created-and-cant-edit/
https://toolset.com/forums/topic/toolset-woocommerce-starts-multiplying-custom-fields-in-back-end/
Currently, you can try below workaround:
1) Backup your website database first
2) Add the following code at Toolset > Settings > Code Snippets. Don't activate it, but instead use the Run Now option to run the code once, and then keep doing that as many times as are needed to remove the duplicates.
$wcfgs = get_posts( array(
'post_type' => 'wp-types-group',
'title' => 'Toolset WooCommerce',
'numberposts' => 25
));
foreach ($wcfgs as $key => $wcfg) {
wp_delete_post( $wcfg->ID, true );
}
More help:
https://toolset.com/documentation/programmer-reference/adding-custom-code/using-toolset-to-add-custom-code/
Hi,
I've seen these related articles before. I decided to manually delete those field groups, but it's still generating. I need a permanent solution. Can you help?
In order to debug the conflict issues, please provide a copy of your website in below private message box, you can put the package files in your own google drive disk, share the link only, I need to test and debug it in my localhost, thanks
https://toolset.com/faq/provide-supporters-copy-site/
I have tried the ZIP file you provided, it is a backup of WP site file, there isn't database dump file, please follow below document to export your website database dump file, and provide the link:
hidden link
Thanks for the details, I can find the SQL file, but I need to migrate the data into my localhost, will update here if find anything
I can import the SQL file, please provide more details:
1) Which user is WordPress admin user
2) After user login into your website, triggers the problem you mentioned above
Thanks
1) Which user is WordPress admin user
yuli
2) After user login into your website, triggers the problem you mentioned above
Any users but admin users or you can refer to the screenshots.
Thanks for the details, I have tried these in my localhost with your duplicator package:
1) Login as admin user "yuli"
2) Deactivate all other plugins/switch to WordPress default theme 2022,
3) Switch another normal user, and logout
4) Login as admin user "yuli", check the custom field setting page, I don't see any new custom "Toolset WooCommerce field group",
Since it is a compatibility issue, do you have any clue for this:
Which plugin conduct the problem?