So sad that this plugin isn’t supported by the engineers given how popular PayPal is
]]>Long story short it would appear the performance of my site is hindered by many things. One of them being an element img.skip-lazy
This is excluding the image from lazy loading. I am aware that this sometimes happens above the fold but it’s appearing on all of my sliders. Is this something that can be changed with custom CSS or would I need to contact the plugin devs?
Note: I am doing that now and will provide insight here as well.
]]>Try quic.cloud too. It can replace Cloudflare. Quic and LS Cache work together, and the best thing is that quic and OLS were purpose built for WordPress, so everything works very smoothly without implementing a bunch of page rules, etc.
]]>First of all, a great plugin easy to use. This is not an issue but just wanted to evaluate the performance after applying redirections.
We have like 480 redirections to be included on our new site. My question is ,will the performance of the site affected by applying such a large number of redirects? if so, to which magnitude?
Awaiting a favorable response
Best Regards
]]>How can this problem be solved?
]]>We checked using Query Monitor: Upon every page refresh using F5, we see queries like these being performed – have you every seen something like this? This all belongs into a “once upon plugin activation init-routine“
CREATE TABLE IF NOT EXISTS wp_sib_model_users ( id int(20) NOT NULL AUTO_INCREMENT, email varchar(255), code varchar(100), listIDs longtext, redirectUrl varchar(255), info TEXT CHARACTER
SET utf8 COLLATE utf8_unicode_ci, frmid int(2), user_added_date DATETIME NOT NULL, PRIMARY KEY (id) );
CREATE TABLE IF NOT EXISTS wp_sib_model_lang ( id int(20) NOT NULL AUTO_INCREMENT, frmID int(20) NOT NULL DEFAULT -1, pID int(20) NOT NULL DEFAULT -1, lang varchar(120), PRIMARY KEY (id) );
SHOW COLUMNS
FROM wp_sib_model_forms LIKE 'gCaptcha'
SHOW COLUMNS
FROM wp_sib_model_forms LIKE 'termAccept';
SHOW COLUMNS
FROM wp_sib_model_forms LIKE 'confirmID';
SHOW COLUMNS
FROM wp_sib_model_forms LIKE 'requiredMsg';
SHOW TABLES LIKE 'wp_sib_model_forms';
SHOW COLUMNS
FROM wp_sib_model_forms LIKE 'cCaptchaStyle'
SHOW TABLES LIKE 'sib_model_forms'
Some of these queries run multiple times, their results are not even cached. They have several functions like these:
public static function forms_table_exists()
{
global $wpdb;
return $wpdb->get_var( "SHOW TABLES LIKE '" . self::TABLE_NAME . "'" ) == self::TABLE_NAME;
}
Performance-wise, this is a complete joke. Luckily, not all devs work like this – just imagine having 20 plugins installed and every plugin spending 10-20 unnecessary SQL calls – you’d end up with 100 WASTED sql queries rather fast. No wonder that most WP pages are slow af.
If you can, pick a different mail provider instead of Brevo / SIB.
]]>