Skip to content

Instantly share code, notes, and snippets.

@ig0r74
Created January 21, 2020 10:48
Show Gist options
  • Save ig0r74/b65130c04ad477557584d6f2c492e6f1 to your computer and use it in GitHub Desktop.
Save ig0r74/b65130c04ad477557584d6f2c492e6f1 to your computer and use it in GitHub Desktop.
MODX убрать все type="text/javascript"
<?php
switch ($modx->event->name) {
case 'OnWebPagePrerender':
$output = &$modx->resource->_output; // перехватываем содержимое страницы
$output = str_replace(' type="text/javascript"',"",$output);
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment