#1534 No redirecting to inbox after sending a PM Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
+3
SLGray
Swedegfx
multiverse
7 posters

    #1534 No redirecting to inbox after sending a PM

    avatar
    multiverse
    Forumember


    Posts : 153
    Reputation : 2

    Solved #1534 No redirecting to inbox after sending a PM

    Post by multiverse April 14th 2015, 9:28 pm

    the forum used to redirect back to the inbox after sending a pm (little time delay, but still better than no redirection at all) and now it does not.

    would like that to return please
    Swedegfx
    Swedegfx
    Forumember


    Posts : 53
    Reputation : 3
    Language : English

    Solved Re: #1534 No redirecting to inbox after sending a PM

    Post by Swedegfx April 15th 2015, 5:18 pm

    Hi,

    Having the same problem which appeared a few days ago. Was so surprised that I did not come back to the Inbox.

    Thanks for posting this issue multiverse!

    Oh btw it is on my phpBB3.
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51506
    Reputation : 3519
    Language : English
    Location : United States

    Solved Re: #1534 No redirecting to inbox after sending a PM

    Post by SLGray April 15th 2015, 11:26 pm

    Where is it redirecting to?



    #1534 No redirecting to inbox after sending a PM Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Swedegfx
    Swedegfx
    Forumember


    Posts : 53
    Reputation : 3
    Language : English

    Solved Re: #1534 No redirecting to inbox after sending a PM

    Post by Swedegfx April 16th 2015, 1:54 am

    It only shows:

    Your message has been sent.
    Click here to return to your Inbox
    Click here to return to the Index


    It always returned to the Inbox but not now.
    You have to push that 2nd line to come back to the Inbox.

    Sorry if I answered...
    avatar
    multiverse
    Forumember


    Posts : 153
    Reputation : 2

    Solved Re: #1534 No redirecting to inbox after sending a PM

    Post by multiverse April 16th 2015, 6:26 am

    yea, doesnt redirect to anything. and it is major annoying considering how useful it was before when it went directly back to the inbox before
    Stephen-
    Stephen-
    Hyperactive


    Male Posts : 2542
    Reputation : 326
    Language :

    Solved Re: #1534 No redirecting to inbox after sending a PM

    Post by Stephen- April 16th 2015, 6:33 am

    Hi,

    Have you tried using other browsers ?
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13246
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: #1534 No redirecting to inbox after sending a PM

    Post by Ange Tuteur April 16th 2015, 10:13 am

    I never really noticed, but I don't think it ever automatically redirected after sending a private message. Are you maybe confusing it with making a post in the forum ? blackeye


    I checked and there's not meta refresh, but we can use the pathname and document title as conditions for redirecting to the privmsg list. Go to Administration Panel > Modules > JavaScript codes management > Create a new script

    Placement : In all the pages

    If you want it to be instant, paste the following script as the content :
    Code:
    if (/\/privmsg/.test(window.location.pathname) && document.title == 'Information') window.location.pathname = '/privmsg';

    If you want it to wait a few seconds, paste this script as the content instead :
    Code:
    (/\/privmsg/.test(window.location.pathname) && document.title == 'Information') && window.setTimeout(function() {
      window.location.pathname = '/privmsg';
    },3000);
    Modification : change 3000 to change the amount of time that has to elapse before redirection. ( 3000ms = 3s )

    Note : The document title is English, if you're using another language and the title is not Information, be sure to change it to your language. I'm talking about this condition :
    Code:
    document.title == 'Information'

    The title is visible from the tab name Wink
    #1534 No redirecting to inbox after sending a PM Captur27
    avatar
    multiverse
    Forumember


    Posts : 153
    Reputation : 2

    Solved Re: #1534 No redirecting to inbox after sending a PM

    Post by multiverse April 16th 2015, 6:26 pm

    i didn't confuse anything. it used to auto re-direct to the inbox after a moment. someone with a diff forum said the same thing.

    this is an issue with the server in general handling our type of forums.
    FrOsTyXi
    FrOsTyXi
    Forumember


    Male Posts : 460
    Reputation : 12
    Language : english

    Solved Re: #1534 No redirecting to inbox after sending a PM

    Post by FrOsTyXi April 16th 2015, 6:33 pm

    @Ange Tuteur Very nice snippet that worked great!  I will say i think I remember a inbox redirect, not sure though.
    Swedegfx
    Swedegfx
    Forumember


    Posts : 53
    Reputation : 3
    Language : English

    Solved Re: #1534 No redirecting to inbox after sending a PM

    Post by Swedegfx April 17th 2015, 5:22 pm

    I have been on 3 different graphic forums for some years and sent PMs daily. All forums are hosted by Forumotion.
    We always came back to the Inbox after sending a PM but not anymore since a few days.
    Does not matter which browser you use, the function is gone.

    However, I will try the above codes but first checking with the members if they think it is an issue or they can live with it.

    Thanks for the codes!

    Have a lovely Friday!
    avatar
    multiverse
    Forumember


    Posts : 153
    Reputation : 2

    Solved Re: #1534 No redirecting to inbox after sending a PM

    Post by multiverse April 20th 2015, 5:46 pm

    questions...

    will the FM staff return the auto redirect back to normal functionality like before?

    if not, inserting ange's code will only do whatever after sending a PM?
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13246
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: #1534 No redirecting to inbox after sending a PM

    Post by Ange Tuteur April 20th 2015, 6:02 pm

    multiverse wrote:questions...

    will the FM staff return the auto redirect back to normal functionality like before?

    if not, inserting ange's code will only do whatever after sending a PM?
    I can check with them Wink

    The script will redirect you to the PM page after send a PM. Either instantaneous or like before, it depends on what you prefer.
    Shadow
    Shadow
    Manager
    Manager


    Male Posts : 16217
    Reputation : 1831
    Language : French, English

    Solved Re: #1534 No redirecting to inbox after sending a PM

    Post by Shadow April 21st 2015, 4:33 pm

    Hello

    You are true. After sending a PM, it used to redirect to the inbox. I've reported the problem to our technicians in order to know if it is a bug or a choice Smile

    Thanks for your patience  

    Ps: Next time, thanks for providing the url of your forum. 
    avatar
    multiverse
    Forumember


    Posts : 153
    Reputation : 2

    Solved Re: #1534 No redirecting to inbox after sending a PM

    Post by multiverse April 25th 2015, 6:54 pm

    just checking in on this because i've been putting off doing ange's workaround due to thinking the feature was coming back?

    and since asked, link is: http://mugenmultiverse.fanbb.net/forum
    Shadow
    Shadow
    Manager
    Manager


    Male Posts : 16217
    Reputation : 1831
    Language : French, English

    Solved Re: #1534 No redirecting to inbox after sending a PM

    Post by Shadow June 2nd 2015, 11:22 am

    Hello

    For your information, this problem has been solved today. Smile Thanks for your help :party:
    Swedegfx
    Swedegfx
    Forumember


    Posts : 53
    Reputation : 3
    Language : English

    Solved Re: #1534 No redirecting to inbox after sending a PM

    Post by Swedegfx July 8th 2015, 11:02 pm

    Thank you so much! It is great that it is back!!! ~1~

    :party: :party: :party: