This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'wp_theme_json_data_theme', 'disable_inter_font', 100 ); | |
function disable_inter_font( $theme_json ) { | |
$theme_data = $theme_json->get_data(); | |
$font_data = $theme_data['settings']['typography']['fontFamilies']['theme'] ?? array(); | |
// The font name to be removed | |
$font_name = 'Inter'; | |
// Check if 'Inter' font exists | |
foreach ( $font_data as $font_key => $font ) { | |
if ( isset( $font['name'] ) && $font['name'] === $font_name ) { | |
// Remove the font |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Remove the link to the Windows Live Writer manifest file. Deprecated in WordPress 6.3 and higher. | |
remove_action( 'wp_head', 'wlwmanifest_link' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function disable_fetchpriority_high( $loading_attrs ) { | |
unset( $loading_attrs['fetchpriority'] ); | |
return $loading_attrs; | |
} | |
add_filter( | |
'wp_get_loading_optimization_attributes', | |
'disable_fetchpriority_high' | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
var elm=document.getElementsByTagName("html")[0]; | |
elm.style.display="none"; | |
document.addEventListener("DOMContentLoaded",function(event) {elm.style.display="block"; }); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'shutdown', function() { | |
// If the event is scheduled, don't run anything. | |
if ( wp_next_scheduled( 'prefix_remove_license_activation_logs' ) ) { | |
return; | |
} | |
if ( ! function_exists( 'edd_has_upgrade_completed' ) ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
if (window.innerwidth < 900) { | |
document.write('<script type="text/javascript" src="https://domain.com/wp-content/plugins/perfmatters/vendor/fastclick/fastclick.min.js"><\/script>'); | |
} | |
</script> | |
<script> | |
if(window.innerWidth < 900) { | |
if('addEventListener' in document) { | |
document.addEventListener('DOMContentLoaded', function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.nameofdiv { | |
content-visibility: auto; | |
contain-intrinsic-size: 0 1000px; | |
} | |
/* References: | |
https://web.dev/content-visibility/ | |
https://segmentfault.com/a/1190000041980427/en | |
https://clubmate.fi/content-visibility-auto | |
https://dev.to/dailydevtips1/i-made-my-website-28ms-faster-with-content-visibility-466e |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* preview-mode paragraphs */ | |
p{ | |
padding-top: 6px; | |
padding-bottom: 6px; | |
line-height: 1.6; | |
} | |
/* preview-mode lists */ | |
li{ | |
padding-top: 6px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter('fluentform_response_render_textarea', function ($value, $field, $formId, $isHtml) { | |
if (false != strpos($value, '<br />')) { | |
$value = str_replace('<br />', '', $value); | |
} | |
return '<span style="white-space: pre-line">' . $value . '</span>'; | |
}, 15, 4); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter('perfmatters_delay_js_exclusions', function($exclusions) { | |
if(is_page(275)) { | |
$exclusions[] = 'underscore.min.js'; | |
$exclusions[] = 'backbone.min.js'; | |
$exclusions[] = 'front-end-deps.js'; | |
$exclusions[] = 'front-end.js'; | |
$exclusions[] = 'nf-'; | |
$exclusions[] = 'jquery.min.js'; | |
$exclusions[] = 'nfForms'; | |
} |
NewerOlder