(2013-10-15, 07:06:25)jliwanag77 Wrote: Interesting. And all your other plugins are ok?
Most of them fine but those plugins that load css and js files directly into content and not queued will be affected too except if you modify/update the plugin files to take the new path.
Lets say your new plugins folder name is modules then you would need to modify the plugin files paths from:
PHP Code:
$style = '<link rel="stylesheet" type="text/css" href="'.$SITEURL.'plugins/simple_contact/css/simple_contact.css"></link>';
$script = '<script type="text/javascript" src="'.$SITEURL.'plugins/simple_contact/js/jquery.validate.min.js"></script>';
PHP Code:
$style = '<link rel="stylesheet" type="text/css" href="'.$SITEURL.'modules/simple_contact/css/simple_contact.css"></link>';
$script = '<script type="text/javascript" src="'.$SITEURL.'modules/simple_contact/js/jquery.validate.min.js"></script>';
Maybe in the future GetSimple will have a variable for this?