sionus
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [Disqus Conditional Load] Version 11.0.4 broke the plugin@joelcj91 Still doesn’t work after upgrading to latest version and clearing all caches.
Forum: Themes and Templates
In reply to: [OceanWP] Error following WordPress updateThis code is at the end of /wp-content/plugins/ocean-extra/includes/wizard/classes/QuietSkin.php
The only change is the addition of the
...$argsparameter.The signature of the function changed from 5.2 -> 5.3 as seen in this commit message.
Making this change allowed my Ocean-extra plugin to function properly.
Forum: Themes and Templates
In reply to: [OceanWP] Error following WordPress updateYou can fix this by changing the function signature in the file to:
public function feedback($string, ...$args) { /* no output */ }Forum: Themes and Templates
In reply to: [OceanWP] 5.3 WP updateYou can fix this by changing the function signature in the file to:
public function feedback($string, ...$args) { /* no output */ }Forum: Themes and Templates
In reply to: [OceanWP] Warning error after WP updateYou can fix this by changing the function signature in the file to:
public function feedback($string, ...$args) { /* no output */ }
Viewing 5 replies - 1 through 5 (of 5 total)