critical error since new update for a specific site
-
Hi,
i’m using woodmart for my wcfm site with elementor. Since the new update i get the a critical error when i use the store setup wizard of wcfm
Please have a look at the error and tell me how to fix that problem.
thanks for your help
Hello,
Please, provide us your admin and FTP access so we can check what is wrong.
Kind Regards
FTP access seems to be wrong and we can’t access your server https://prnt.sc/12k8vds
sorry, i send you the right details
Try to add the following PHP code snippet to the child theme functions.php file to fix this
function woodmart_elementor_is_edit_mode() {
if ( ! woodmart_is_elementor_installed() ) {
return false;
}
return Plugin::$instance->editor->is_edit_mode();
}
Sorry, try to use the following snippet instead
function woodmart_elementor_is_edit_mode() {
if ( ! woodmart_is_elementor_installed() ) {
return false;
}
return Elementor\Plugin::$instance->editor->is_edit_mode();
}
Please, check how it works now. Note that it has some notices now generated by the plugin and not related to our theme.
thanks, this seems to work.
I have another question to a new topic, should i create a new topic for this?
You are welcome! Yes, we close this topic and you can create a new one.
The topic ‘critical error since new update for a specific site’ is closed to new replies.