[SOLVED] No shortcode or Preview Generated
-
I was able to solve the issue some have described where no shortcode or previews were being generated for new animations. It looks like no one is maintaining this plugin anymore, so versions are getting out of sync.
In the plugins javascript folder (wp-bodymovin/assets/js/) you need to replace the lottie.js and lottie.min.js files with whatever version the bodymovin after effects animation is currently at from the github repo. For me that was 5.5.2, and those files are here. That may be enough for you, but I also had to go into the main wp-bodymovin.php file (wp-bodymovin/) and change the versions being called in 2 identical lines:
wp_register_script( 'bodymovin' , plugin_dir_url( __FILE__ ) . 'assets/js/lottie' . $suffix . '.js', array(), '5.5.2' );
Replacing the files and changing the versions did it for me.
- The topic ‘[SOLVED] No shortcode or Preview Generated’ is closed to new replies.