Thread Starter
tlesne
(@tlesne)
Hi and thanks for your quick response.
It appears our designer updated WordPress, did some others things and came back later with this fatal error.
We just updated VC (which is packaged in a theme) and your addon, and now everything works fine again.
Please accept my apologies for bothering you for nothing!
Hello,
I had the same problem.
I opened a topic in the forum of the plugin : https://wordpress.org/support/topic/php-fatal-error-call-to-undefined-function-vc_map_integrate_shortcode?replies=1
If it can help you, I applied the following change to avoid the fatal error:
--- class-lvca-testimonials-slider.php Wed May 11 11:00:58 2016
+++ class-lvca-testimonials-slider-fixed.php Wed May 11 11:02:31 2016
@@ -205,7 +205,7 @@
function map_child_vc_element() {
- if (function_exists("vc_map")) {
+ if (function_exists("vc_map") && function_exists("vc_map_integrate_shortcode")) {
$testimonial_params = vc_map_integrate_shortcode('lvca_testimonial', '', __('Testimonials', 'livemesh-vc-addons'));