For now I’ve turned off the plugin updates and I’m relaxed. If any major additions come up I’ll have to make the same edit by my own again.
Meanwhile ofc I hope the developers implement this the right way…
I solved my case by editing the wpdm-functions.php file inside the wpdm plugin folder.
Just replaced the div tag at line 530:
return "<div class='w3eden'>" . FetchTemplate($template, $data, 'link') . "</div>";
with a span of my own style:
return "<span id='my_link' class='w3eden'>" . FetchTemplate($template, $data, 'link') . "</span>";
Hope this to come in handy for you too.
I’m having the same exact problem.
I want to get the raw link to use it inline without the divs that create a block ruining my content format.