🚨Urgent🚨Variable product creation is not available in the Dokan plugin #2808
Replies: 2 comments
-
@topgsmir, thanks for reporting this. We've already found an issue with the product data tabs on the product add/edit screen on the admin panel (e.g., General, Inventory, Shipping, etc.) that do not expand when Dokan is enabled. We've already notified our developers about it. This is being addressed with utmost urgency and hopefully will be fixed in the next release. Thanks for your patience and understanding while we're working on it. |
Beta Was this translation helpful? Give feedback.
-
@topgsmir this has been addressed in Dokan Lite v4.0.5, which was released yesterday. Kindly update the plugin and you should find the issue fixed! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Unfortunately, in the new version of Dokan and WooCommerce, there is a conflict and the files:
https://cdn.jsdelivr.net/npm/dompurify@3.0.5/dist/purify.min.js
are not loaded.
The problem is solved by disabling the Dokan plugin.
To check the problem, go to the Add Product section
Select the Variable Product
Then you will see that nothing is loaded
Now go and disable the Dokan plugin
You will see that everything is correct!!!
I put this code in the template to temporarily solve the problem:
add_action('admin_enqueue_scripts', function ( ){
if (is_admin()) {
wp_enqueue_script(
'dompurify',
'https://cdn.jsdelivr.net/npm/dompurify@3.0.5/dist/purify.min.js',
[],
null,
true
);
}
Please check as soon as possible. This is a very important problem.
Expand
Beta Was this translation helpful? Give feedback.
All reactions