imelgrat
Forum Replies Created
-
Forum: Plugins
In reply to: [AddToAny Share Buttons] Fade-in and Out with scrollHello,
The plug-in is great, especially because it’s AMP-enabled. I also enabled a show-on-scroll feature on my website but I added a “debounce” function to prevent jerky response or consuming too many resources.
var debounce_timer = 0; // Used by debounce function
var min_height = 250; // Minimum height for showing the buttons
var ms_debounce = 250; // Debounce time (in ms)$(window).scroll(function()
{
if (debounce_timer)
{
window.clearTimeout(debounce_timer);
}
debounce_timer = window.setTimeout(function()
{
var y = jQuery(this).scrollTop();
if (y > min_height)
{
jQuery(‘.a2a_floating_style.a2a_vertical_style’).show();
}
else
{
jQuery(‘.a2a_floating_style.a2a_vertical_style’).fadeOut();
}
}, ms_debounce);
});Forum: Plugins
In reply to: [WP Fastest Cache] Plugin causing 403 error with Google?Hello,
I’m also using version of 0.8.6.0 and the plug-in still throws 403 errors (only the first time a page is visited bu PageSpeed). Apparently, the error is caused when there’s no cached version of the page. When the paged has been cached, the error is not thrown.Great plug-in Emre!
Forum: Plugins
In reply to: [WP Responsive Menu] Menu opens when swiping left on iPhone.Hello,
Nirmal’s solution works but I agree with HZC, there should be a checkbox on the admin side to disable this.
Hasta luego,
IvanForum: Fixing WordPress
In reply to: cforms pluginHi! I installed the cforms II plugin (on WP 2.2.1) and suddendly my posts generated 403 errors. I solved the problem by turning off the plugin until I find what the problem is.
I tried disabling all other plugins without success, and the problem disappeared as soon as cforms was disabled.
Any ideas?
Regards,
Iván