how to hyperlink my homepage?

Discussion in 'Local Business WordPress Theme' started by artpeople, Jan 8, 2014.

Thread Status:
Not open for further replies.
  1. artpeople

    artpeople New Member

    Joined:
    Nov 27, 2013
    Messages:
    9
    Likes Received:
    0
    my website is www.bestkitsethomes.co.nz

    i have only the main page

    I want to hyperlink the whole page, a clickable link. so any visitor to my website who click anywhere on the page is taken to a different website.

    Can you please advise how to do this.

    Thanks for your time

    Regards
    shane​
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to header.php present in your theme directory and replace the current code
    Code:
      <body <?php body_class(); ?> style="background:url('<?php if (inkthemes_get_option('inkthemes_bodybg') != '') {
        echo inkthemes_get_option('inkthemes_bodybg');
    } else { ?><?php echo get_template_directory_uri(); ?>/images/bg.png<?php } ?>');">
    With code given below
    Code:
     <body onclick="window.location.href='ENTER YOUR URL HERE';" style="cursor:pointer; width:100%; height:100%;">
    Check image for reference

    2014-01-08_0230.png



    This will solve your issue.


    Thanks & Regards
    Gourav Shrivastava
     
  3. artpeople

    artpeople New Member

    Joined:
    Nov 27, 2013
    Messages:
    9
    Likes Received:
    0
    haha beautiful man! thanks :)
     
Thread Status:
Not open for further replies.

Share This Page