jepcmart
Forum Replies Created
-
Forum: Plugins
In reply to: [Kint Debugger] PHP 8.0 VersionDownload:
https://raw.githubusercontent.com/kint-php/kint/master/build/kint.pharThen create a folder in plugins called my_kint with two files:
my_kint.php
kint.pharin my_kint.php add the following code:
<?php /* Plugin Name: My Kint Description: Kint Debugging Tool Version: 1 */ include 'kint.phar';Forum: Plugins
In reply to: [Autoptimize] Site crash after 2.8 updateThe beta worked. I only updated autoptimizeImages.php on line 516 “return $matches[0];”
Forum: Plugins
In reply to: [Autoptimize] Site crash after 2.8 updateIt may be related to the Genesis theme (GenesisVersion: 3.3.3). When I deactivated it and enable the 2021 Theme, I did not see “Array” echoed.
Forum: Plugins
In reply to: [Autoptimize] Site crash after 2.8 updateI’m on PHP 7.4. I disabled all plugins (except for ACF and Autoptimze) and I still received the error.
Forum: Plugins
In reply to: [Autoptimize] Site crash after 2.8 updateI have the same issue. 2.8 using Optimize Images and Shortpixel and the word “Array” appears at the top of the website.
Forum: Fixing WordPress
In reply to: Secondary Sidebar Widget Area RemovalIf using genesis, put the following in functions.php:
remove_action( ‘genesis_sidebar_alt’, ‘genesis_do_sidebar_alt’ );Forum: Fixing WordPress
In reply to: secondary sidebar problem after updating php 5.2=>5.3If using genesis, put the following in your functions.php:
remove_action( ‘genesis_sidebar_alt’, ‘genesis_do_sidebar_alt’ );I’m using wpengine and that plugin is disallowed. Is there a hook I can use in your plugin or the ability to override your function?