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'; | |
| } |
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_action('wp_footer', function() { | |
| if(!wp_is_mobile()) { | |
| echo 'hello world'; | |
| } | |
| }); |
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 src="https://cdnjs.cloudflare.com/ajax/libs/fastclick/0.6.0/fastclick.min.js" integrity="sha512-oljyd1wg75alHReTpDvNIQ4Yj1wZwGxxZhJhId3vr2dKY+26/r/wmMrImwDgin03+7wxyhX+adOQB/2BTvO5tQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | |
| <script> | |
| if ('addEventListener' in document) { | |
| document.addEventListener('DOMContentLoaded', function() { | |
| FastClick.attach(document.body); | |
| }, false); | |
| } | |
| </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
| /* Remove Query Strings | |
| /***********************************************************************/ | |
| add_action('init', 'remove_query_strings'); | |
| function remove_query_strings() { | |
| if(!is_admin()) { | |
| add_filter('script_loader_src', 'remove_query_strings_split', 15); | |
| add_filter('style_loader_src', 'remove_query_strings_split', 15); | |
| } | |
| } | |
| function remove_query_strings_split($src) { |