sirtaptap
Forum Replies Created
-
Forum: Reviews
In reply to: [Cloudflare Image Resizing - Optimize & Accelerate Your Images] It works!Oh, I can only note that as far as improvements, I’d love to be able to be more picky about which images get resized, since it is a paid feature on CF and all. I noticed JPGs are a single digit % of savings, yet the majority of my image count. Since I’m charged by images not storage space or anything, I’d probably turn off jpeg resizing if I could.
Forum: Plugins
In reply to: [ActivityPub] Doesn’t work at allYeah I get this too, I’m on a VPS so it’s not my host’s rules or anything. If there’s something I need to add to HTACCESS I’d love to know it
Oh and while I’m recommending–it’d be neat to be able to exclude links in certain classes/HTML Tags. I did notice it looks a little odd having a link in an H2
1: That removes the case-changing, but then it doesn’t link the text if it doesn’t match. Most of my tags are game titles, so in text they’re usually Title Case but the tags are lowercase. Ideally, I’d like Axiom Verge to be linked to the lower case tag “axiom verge”, but have the case of the original text left alone
2. Hmm odd, Yoast SEO is the only plugin I have that directly affects tags I believe and disabling it didn’t change it. Disabling the rest and changing themes didn’t do it either so don’t know what else to try. Unsure if related, but the extra duplicate tags will gladly go past the 10 link limit too (but the limit appears to work for unique tags)
Forum: Plugins
In reply to: [Advanced Ads – Ad Manager & AdSense] Plugin crashes after latest updateIt’s with Jetpack’s auto update (which I’ve had trouble with in the past and have now disabled).
I did uninstall and reinstall the plugin through wordpress and got the same error, but just now I tried again and it seems to be working again. Going to guess it’s Jetpack’s fault if no one else is having the issue.
Forum: Plugins
In reply to: [Advanced Ads – Ad Manager & AdSense] Fatal error in latest versionStrange, looks like my server ran out of disk space and only Advanced Ads was affected, maybe it ended up half-updated. fixed the disk space issue and it seems to be working fine again!
Forum: Plugins
In reply to: [Advanced Ads – Ad Manager & AdSense] Fatal error in latest version7.3 latest security patch; the not enough arguments warning was elevated to an error as early as 7.1 though I believe
I understand totally, but can’t really help with that myself.
I did change my site back to Network-first instead of cache-first and that seems to have majorly reduced the issue, so when you’re working on the PWA plugin again I’d look into that.
Hope you get the new plugins all together and working soon then, this is fantastic plugin, can’t recommend it enough.
By the way it seems like this bug is new to one of the most recent versions, as I don’t believe I ever had the wordpress admin bar not load (one of the symptoms of this issue) until a very recent update.
Is there any simple function I can call to clear the abtf cache as a workaround?
Forum: Plugins
In reply to: [Patreon WordPress] Log in with patreon button goneWorks, thanks! Still the old Patreon logo, but not a deal breaker.
Forum: Plugins
In reply to: [Patreon WordPress] Log in with patreon button goneIt’s 1.0.2, just installed it from the wordpress repo today. The shortcode for “login with patreon” works (though it shows the old patron logo unlike the zip file version of the plugin). Login with patreon is enabled but I still see no button in wp-login.
If you logged in with Patreon while being logged out to your WP, then a new account should be created for you and you get logged in. Even if you are a patron or not. At this point Patreon login works like any other social login.
So is there any way to currently show content to people who are NOT patrons? My planned method won’t work if I’m reading that right, since anyone with a Patreon account, not necessarily patrons, would be able to avoid ads that way. And TBH, I would rather my site not have accounts for people who aren’t really patrons.
Great to know! I like the new name too, more accurately reflects what it is and should help convey to the user that it’s not a turnkey app. I’ve had a blast optimizing myself with it btw, even if JS can be very fussy with execution order; hardly your fault.
Seems like the new “register service worker after preload” option causes the audit to pass too. Doesn’t seem like there’s any significant performance reason not to?
- This reply was modified 8 years, 4 months ago by sirtaptap.
There’s probably a specific script you’ll want to either ignore or disable async. Standard debugging stuff, disable options in ABTF until the page works again and find what setting broke something. It’s probably Javascript related, issues I’ve had with the plugin always are; js is just real easy to break, but it’s really worth it to optimize.
Forum: Plugins
In reply to: [BJ Lazy Load] Do not lazy load above the foldWell I have half of what I wanted. Here’s what I did in my theme’s template-tags.php (in a modified twentysixteen theme)
if ( is_singular() ) : ?> <div class="post-thumbnail"> <?php the_post_thumbnail('post-thumbnail', array('class' => 'no-lazy')); ?> </div>Basically just apply the class if it’s a singular post (‘post-thumbnail’ is the thumbnail size my theme’s posts use, it might be different for you).
I’m stuck on trying to apply it to only the first post on a multi-post page (archives etc). I need to get the post count inside of
twentysixteen_post_thumbnail()and I’m not sure what to do beyond add a Count variable from The Loop and pass it all the way down totwentysixteen_post_thumbnail(). Which is probably just what I’m going to do.Forum: Plugins
In reply to: [BJ Lazy Load] Do not lazy load above the foldWas just about to suggest this. Love the plugin but it visually *adds* loading time because the first post thumbnail in Archives is loaded. I can disable “post thumbnails” which is perfect for post pages, but then Archives load a bunch of unnecessary images.
Being able to just avoid lazy loading the very first Post Thumbnail found on the page would pretty much solve my issues with it.
Has anyone edited this plugin or made their own JS/function to make this possible?