Forum Replies Created
Please go to the Downloads Settings Updates tab and log in to your WPDM account. Let me know if that doesn’t remove these warnings.
@shadowrunner, Please try now. Install the latest version if still getting the invalid key error.
Please replace the get_post($id) with $_POST in do_action call ( line 294 )
Then you can work with all post data from functions.php using the following code
function edit_package_frontend( $pack_id, $post_data ){
// Your code
}
add_action('edit_package_frontend','edit_package_frontend', 10, 2);
We will update the class.Apply.php on our side too for the next update.
Hi,
It is not possible to download the whole ( all attached files compressed in a single zip ) package when you attach file Google drive or any other third party server.
The zip option works only when files are in your server.
Thanks.
Hi,
Maybe you are using an older version of Download Manager Pro. The latest version of WPDM is 4.7.6
Please check if you have it. You can download latest version here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
Best regards.
Sorry, guess I misunderstood your bulk email feature. Do you want to export/collect subscribers email list from frontend?
It is possible through WPDM customized solution without the third-party plugin.
Looks like you are hosting on Siteground. Please add the following rule in your .htaccess file to fix the saving issue,
<IfModule mod_security.c>
SecFilterRemove 001868
</IfModule>
It is possible to add any custom link in details page using custom template tag. Where do you want the user to go back from details page?
After the plugin update, you have to re-do the step 2 I posted above. Just add the custom code in marked position.
You can also keep a backup of wpdm_decrypt_legacy function I added in your theme’s functions.php file. Because this function will be gone if you update the theme.
I can’t think of any other reason behind this issue. However, if this happens again ask the user to reload the page to check if they are logged in or not.
Where did you add the code? I couldn’t find it in your theme’s / child theme’s functions.php file. However, I added it on the child theme. Username is rendered correctly now.
https://www.evernote.com/l/AUdakJXtoCNPGLQAeHRNGFsTRknNFrrY4CwB/image.png
Download Manager doesn’t have any influence in this matter. I think your package/download page was indexed before adding the meta description. I do see the meta description in your page now. Re-indexing the page may fix the issue.
Hi Christine,
Your key is linked to conproco.com If you are having the license issue there, please install the latest version of Download Manager. You can download it here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
Deactivate and delete the old version before installing the new one. You won’t lose any data.
If you are trying to move the license to another site then I have to unlock it from conproco.com Let me know in that case.
Thanks.
WordPress has the auto-logout feature which logs out idle users periodically ( Default time is 48 hours but using plugins you can increase or decrease it ).
So, if a user opens the accordion page and doesn’t do anything right after opening it. After some time ( the period is greater than the auto logout time ) the user comes back to the accordion page he opened before but WordPress already logged him out. Now clicking the accordion will return -1 because he doesn’t have access to it anymore.
If the user reloaded the page before clicking accordion it won’t show the page content in your case because the user doesn’t have access without login.
You can test it by opening the accordion page and logging out from another browser tab. Then clicking the accordion will return -1.
Looks like your link template is not set correctly. Does your shortcode have this part link_template="link-template-panel-1-3"? You can send temporary wp-admin login info in private reply if you want me to check there.
The URL is generated by the [download_url] template tag. But it doesn’t generate the index.html in the download link. wget is setting this name as there is no static file name is URL.
You can modify the tag output if you want using this filter hook, https://www.wpdownloadmanager.com/doc/filter-reference/wdm_before_fetch_template/
Next version is coming within next 1 or 2 week. Fix will be shipped with it.
I checked the /download-manager-files/ dir. Those files don’t exist there. That’s why the file-not-found.txt is being served.
No, I think it works only on the backend. Btw, if you want this bulk import user feature implemented from frontend we can do it and just requires more customization time.
1 ) Added a new function wpdm_decrypt_legacy in your theme’s functions.php file.
2 ) Added some custom code in /download-manager/wpdm-start-download.php file.
if( $indfile == '' ){
if (isset($_GET['ind'])) {
$indfile = isset($files[esc_attr($_GET['ind'])]) ? $files[esc_attr($_GET['ind'])] : wpdm_decrypt_legacy(esc_attr($_GET['ind']));
} else if ($fileCount == 1) {
$indfile = array_shift($files);
}
}
https://www.evernote.com/l/AUeFGTYbxM5BgZ9SxlmqrvJ9iq3VYd9Ir20B/image.png
Now old file download links are working too.
Please share the email template you are using there. Are you sure you have the [#username#] tag there?
Or,
Please send temporary wp-admin login info in private reply for faster resolution.
Hi Loni,
Thanks for reporting this issue. We will resolve the issue in next release.
Best wishes.