I had the same error. Problem was in class-wpvr-admin.php
I have replaced this:
wp_localize_script(
$this->plugin_name,
'admin_url',
admin_url()
);
with this:
wp_localize_script(
$this->plugin_name,
'admin_url',
array('admin_url()')
);
And error message is gone. What do you think about this solution Jahir?
-
This reply was modified 3 years, 1 month ago by darkoth.
-
This reply was modified 3 years, 1 month ago by darkoth.