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?
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">';