The plugin has the URLs to CSS and Javascript files hard-coded to the wp-content directory, but WP lets people change that to a different folder, and a lot of developers use a different directory for a number of reasons.
When the plugin is installed on a system that uses a different content directory, none of the CSS or JavaScript files are loaded.
You should be using plugins_url() to determine the plugin directory, instead of hard-coding it.
http://wordpress.org/extend/plugins/mvis-security-center/
secconsult
Member
Plugin Author
Posted 6 months ago #
Hello Ian,
thanks for pointing that out, I was not aware of it.
Trunk is now updated to use plugins_url() to determine the wp-content directory and all hardcoded references to wp-content have been removed.
Cheers,
Stefan
Thanks, that's working now :)
secconsult
Member
Plugin Author
Posted 6 months ago #
great, thanks again for the feedback Ian.