Viewing 4 reply threads
You must be logged in to reply to this topic.
Hi,
I’m trying to show the staff position and social networks in a Single Staff (Visual Composer) but there are a problem, because in my team page, when I put a single staff only show the freatured image, description and name.
Anyone can help me?
Can confirm… at least the link for the email is completely missing from the DOM so visual composer bug or specular related?
I think I’ve solved the problem. If you edit the file Staff.php and add the following line, the problem will be solved while we wait for the next version. Add this:
global $cl_redata;
Hello,
We are sorry for the inconvenience. Please go to file vc_templates\staff.php and add these lines:
global $cl_redata;
extract(shortcode_atts(array(
'staff' => '',
'style' => 'style_1'
), $atts));
right after the php opening tag and before $output = '';
It should become like this:
<?php
global $cl_redata;
extract(shortcode_atts(array(
'staff' => '',
'style' => 'style_1'
), $atts));
$output = '';
The links for email and other social media is shown when you choose the first style.
Best regards!
You must be logged in to reply to this topic.