Bruno
Forum Replies Created
-
You can try plugin “Remove Google Fonts References”
Forum: Reviews
In reply to: [Remove Google Fonts References] Didn't workThanks for you reply.
Yes, maybe there’s a plugin conflict.
Hope you can find out where the problem is.
Forum: Plugins
In reply to: [Simple Lazyload] How to disable in some pages?You are welcome, and thanks for your praise and suggestions.
Forum: Reviews
In reply to: [Remove Google Fonts References] Didn't workI have test this issue under envirement: “Attitude 1.8” + child theme + “Remove Google Fonts References v2.5”, there’s no google font loads any more.
My plugin dose work properly.
Please check on it.
Forum: Reviews
In reply to: [Disable Google Maps] 非常好用的工具谢谢你的支持!
Forum: Plugins
In reply to: [Remove Google Fonts References] Can I exclude a font?Sorry, this’s no simple way to exclude specific fonts.
Forum: Reviews
In reply to: [Useso take over Google] Perfect!!谢谢支持
Forum: Reviews
In reply to: [Simple Lazyload] 简单 实用谢谢支持!
Forum: Plugins
In reply to: [Simple Lazyload] How to disable in some pages?Glad to hear that.
charging icons not displaying, i have found the reason:
unnecessary styles defined in file “/wp-content/plugins/jetpack/css/jetpack.css”
.tiled-gallery .tiled-gallery-item img, .tiled-gallery .tiled-gallery-item img:hover{ background: 0 0; }
;
you must remove this line: “background: 0 0;”
or add additional styles in your website’s source files(eg: before </head> tag in header.php):
#page .sl_lazyimg { background: url(https://www.jangadafilmes.com.br/wp-content/plugins/simple-lazyload/loading2.gif) no-repeat center center; }
Forum: Plugins
In reply to: [Simple Lazyload] Not working with 4.2.2And it is working properly with wordpress 4.2.2.
Forum: Plugins
In reply to: [Remove Google Fonts References] Font's not removed version 2.5So sorry for late reply, what theme are you using?
And give me a list of plugin installed on your website.
Forum: Plugins
In reply to: [Disable Google Maps] disable theme but not the pluginsSorry, this plugin is born to disable all google map APIS.
Forum: Plugins
In reply to: [Simple Lazyload] How to disable in some pages?I have tested on my mashine, there’s no conflicts between “Simple Lazyload” and “Kiwi Logo Carousel”. So there must be some other reasons why you have occured this issue.
Forum: Plugins
In reply to: [Simple Lazyload] Not working with 4.2.2Is there someplace i can check on it.
Forum: Plugins
In reply to: [Simple Lazyload] How to disable in some pages?Thanks for your feedback.
First question, there’s two ways to avoid lazyload.
If you want homepage don’t use lazy load, you can add a add_filter in functions.php of current theme. Here is the code:
add_filter(‘simple_lazyload_skip_lazyload’, ‘simple_lazyload_skip_lazyload_func’);
function simple_lazyload_skip_lazyload_func($skip_lazyload) {
if (is_home()) {
return true;
}
}If you want some specified images don’t use load load, you can add ‘skip_lazyload’ class or attribute to them. After added, images’ source code may like this:
<img src=”https://www.xxx.com/images/1.jpg” skip_lazyload/>
<img src=”https://www.xxx.com/images/2.jpg” skip_lazyload/>
<img src=”https://www.xxx.com/images/3.jpg” skip_lazyload/>For the second one, i will test it on my mashine, and fix it asap if neccesary.