Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello,

    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);
    });

    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!

    Hello,

    Nirmal’s solution works but I agree with HZC, there should be a checkbox on the admin side to disable this.

    Hasta luego,
    Ivan

    Forum: Fixing WordPress
    In reply to: cforms plugin

    Hi! 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

Viewing 4 replies - 1 through 4 (of 4 total)