bones852
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoptimize] Font-awesome.min.css is not combinedYes, that clarifies. I’ll keep that in mind.
Thank you for help ??
Forum: Plugins
In reply to: [wp-Typography] Doesn't work when try to apply "the_content" filtersThat worked, thank you!
Forum: Plugins
In reply to: [Lazy Load XT] Console errorHello again.
Could you please update Lazyload XT .js files inside this plugin?
I’ve just did it myself and the error is gone. Works perfectly! Thank you!Forum: Plugins
In reply to: [Lazy Load XT] WP Multisite: Error when activating for networkIt works now.
Thank you!Forum: Plugins
In reply to: [Lazy Load XT] Console errorHello.
I’m experiencing same problem when I try to lazy load background images(
GET https://shigaev-local.pro.ru/design/kuhnya/undefined 404 (Not Found) jquery.lazyloadxt.extra.js?ver=1.0.6:200
WP Multisite with subdirectories.
Forum: Plugins
In reply to: [Lazy Load XT] WP Multisite: Error when activating for networkI’ve forgot to say that I’m using subdirectories for subsites
Forum: Plugins
In reply to: [BuddyPress Like] Remove Favorite Button not workingFavorite Button still persists because there is an error with jQuery.
add_action( 'get_header' , 'bp_like_insert_head' );
This line inscripts.php
adds script which should remove favorite button at the beginning of <head> tag. And that’s the problem: jquery wasn’t even added to <head> tag yet and thus won’t work.
I’ve changedadd_action( 'get_header' , 'bp_like_insert_head' );
toadd_action( 'wp_head' , 'bp_like_insert_head' );
and now everything is great.Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Add CAPTCHA (not using comment_form())Does Akismet put its captcha to comments? It’s just I thought it does. If it does I can’t see it on my custom comment form. And if it doesn’t then I’m sorry, it was a misunderstanding ??
I’ve forgot to say about that. Yes, I’ve created my own theme and custom comments form as well (that’s why I’m not using comment_form() function).