outdoorsdev1
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Show Posts] Image resizing / WP Show Posts issuesThis is a big issue for me and I was recommended by Tom to use the beta and change image sizes.
Would really love a response when it’s possible or an indication it’s a known problem 🙂
Hey, I’ve tested this and ticked the
Disable the sharing buttons block
button and it doesn’t seem to have helped. This problem seems only to apply to posts in draft.
Forum: Plugins
In reply to: [Scriptless Social Sharing] Suggestions for sidebar iconsThanks for the detailed reply!
However – the aim of this is just a links box for people to go directly to my social media sites, not for sharing the site or article.
It’s just to re-use the icons and styling and the would just be instagram.com/mysite, facebook.com/mysite e.t.c
Forum: Plugins
In reply to: [WP Show Posts] Removing jquerySaw the update actually, looks good! I looked through the release notes and saw code changes but nothing referencing removal of jquery. You should add it and mention the new code size in the release/plugin notes, I know a lot of pagespeed obsessives like myself steer clear of anything with jquery.
I run generatepress with dispatch and was hoping an update to this plugin and the theme would reduce loading times.
Also posted something about resizing a while ago on the gp forums – hopefully this new update could help out with resizing too?
https://generatepress.com/forums/topic/images-resized-in-css-not-html/Forum: Plugins
In reply to: [WP YouTube Lyte] Video picture squashedI’ve disabled it and it does fix the issue – should I now try disabling optimisation of certain youtube lyte scripts?
Forum: Plugins
In reply to: [WP YouTube Lyte] Video picture squashedOne page that had the problem I tried with that added url string and it fixed it, even when I visited again without the string, and then trying again the same problem is happening.
I’ve tried excluding the js scripts wp-content/plugins/wp-youtube-lyte/lyte/lyte-min.js, wp-content/plugins/wp-youtube-lyte/lyte/lyte.js
is there anything else that I could do?
- This reply was modified 5 years, 10 months ago by outdoorsdev1.
Forum: Plugins
In reply to: [WP YouTube Lyte] Lazy load imagesThey are loaded late in the order so they aren’t content blocking – which is good.
However I’d prefer them not to load at all unless scrolled into view. This would be a killer feature as speed is the main reason I use this plugin. I’ve got a popular post that has 6 or 7 yt vids, and losing about 350kb of images from the initial page load would be really helpful.
Was this code from this thread what you were referencing?
add_filter('lyte_match_postparse_template','lyte_bgimg'); function lyte_bgimg($in) { return preg_replace('/(<div id="lyte_[^"]*"\s)data-src="([^"]*)"/', '\1 style="background-image:url(\'\2\')" ', $in); }https://wordpress.org/support/topic/store-local-thumbnails-with-name-of-video-id/
Forum: Plugins
In reply to: [WP YouTube Lyte] Plugin is Creating Double Hypen In ContentI used this code in the single.php file of my child theme to stop any functions from the code in wptexturize doing anything. You should read more about what it does before implementing it though https://developer.wordpress.org/reference/functions/wptexturize/
/* Stops single dashes – being turned into double dashes — */
remove_filter( ‘the_title’, ‘wptexturize’ );
remove_filter( ‘the_content’, ‘wptexturize’ );
remove_filter( ‘the_excerpt’, ‘wptexturize’ );I assumed this was from this plugin but glad it’s confirmed and being worked on 🙂
Forum: Plugins
In reply to: [Autoptimize] Odd CSS change on generatepress, child theme, mobileHey, thanks for the quick and helpful reply – it’s really appreciated as is the amazing plugin 🙂
I just used the CSS you provided to get around the issue and found it worked so stuck with that.