phoebe46
Forum Replies Created
-
Thank you for your help. I deleted the two rows from the table, they created themselves again. I have tested WordPress and now I see that everything works correctly. It is likely that the row may have contained something that was causing the problem.
Which file or database table contains Shield settings?
I tried to disable the plugins and change the theme, but the problem persists.
I have tried deleting and reinstalling Shield, I have also deleted the database tables. When reinstalling, the error occurred in the same way.
Even if I turn off the plugins, the problem only occurs when Shield is active.
I can’t check the activity log, but Jetpack is not listed, the last entry is 7 days ago. Shield is also disabled from changing its own settings, I can’t change any settings.
And one more error. JetPack connection does not work when Shield is enabled. Shield blocks all connections, updates, plugin configuration changes. If Shield is off, no problem. The error is completely independent of WP Fastest Cache. No change when cache is turned off either.
I checked the home directory of my website, but there is no error log file. I don’t see a running process in the errors menu of cPanel either.
I turned off WP Fastest Cache but nothing changes, I can’t change the Shield settings in the same way.
Ok, thanks.
Thanks for the reply, but it didn’t help much. I have no developer to write the code. I can paste the code, that’s not what I asked for help with.
Thanks Paul.
I have the same problem.
Forum: Themes and Templates
In reply to: [Cenote] Mobile feature image sizeHi, I use Autoptimize and cache plugin, and I reduced image file size. Your suggestions not useful for me, I’m sorry.
https://teszt.agrarvidek.hu/ and another website: https://agrarvidek.hu/mme-enyhe-a-tel-kevesebb-madar-latogatja-az-etetoket/
3 webp images are shown from an external source (rss feed – jetpack cdn).
Hi Gijo,
I checked this in Chrome DevTools, and PageSpeed insights.
Solved
I solved this, with this code:
add_filter( ‘feedzy_feed_items’, ‘tifd_feedzy_remove_duplicates’, 10, 2 );
function tifd_feedzy_remove_duplicates( $items, $feedURL ) {
$uniques = array();
foreach ( $items as $item ) {
if ( isset( $uniques[ strval( md5( $item->get_title() ) ) ] ) ) {
continue;
}
$uniques[ md5( $item->get_title() ) ] = $item;
}
return array_values( $uniques );
}