Announcement

Collapse
No announcement yet.

Kill Login Bounce Page!!

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Kill Login Bounce Page!!

    Hello All,

    I'm trying to get rid of the bounce page that opens when an incorrect username or password is entered upon shop entry - I simply want the login page to immediately refresh instead of going to another bounce page for 5 seconds telling the customer to try again!! Can anyone tell me how to do this please??
    The page I'm referring to is: HERE

    (also, if I want to link directly to the login from an external site, what URL do I use?)

    Thks!!

    #2
    Hi,

    You can go into Design | Options | Shop Defaults and under 'Shopping Mode' you will see 'Bounce page Delay', you can reduce the bounce page delay time by making changes here.

    Kind regards,
    Bruce King
    SellerDeck

    Comment


      #3
      Already tried that - I think that controls the shopping cart bounce page(s) only??

      Comment


        #4
        Right then. You need to edit a file called 'Actinic.pm' which is in your 'Site1' folder.

        Open this file in Notepad and search for the word 'refresh'. You will find two instances of lines that look like this:
        Code:
        $sMetaTag = "<META HTTP-EQUIV=\"refresh\" "; # refresh message
        $sMetaTag .= "CONTENT=\"$nDelay; URL=".$sRefPage."\">\n";
        change it to read
        Code:
        $sMetaTag = "<META HTTP-EQUIV=\"refresh\" "; # refresh message
        $sMetaTag .= "CONTENT=\"0; URL=".$sRefPage."\">\n"; # $nDelay
        Do exactly the same in the second occurence of 'refresh'.

        That should fix it.

        Comment

        Working...
        X