Link Services Images

Discussion in 'BusinessGrow One Page WordPress Theme' started by gwindylyn, Dec 2, 2013.

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

    gwindylyn Member

    Joined:
    Mar 16, 2013
    Messages:
    47
    Likes Received:
    1
    Is there any way to link the images under the Services section to the link specified under the Homepage Services Section?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.
     
  3. cecomputerexpertise

    cecomputerexpertise New Member

    Joined:
    Nov 26, 2013
    Messages:
    4
    Likes Received:
    1
    If I understand your question correctly, you want open the page by clicking the image in the Services section and not only when clicking on the heading.

    You can do this by directly editing the front-page.php file.

    Search the file for a line that reads:

    <img src="<?php echo inkthemes_get_option('inkthemes_our_services_image1'); ?>" />

    and change this to:

    <a href="<?php echo stripslashes(inkthemes_get_option('inkthemes_services_title_link1')); ?>">
    <img src="<?php echo inkthemes_get_option('inkthemes_our_services_image1'); ?>" />
    </a>

    Repeat this for the 3 other services and you're all set.
     
    gwindylyn likes this.
  4. gwindylyn

    gwindylyn Member

    Joined:
    Mar 16, 2013
    Messages:
    47
    Likes Received:
    1
    That worked perfect! Thanks so much. I really need to learn more PHP.

    Again thanks!
     
Thread Status:
Not open for further replies.

Share This Page