manuelkuhs
Forum Replies Created
-
Forum: Plugins
In reply to: [Table of Contents Plus] Doesn't Fully Work with WP 3.8Yes was using shortcodes and [no_toc] fixed it – as did adding the exception, thank you!
Again, thanks for a great plugin.
Forum: Plugins
In reply to: [gee Search Plus, improved WordPress search] [Feature Request]That’s a great idea, thank you, I’ll do that!
Thanks lifeinthegrid – clearly I should have actually read the warnings!!
Keep up the good stuff
lifeinthegrid,
(thanks for such a fantastic plugin!)
There is still an issue, at least when using Better WP Security to rename the wp-contents directory. Duplicator does NOT update the 2 lines that Better WP Security adds to the top of wp-config.php:
define( 'WP_CONTENT_DIR', '/home/user/public_html/wp-content' );
define( 'WP_CONTENT_URL', 'https://example.com/wp-content' );After manually updating these, it worked fine.
I’m quite sure it’s a .htaccess issue. I had the same issue; deleting .htaccess solved it – until installer.php extracted the archive, which wrote another .htaccess that gives the same problem. Now I’ll have to find what part of the .htaccess causes the issue and remove it from the archive…
Forum: Plugins
In reply to: [Simple Links] 2.0 malfunctions when link description includes HTML linksperfect, that fixed it!
thanks for such a quick fix ??
[posted in wong thread, sorry]
perfect, works now ??
I think this is the fastest reply to a support ticket that I’ve ever gotten! ??
Thanks for a great plugin.
Forum: Plugins
In reply to: [QuickShare] Insert using Shortcodegreat thanks so much ?? keep up the good work!
Forum: Plugins
In reply to: [Simple Links] Allow Custom Styling via CSSgreat thanks!
I haven’t checked if this is what you’ve done, adding unique ids is of course fantastic fo styling specific links, but I was actually looking for something more general, such as having the following your plugin code (over-simplified):
<h3 class="simple_links_title"><?php simple_links_title(); /></h3>
<span class="simple_links_description"><?php simple_links_description(); /></span>great, thanks!!
frods, you’re welcome.
Just had a quick look at your site, using something like https://www.ads-software.com/plugins/ewww-image-optimizer/ should fix all your image “problems” reported by Google PageSpeed Insights.
Here’s what I figured out about how to eliminate all render-blocking JS & CSS:
Install W3 Total Cache
Go to Minify
Use the “help” wizard that you can see as a button near the top
Accept the suggestions without making changes. This will combine all your CSS files into 1, and all your JS files into 1, 2 or 3, depending where you load them (if you load all in the same area, e.g. in the <head>, you’ll only get 1 combined file).
Set all JS to “Non-blocking using Async”.
Now test your site. If everything works, the only blocking CSS/JS file left should be your combined CSS file, and nothing else.
Most likely some JS functions won’t work properly anymore. If this is the case, it gets a bit more complicated.
In this case, try the following:
Remove all the JS files in the Minify settings of W3Open the source of your functioning page where no JS files are combined and manually add to W3 Minify ONLY the JS files found in the header (since these are the ones “above the fold”) and IN THE ORDER that they exist in your source file. Try this. If it works, try moving them all into the <body> or just before the </body> using the Minify JS settings.
In my case, I had a strange issue whereby combining jquery.js with the other JS files broke many js functions that depend on jquery even though they loaded after. To get around this I made jquery.js load on its own after <body>, and made all the others load combined just before </body>, with everything set to load using async.
Using this method, the only “above the fold” problem I have is the combined CSS sheet.
If your combined CSS is small, you can try inlining the entire thing.
If not, the only way around this that I currently know is to manually inline only the relevant parts of this combined CSS, and then to load the combined CSS in the footer using JS.
If someone knows of a way to automatically inline only the relevant CSS, I’d be very happy to hear!
Forum: Plugins
In reply to: [W3 Total Cache] JS Minify SettingsI’d be interested in the answer to this also!
Forum: Plugins
In reply to: [Slim Jetpack] Conflict with Genericon'd (Fixed in Jetpack)Thanks ?? Unfortunately I can’t test it because Genericon’d has already implemented a fix of its own, which I had already applied. Thanks anyway!