After elementor 3.3.0 issue this problem has appeared. Elementor also says this https://elementor.com/help/update-issues/. You can roll back to previous version of Elementor by following https://elementor.com/help/rolling-back-to-a-previous-version-of-elementor/. Please update theme with latest version or goto wp-content/themes/theme-name/functions.php and locate below lines
(search with radiantthemes-custom.css to quickly find it)
// ENQUEUE RADIANTTHEMES CUSTOM CSS.
if ( did_action( 'elementor/loaded' ) ) {
wp_enqueue_style(
'radiantthemes-custom',
get_parent_theme_file_uri( '/assets/css/radiantthemes-custom.css' ),
array( 'elementor-animations', 'elementor-frontend' ),
time()
);
} else {
wp_enqueue_style(
'radiantthemes-custom',
get_parent_theme_file_uri( '/assets/css/radiantthemes-custom.css' ),
array(),
time()
);
}
After // ENQUEUE RADIANTTHEMES CUSTOM CSS. Remove all and put below code and your site would work like before.
wp_enqueue_style(
'radiantthemes-custom',
get_parent_theme_file_uri( '/assets/css/radiantthemes-custom.css' ),
array(),
time()
);
Just if logic wouldn't work with new version.
Update: We have updated the theme and a simple theme update along with Radiantthemes Addons and Radianthmes Custom post plugin update this issue would be resolved automatically.
If you are not confident in doing this, you can share temporary access and we'll happily help you.
Comments
0 comments
Please sign in to leave a comment.