Viewing 2 reply threads
You must be logged in to reply to this topic.
Hello,
I have Specular 1.3.5 installed. I just noticed that the staff position (front end) is not shown anymore on team single staff element. I have filled staff position in the backend and in earlier versions of the theme it was shown properly, but now I noticed it has disappeared.
Hello,
Sorry for the inconvenience.
Please go to file vc_templates\staff.php and find these lines:
/**
* Shortcode attributes
* @var $atts
* @var $staff
* @var $style
* Shortcode class
* @var WPBakeryShortCode_Staff
*/
$output = '';
$atts = vc_map_get_attributes( $this->getShortcode(), $atts );
extract( $atts );
Replace with these:
/**
* Shortcode attributes
* @var $atts
* @var $staff
* @var $staff_position
* @var $style
* Shortcode class
* @var WPBakeryShortCode_Staff
*/
global $cl_redata;
$output = '';
$atts = vc_map_get_attributes( $this->getShortcode(), $atts );
extract( $atts );
We will fix this in the next theme update. Which will be released very soon.
Best regards!
You must be logged in to reply to this topic.