dieppon
Forum Replies Created
-
really? do you need to use a ID reference + .class + !important?
There is no way to override this on a custom theme without patching the plugin.
I pretty sure you can make it work without the use of !important.
I have created a gist with the patch if anyone is using composer:
https://gist.github.com/dieppon/93bf355eb8ffaa675bb8280a28d8303a
As long as use standard calls to plugin directories it should not be a problem, it is WordPress 101.
- This reply was modified 1 year, 10 months ago by dieppon.
For the moment I have created at a path for any other users with the issue:
https://gist.github.com/dieppon/b15ea7ae3c0aeae9ab2e20e9a354c456
If you already have configured the cookie messages you will need to also search and replace ‘wp-content’ for ‘app’ on the database.
I normally use “Better Search and Replace” for that.
Forum: Plugins
In reply to: [Kint Debugger] PHP 8.0 VersionIf you just want to patch the original plugin here is the patch from the changes on the DuckDivers repo:
Forum: Plugins
In reply to: [Kint Debugger] Please update for PHP 7.4Here is the patch if it makes your live easier:
diff --git a/vendor/kint/inc/kintParser.class.php b/vendor/kint/inc/kintParser.class.php index 7d57fe9..5b5984b 100644 --- a/vendor/kint/inc/kintParser.class.php +++ b/vendor/kint/inc/kintParser.class.php @@ -460,9 +460,9 @@ abstract class kintParser extends kintVariableData * These prepended values have null bytes on either side. * https://www.php.net/manual/en/language.types.array.php#language.types.array.casting */ - if ( $key{0} === "\x00" ) { + if ( $key[0] === "\x00" ) { - $access = $key{1} === "*" ? "protected" : "private"; + $access = $key[1] === "*" ? "protected" : "private"; // Remove the access level from the variable name $key = substr( $key, strrpos( $key, "\x00" ) + 1 );
Forum: Plugins
In reply to: [Yoast SEO] Fatal errors again in version 14.0.2Hi @phimplay
I see that you use composer, so I assume that you use GIT.
Check .gitignore for a line with:
/log
or
log
There is a folder on the yoast plugin that was not being added to the commit.
Kind regards
Forum: Plugins
In reply to: [Advanced Menu Widget] Error message with newest WordPress UpdateHi,
As we use composer, here is the patch I have created from @thewebtailors fix:
https://gist.github.com/dieppon/ecb6741c45192425c6c58d821ef62cfb
Kind regards
Forum: Plugins
In reply to: [HTTP Auth] Credentials do not workSame happened to me
Im using 5.4 on php7.2
- This reply was modified 4 years, 6 months ago by dieppon.
Forum: Plugins
In reply to: [Autoptimize] Autoptimize not able to contact server (403 error)I think we have the same problem.
We figure out that if we change the functions that add the permissions to the files it works.
Here is the patch:
https://gist.github.com/dieppon/78dd30de409cd590d85e5d5daeb5c0e9
Kind regards
Forum: Plugins
In reply to: [Canto] Plugin introduces unnecessary styles/scripts to backendTo the front end too
currently there is an API limit of 50 requests per API key per day. This should be enough for a normal site for a daily scan. There is one request for the wordpress version, one for every theme and one for every plugin. After you enter an API key, a scan is scheduled automatically. Maybe you scanned a second time and thus hit the limit.
No, is not enough, my site has 20 plugins and it did 168 request.
- This reply was modified 5 years, 1 month ago by dieppon.
Forum: Plugins
In reply to: [Export Users to CSV] Security ThreatAre you? The plugin download has been closed by WordPress on January 28, 2019.
Forum: Plugins
In reply to: [Custom Post Template] Deprecated message in PHP 7Thanks muttznutz