-
Dear Support,
with the new VC Version 4.8.1 I get the following error in my WordPress-Site (4.3.1):
_shortcode_param ist seit Version 4.4 veraltet! Benutze stattdessen vc_add_shortcode_param. in /var/www/html/mrWeb/wp-includes/functions.php on line 3406
I checked the code of all plugins I use and found, that your Plugin uses the function “add_shortcode_param”, which is deprecated in VC.
Because I dont know how fast you’ll correct this issue – should I replace your function-call off “add_shortcode_param” with the following?
For example, change your line 16 in:
if(function_exists(‘vc_add_shortcode_param’))
vc_add_shortcode_param(‘dhvc_form_textarea_variable’, ‘dhvc_form_textarea_variable_field’);
if(function_exists(‘add_shortcode_param’))add_shortcode_param(‘dhvc_form_textarea_variable’, ‘dhvc_form_textarea_variable_field’);
Regards
Axel
error because you use deprecated function
This topic is: not resolved