Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author ZÆN

    (@zaen)

    Version 1.1, just added, has some bug fixes that may solve your issue. In particular, SplashGate had not been working for sites not using clean urls – that problem should be fixed now.

    I’m having a simliar problem. Just installed 1.1. lightbox works great but when page template is selected (which I would like to use) no redirect happens. It just stays on the page.

    Running wordpress 3.3 Would love to get this working

    Thanks

    Found a solution which you may want to implement in your plugin.

    where you have:

    if ( document.referrer.indexOf("<?php bloginfo('site_url'); ?>") != 0 ) {

    <?php bloginfo(‘site_url’); ?> is no longer valid, it should be <?php bloginfo(‘url’); ?>

    I also changed the if statement to the following to get more consistent results.

    if ( document.referrer.indexOf("<?php bloginfo('url'); ?>") == -1 ) {
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: SplashGate] Error 404 when active in WP 3.3’ is closed to new replies.