happyches
Forum Replies Created
-
Forum: Plugins
In reply to: [Worth The Read] Possible to display Word Count?Thanks for the fast reply ??
Thanks for the suggestion, but my website has maybe over a million footnotes already with the (( footnote )) shortcode, so the work to update all the posts and manually re-add them is not something I ever want to attempt hehe, but hopefully I can find an alternative that uses (( )) or a similar shortcode (where I can do a find & replace for (( )) in the database to something else; although not something I’m comfortable with; but it’s at least an option I can look out for), but don’t want to use something that I have to re-add every single entry manually… I already work for free, but that’s a free job that I don’t ever want to tackle hehe ??
Thanks for the suggestion, I found the problem and I’m pretty devastated to find out that it’s the “footnotes” plugin; https://www.ads-software.com/plugins/footnotes/
Which, unfortunately, is a plugin that is no longer supported, but it’s my references plugin (and every post is fully-referenced and must be in this day & age unfortunately or no-one believes you), so I guess I won’t be able to solve the problem until I can find an alternative references plugin that can use the exact same format that all my references use, which is a quest I’ve been on every 4 or so months with no luck ??
Anyway, at least I found the culprit and there’s probably not a lot you can do about it on your end, since this plugin is probably going to cause other problems as everything around it gets updated and it’s left behind with the dinosaurs.
I found the problem, I had a page and it had a whole bunch of old code on it that was still loading, despite the wordpress using that page to show blog posts — basically “My fault, not the fault of the plugin”… all fixed by deleting all the content out of the blog post.
Add open=”no”
[su_accordion][su_spoiler title="title" open="no" style="fancy" icon="plus" anchor="" anchor_in_url="no" class=""]
- This reply was modified 2 years, 4 months ago by happyches.
How weird, I went to troubleshoot my security plugins but before I changed anything, it had rectified itself… I wonder if it might of been my host, but all good now without changing anything (odd – thanks)
Forum: Plugins
In reply to: [footnotes] Custom CSS for Jumbled References?Although I’m not quite sure what you are asking, it’s kind of confusing, but I wonder if I’ve installed a plugin that removes ‘displaying’ the version on plugins, because that sounds like something I would’ve done in the past.. don’t want to send you on a wild goose chase though but I’ve installed things in the past for security (my site has been hacked/attacked hundreds of times over the years), and I remember at some stage clicking on something to remove version information.
The plugins that may do this is
1.) clearfy (I’ve checked a box that is only supposed to remove the wordpress version)
2.) sucuriscan (also supposed to remove wordpress version)
Neither of them look to have any obvious settings to remove versions from stylesheets or plugins but it’s possible. I’m just bringing it up in case it’s something like that you are looking for, I’m completely clueless as to what you are seeking, so please disregard my comment if it’s not relevant ??Forum: Plugins
In reply to: [footnotes] Custom CSS for Jumbled References?I also use Shift8 CDN if that has anything to do with what you are asking? Just clicked a button to do a server-side cache empty (not sure if that’s also what you are asking). If you do need to reach out to the host (Inmotion) or Shift8 CDN that’s fine with me, (although I’m not sure how helpful they will be) x
Forum: Plugins
In reply to: [footnotes] Custom CSS for Jumbled References?Just updated to the latest version (not the development version) and the page looks heaps better and easier to read – thank you ?? https://pennybutler.com/cure-emphysema/
Forum: Plugins
In reply to: [footnotes] Custom CSS for Jumbled References?Thanks, I upgraded the plugin but it’s still a bit weird and I also tried adding the custom CSS but that didn’t really fix it. I’m sure it used to work fine, but I can’t remember if I was using this theme or a different one at the time.
Forum: Fixing WordPress
In reply to: Page permalink keeps changingOh Frank thank you so much for posting this..
disabling Facebook Thumb Fixer solved it for me..
Oh this has been driving me crazy for a year
So much gratitude!!Shortcodes > Settings, then “Settings” again (middle tab, top). ‘Shortcodes prefix’
Forum: Plugins
In reply to: [Comments Evolved for WordPress] Facebook App ID and Comments ModerationI would also like to manage comments.. just realized people have been commenting and I didn’t respond to them cos I wasn’t notified somehow..
Forum: Plugins
In reply to: [Comments Evolved for WordPress] WooCommerce and Comments evolvedI’d like to know the same thing.. +1 for someone to answer this one ??
Forum: Plugins
In reply to: [BJ Lazy Load] Problem with CloudflareI thought it was the same problem, but we have different problems. I’m not using RocketLoader.
Here is a detailed answer on how to do what you want though:
You add the code in your theme’s function.php
The only problem with that code though, is that it seems you have to add a list of all the .js files you want to optimize? But maybe it will work if you just add what you don’t want to optimize…
So if I was using Rocket Loader, I would first be trying something like this in my themes function.php:
function rocket_loader_attributes( $url ) { $ignore = array ( 'https://mydomain.com/wp-content/plugins/bj-lazy-load/js/combined.min.js', ); if ( in_array( $url, $ignore ) ) { // this will be ignored return "$url' data-cfasync='false"; } return $url; } add_filter( 'clean_url', 'rocket_loader_attributes', 11, 1 );
But if that doesn’t work, then you might have to add the full script at that url, with all the js files you want to optimize, which sounds like too much drama.