-
Notifications
You must be signed in to change notification settings - Fork 6
5. Plugins
Bruno Barros edited this page Jan 11, 2015
·
8 revisions
As w.eloquent uses a different WordPress folder structure some plugins will not work properly because they don't follow the best practices. Generally, the problem comes with paths that are hard coded.
Here are some plugins that didn't work and the substitutes you can use instead:
Don't: https://wordpress.org/plugins/wp-fastest-cache/
Instead: https://wordpress.org/plugins/wp-super-cache/
The WordPress importer plugin has some bugs, at least up to 0.6.1 version. It was already described by the communit and the fix is can be found here.
- Update the
src/plugins/wordpress-importer/parsers.php
on line 404:
# from this:
function WXR_Parser_Regex() {
$this->__construct();
}
function __construct() {
$this->has_gzip = is_callable( 'gzopen' );
}
# to this:
function __construct() {
$this->has_gzip = is_callable( 'gzopen' );
}
function WXR_Parser_Regex() {
$this->__construct();
}
- Update the
src/plugins/wordpress-importer/wordpress-importer.php
on line 1110:
# from this:
function bump_request_timeout() {
return 60;
}
# to this:
function bump_request_timeout($val) {
return 60;
}
See the Starter theme for more advanced features.