jupplidhupplid
Forum Replies Created
-
Forum: Plugins
In reply to: [a3 Lazy Load] A3 Lazy Load and Cumulative Layout ShiftI am seeing similar issues. a3 lazy load adds its placeholder gif into src which has an aspect ratio of 1:1. The browser thinks the actual img has an aspect ratio of 1:1 and scales the entire frame.
Not sure how to go about this. Did you find a solution?
Forum: Plugins
In reply to: [Easy Table of Contents] EasyTOC causing CLS IssuesMarked as solved
Forum: Plugins
In reply to: [Easy Table of Contents] EasyTOC causing CLS IssuesHere’s what I did:
includes\class.post.php
add style=”display:none;” to line 1027
$html = ‘<ul class=”ez-toc-list ez-toc-list-level-1″>’ . $html .’‘;
which then is
$html = ‘<ul class=”ez-toc-list ez-toc-list-level-1″ style=”display:none;”>’ . $html .’‘;
takes care of the layout shift
Forum: Plugins
In reply to: [Comments - wpDiscuz] Track Comments in Google AnalyticsWorks like a charm! Thanks ??
My mistake unrelated to the plugin. Shortcodes output in php like this:
<?php echo do_shortcode(“[socialpug_share]”); ?>
Forum: Plugins
In reply to: [Easy Table of Contents] Any way to turn off “ezTOC_hidetoc” Cookie?Hi Steven! Thanks for the reply. I am not sure I quite follow. The Cookie is needed so the Visitor can open/close the table?
- This reply was modified 5 years, 2 months ago by jupplidhupplid.
Works like a charm, thanks!! ??
Forum: Plugins
In reply to: [Social Sharing Plugin - Sassy Social Share] Facebook Share Count stuckHey!
Thanks for the Answer. Unfortunately I already did both share count clear and setting up the facebook app with ID and Secret.Any other possibilities?
Thanks!
AlexForum: Plugins
In reply to: [Easy Table of Contents] Jquery scripts loaded when not in usejust a quick workaround for those who are interested:
//wp_register_script( ‘js-cookie’, EZ_TOC_URL . “vendor/js-cookie/js.cookie$min.js”, array(), ‘2.0.3’, TRUE );
//wp_register_script( ‘jquery-smooth-scroll’, EZ_TOC_URL . “vendor/smooth-scroll/jquery.smooth-scroll$min.js”, array( ‘jquery’ ), ‘1.5.5’, TRUE );
//wp_register_script( ‘jquery-sticky-kit’, EZ_TOC_URL . “vendor/sticky-kit/jquery.sticky-kit$min.js”, array( ‘jquery’ ), ‘1.9.2’, TRUE );
//wp_register_script( ‘jquery-waypoints’, EZ_TOC_URL . “vendor/waypoints/jquery.waypoints$min.js”, array( ‘jquery’ ), ‘1.9.2’, TRUE );
//wp_register_script( ‘ez-toc-js’, EZ_TOC_URL . “assets/js/front$min.js”, array( ‘jquery-smooth-scroll’, ‘js-cookie’, ‘jquery-sticky-kit’, ‘jquery-waypoints’ ), ezTOC::VERSION, TRUE );
wp_register_script( ‘ez-toc-js’, EZ_TOC_URL . “assets/js/front$min.js”, array(), ezTOC::VERSION, TRUE );comment those lines out in easy-table-of-contents.php and add the last line.
Forum: Plugins
In reply to: [Easy Table of Contents] Jquery scripts loaded when not in useWould like to know this too. There are at least 5 .js and 2 .css that are all very small and could be merged into one. Any way to disable these?
Thanks, that works and would fix the jumping!
Out of curiosity: Why is the Slider loaded/displayed with a delay? Is this a wordpress problem parsing the shortcode injection or loading the javascript files of the plugin?
Thanks!
Hey Thanks for the reply. This happens in both Chrome and Firefox on every load/reload. But when it does not happen for you this makes me wonder… Let me try on other Computers.
Yes, happening on two more computers too. All Win10 Chrome / Firefox.
The page loads quite quickly. And the metaslider loads slightly slower and makes the rest of the page jump down, once it is displayed.
Any ideas?
Thanks
Hey Tobias,
This is strange,it is actually working again without me changing anything.. Maybe the Webserver Guys were fiddling around with some settings? Strange.Thanks for the reply! Let me know if you still need some other info, though for me it is resolved for now.
Thanks,
AlexForum: Plugins
In reply to: [Yoast SEO] Seperator and Site Title not Showing in Postsmarked as solved
Forum: Plugins
In reply to: [Yoast SEO] Seperator and Site Title not Showing in PostsActually I think this has been overwritten by importing the allinoneseo titles. When I add a new post, the seperator and site title show.
Thanks!