Same error when creating new or editing existing product.
Failed to load content css: http://4boards.co.uk/wp-content/plugins/fluid-video-embeds/stylesheets/main.css
Plugin uses a WordPress __CONSTANT__ —> WP_PLUGIN_URL
One assumes that WP_PLUGIN_URL doesn’t account for SSL https: protocol
A thread for this exists here: Similar WP Plugins URL thread
To fix this issue, open fluid-video-embeds/lib/constants.php and replace
if( !defined( 'FLUID_VIDEO_EMBEDS_URLPATH' ) ) define( 'FLUID_VIDEO_EMBEDS_URLPATH', WP_PLUGIN_URL . "/" . plugin_basename( FLUID_VIDEO_EMBEDS_DIRNAME ) );
by
if( !defined( 'FLUID_VIDEO_EMBEDS_URLPATH' ) ) define( 'FLUID_VIDEO_EMBEDS_URLPATH', plugin_dir_url( dirname(__FILE__) ));
See https://codex.wordpress.org/Determining_Plugin_and_Content_Directories for more information.
yhdm
(@yellowhousedesign)
I’m also experiencing this. Fix from @maximevaly above works.
-
This reply was modified 8 years, 8 months ago by
yhdm.
The fix from @maximevaly works for main.css, but now I get this message:
Failed to load content css: https://www.drumbite.co.il/wp-content/plugins/fluid-video-embeds//stylesheets/main-rtl.css
Any suggestions?