Help - How to redirect Website External Link from Custom Page

Discussion in 'Programming' started by Furquan Ahmed, Nov 29, 2016.

  1. #1
    Furquan Ahmed, Nov 29, 2016 IP
  2. Einheijar

    Einheijar Well-Known Member

    Messages:
    539
    Likes Received:
    13
    Best Answers:
    3
    Trophy Points:
    165
    #2
    Sounds like a custom page with just some meta fields, not too hard to create.
     
    Einheijar, Nov 29, 2016 IP
  3. Furquan Ahmed

    Furquan Ahmed Well-Known Member

    Messages:
    819
    Likes Received:
    76
    Best Answers:
    1
    Trophy Points:
    135
    #3
    Where is answer. If I knew this simple, I wouldn't asked here.

    I don't know why people just come & write useless words.
     
    Furquan Ahmed, Nov 30, 2016 IP
  4. Einheijar

    Einheijar Well-Known Member

    Messages:
    539
    Likes Received:
    13
    Best Answers:
    3
    Trophy Points:
    165
  5. lesleygreen47

    lesleygreen47 Greenhorn

    Messages:
    3
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    21
    #5
    You can use Page Links To plugin allows you to make a WordPress page or post link to a URL of your choosing. i found this information on
    http://apkadvisor.com/
     
    lesleygreen47, Aug 3, 2017 IP
  6. Laurent Jerome

    Laurent Jerome Member

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    31
    Digital Goods:
    2
    #6
    Create a redirect page on your site and use Javascript to make a timer the time of redirection.

    sample :

    <script>
    function redirect(url)
    {
    document.location.href=url;
    }

    setTimeout("redirect('http://www.google.com/')",5000);
    </script>
     
    Laurent Jerome, Aug 27, 2017 IP