79721401

Date: 2025-07-31 14:07:01
Score: 2
Natty:
Report link

If you can access functions.php file, use this code to de-register the schema manually:

add_action('wp_head', function() {
ob_start(function($buffer) {
return preg_replace('/<script[^>]+type=["\']rocketlazyloadscript["\'][^>]*>.*?<\/script>/is', '', $buffer);
});
}, 1);

This code filters out any <script type="rocketlazyloadscript"> </script> block from the page output but use only if you're sure it's safe to remove and you’ve isolated the right script.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user31186424