• Resolved Sharon

    (@prettybiddy)


    Hi – I have used your theme to build a website and it looks great. Just one question. In the Team Member section on the home page template when the user clicks on a team member it doesn’t click through to the post containing the full bio. How could I get it to do that? Website is:
    https://owenjacobs.com

Viewing 1 replies (of 1 total)
  • Thread Starter Sharon

    (@prettybiddy)

    In case anyone else is interested in the fix…

    Please go to Theme folder you can find the file name template-home.php from line number 278 to 284 replace

    these lines:

    <img src="<?php echo $encrypted_image[0]?>" alt="<?php the_title(); ?>" />
    <div class="team_detail">
        <div class="team_member_name"><?php the_title(); ?></div>
        <div class="team_conten_hover">
            <div class="team_member_content"><?php echo encrypted_lite_excerpt(get_the_content(), $encrypted_team_char, true) ?></div>
        </div>
    </div>

    with these lines:

    <a href="<?php the_permalink(); ?>"><img src="<?php echo $encrypted_image[0]?>" alt="<?php the_title(); ?>" />
    <div class="team_detail">
        <div class="team_member_name"><?php the_title(); ?></div>
        <div class="team_conten_hover">
            <div class="team_member_content"><?php echo encrypted_lite_excerpt(get_the_content(), $encrypted_team_char, true) ?></div>
        </div>
    </div>
    </a>
Viewing 1 replies (of 1 total)
  • The topic ‘Team Member section on front page template’ is closed to new replies.