Anax
Forum Replies Created
Viewing 9 replies - 1 through 9 (of 9 total)
-
Forum: Plugins
In reply to: [Nginx Cache] PHP Warning: Undefined variable $itemThe proposed change doesn’t work. Specifically, at line 212:
if ( $item[ 'type' ] === 'f' && strpos( $item, "." ) !== false ) { return true; }Given that variable $item is an array,
strpos( $item, "." )produces an error.
I think that line should read:
if ( $item[ 'type' ] === 'f' && strpos( $item[ 'name' ], "." ) !== false ) {
return true;
}After further investigation the behaviour occurs when “Show Skeleton Screens” is checked in Porto theme options. Unchecking them solves the issue.
That worked well, thank you.
Sorry, indeed this was the wrong forum.
It’s the adblocker
Not my case because I have no optimize plugin, for now, there are no JS errors on dev console and variable products show up normally without any problems.
Same here
WP 5.4.5
WC 4.4.1
Porto 5.4.5One month has passed and no answer from the dev(s) yet?
Viewing 9 replies - 1 through 9 (of 9 total)