-
-
I’ve asked this before, but never received a reply, so I’m reposting.
<p style=”box-sizing: border-box; color: #393d40; font-family: ‘Open Sans’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif; font-size: 14px; line-height: 22px;”>Regarding this specific page: https://codeless.co/tower/business/about-us-2-2/</p>
<p style=”box-sizing: border-box; color: #393d40; font-family: ‘Open Sans’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif; font-size: 14px; line-height: 22px;”>I’d like to make the images and name below the image under Our Team clickable. How do I do that? I want each picture/name to go to an individual bio page.</p> -
Regarding this specific page: https://codeless.co/tower/business/about-us-2-2/
I’d like to make the images and name below the image under Our Team clickable. How do I do that? I want each picture/name to go to an individual bio page.
-
Hello,
Please go to file vc_templates/staff.php and replace all the code with this:
https://codeshare.io/Dc4g4I searched your previous posts but i did not find any other topic regarding this issue.
Let us know if you need further support.Best regards!
-
-
-
Hello,
Sorry but this requires customization that is not included in support. If you want to have a custom link for the team, a workaround is to use the socials links. Insert the custom link into one of the socials in the center bar. Change it’s icon via css.
Best regards!
-
Okay. I might do that for a quick fix. But in the future, it would be great if that were an actual feature.
-
-
regarding tamarwallace’s request above, I am also trying to achieve the same thing. Have my staff photos and names link to their respective bio pages. I see this reply above.
Hello,
Please go to file vc_templates/staff.php and replace all the code with this:
https://codeshare.io/Dc4g4I searched your previous posts but i did not find any other topic regarding this issue.
Let us know if you need further support.However, when I click on the codeshare link above, there is no code in the window at all, Am i missing something?
Any help yould be greatly appreciated!
- This reply was modified 8 years, 3 months ago by Kris. Reason: html tags
-
Hello,
@chuckylose,
1-To make the staff name a link to it’s profile, please go to vc_templates\staff.php file and find this line:
$output .= '<h5>'.esc_html(get_the_title()).'</h5>';
Replace with this:
$output .= '<a href="'.esc_url(get_permalink()).'"><h5>'.esc_html(get_the_title()).'</a></h5>';
2-To make the picture a link as well, in the same file find this line:
$output .= '<img src="'.esc_url($featured).'" alt="">';
Replace with this:
$output .= '<a href="'.esc_url(get_permalink()).'"><img src="'.esc_url($featured).'" alt=""></a>';
Let us know.
Best regards!
-
-
You must be logged in to reply to this topic.