Bitmaniacs
Forum Replies Created
-
Forum: Plugins
In reply to: Lazy load "share" "1 " and "like" buttonsBelgium, actually.
Added the share function with Mashshare. The latest version does a descent job, using transient cacheing and sharecount.
You can see it in action here: https://www.kristofdevos.com/boekvoorstelling/
Forum: Hacks
In reply to: Caching custom social share count in WordPressThanks bcworkz & thanks a million Simalam!
That clears things up, thanks for taking your time to answer this!
Thanks ?? I added and English button, that helps ??
Thanks! I used it this way: https://www.kristofdevos.com/de-wekelingen/
Great plugin!
Forum: Plugins
In reply to: Lazy load "share" "1 " and "like" buttonsThat’s a shame! I just need the counter.
You’re from Denmark? Cool! My new book (I illustrate children’s books) is being released there in october and will be called Der Vejr Dreng, should be something as The Weather Boy, but I don’t understand a single word of Danish ??
Forum: Hacks
In reply to: Caching custom social share count in WordPressThanks bcworkz!
This sounds like a great solution … But beyond my endless limitations. Do you by any chance de freelance work?
Forum: Hacks
In reply to: Caching custom social share count in WordPressOr … Is there maybe an option to lazy load the social counter?
Forum: Plugins
In reply to: Lazy load "share" "1 " and "like" buttonsEver found a solution on this one?
Forum: Hacks
In reply to: Caching custom social share count in WordPressHmmm, looks good, but this is new to me, how does this actually work?
Forum: Hacks
In reply to: Someone is trying to hack my site.You could also add some extra security by adding this to your child theme’s function.php file:
/* Make failed logins ambiguous */ function wrong_login() { return 'Wrong username or password.'; } add_filter('login_errors', 'wrong_login'); /* Disable the WordPress file editor */ define('DISALLOW_FILE_EDIT', true); /* Remove WordPress version from the page meta data */ function remove_version() { return ''; } add_filter('the_generator', 'remove_version');