Viewing 1 reply thread
You must be logged in to reply to this topic.
Hello,
I want that each logo of my clients can take me to their respective websites, but I want that when clicking on the logo, the pages are opened in a new tab.
Is it possible to change this? If so, could you tell me how I can do it?
Best regards
Hello,
Try this manual fix:
1. Go to vc_templates/clients.php
2. Find this line: $output .= '<a href="'.esc_url($client['url']).'" title="'.esc_attr($client['title']).'">';
should be line 41
3. Replace with:
$output .= '<a href="'.esc_url($client['url']).'" title="'.esc_attr($client['title']).'" target="_blank">';
Let me know if you need further help
Thanks
You must be logged in to reply to this topic.