Hello,
I have the exact same issue.
I’m not using any addon or custom template.
But it’s clear in standard template code that all the versions has the same url. Basically, the plugin never knows how to distinct between versions based on the url.
Here is the fix:
Change the code at the standard template file in
wp-content/plugins/download-monitor/templates/content-download-version-list.php
or in your custom template, where it’s
href="<?php $dlm_download->the_download_link(); ?>"
to this:
href="<?php $dlm_download->the_download_link(); ?>?version=<?php echo $version->get_version_number(); ?>"
Then it works perfectly.
-
This reply was modified 8 years, 3 months ago by JAssist.