• Hello ,

    Is it possible to use “the meta refresh” like this :

    <head>
    ...
    .....
    <meta HTTP-EQUIV="Refresh" CONTENT="3;URL=<?php bloginfo('home'); ?>/">
    ..
    </head>

    After 3 seconds , the same page come back
    Can someone help me ?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Gabriel Reguly

    (@gabriel-reguly)

    Hi,

    Which theme are you using?

    Thread Starter Stephane

    (@passimal)

    Hello,
    I test Simple Splash in test site … and a personal theme
    I modified the header.php …
    I dont want to click enter to go to my web site
    So if I use the Meta refresh with temporisation of 3 seconds …

    But I think it ‘s no possible due to referer ….

    ( my web site for test is here : https://www.bealcost.com/sitetest/)

    Best regards …

    Gabriel Reguly

    (@gabriel-reguly)

    Hi passimal,

    The trouble is that you are redirecting to the home page, the plugin will catch your redirect and once more show you the ‘splash.php’ page.

    You should redirect to another page, not the home page.

    Why not create a ‘redirect-home.php’ page?

    <?php
    header('location:https://www.bealcost.com/sitetest/');
    ?>

    Just add the above code to it, and it should work.

    Pay attention to have no empty lines before the code, else it will not work.

    Regards,
    Gabriel

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: SimpleSplash] simplespash’ is closed to new replies.