And if you want to play Private links (using permalink) change to 19
Hi i have the same problem. I solve this changing the code:
if ($hosts == ‘dailymotion.com’ or $hosts == ‘www.dailymotion.com’) {
if (strlen($paths)>=12) $vidID = substr($paths,7,6);
}
In archive sz-video-shortcode.php
The problem is in the substr($paths,7,6);
The links on dailymotion have now a seven chars not six,
change to this:
substr($paths,7,7);
And the problem solved 😀