-
Search Results
-
Hi
I was wondering if we can use wpdm to count external clicks, so intead of uploading a file. We just redirect a user to another url and that counds as a ‘download’. Would that work if we just use the Insert URL option? https://i.imgur.com/VZCvbYi.png
Also is there an addon or a way with more reports/stats? We would need to get the number of downloads per quarter or per month and which ones were downloaded and how many times.
Topic: NO CLOUD STORAGE SETTINGS
Despite installing the WPDM ONE DRIVE add-on and completing the preparatory tasks, the section of the plugin for cloud settings is not displayed. Even when directly entering the URL for the CLOUD SETTINGS tab, the settings are not shown, but an error appears. https://www.example.com/wp-admin/edit.php?post_type=wpdmpro&page=settings&tab=cloud-storage How can this problem be resolved? The need is to use ONE DRIVE as external storage for the documents uploaded to the site.
Hi Team,
My setup is like this.
Usedmedia cloudplug-in to offload the medias to an External S3 compatible storage, setup with Minio.The files are offloaded OK, and all the medias will receive a new URL which is the URL of the S3 storage.
Then when I try to attach file from the media library in the WPDM package add interface, it will attach it, but when saving the package, it will not save the attachment. Nor when I try to insert file via URL.
See the screenshot here.

I had to upload the file from my server directory, from which I can see the file’s URL is a relative URL.
Is this because the WPDM do not accept this kind of setup?
Thanks
PDF Viewer has been giving us trouble, so I’m trying to create a page template with an iframe to embed my PDF previews in to test if this might work better for us. I have it set up and working properly if I put a link to a specific PDF in my template (For example:
https://mywebsite.com/wp-content/uploads/download-manager-files/myfile.pdf), but when I try to change the src url to make it dynamic, it doesn’t work. I need a shortcode for the direct file url (not download link), but I don’t see that as an option in my research.I’ve also tried just hard coding the beginning of the URL and adding the shortcode for the file list (example:
<iframe src="https://mywebsite.com/wp-content/uploads/download-manager-files/[file_list]"></iframe>), but that doesn’t allow me to add that file extension to the end of the URL just before because there’s html that is injected around that file name to put it in its own table:<div class="w3eden"> https://resources.advisorsexcel.com/wp-content/uploads/download-manager-files/ <div data-packageid="68947" id="wpdm-filelist-area-68947" class="wpdm-filelist-area wpdm-filelist-area-68947" style="position:relative"> <table id="wpdm-filelist-68947" class="wpdm-filelist table table-hover"> <thead> <tbody> <tr> <td> myfile.pdf</td>Does something like this exist or is there a way to create my own tag that would do this?
I am getting error while clicking on add new file from backend.
Live Chat Questions
1: Hello I’ve installed the shortcode to live chat on my page / Is it possible to add a specific user/owner to that live chat ? Also when I’m receiving the live chat message its not in real time that I’m getting them – I’ve to refresh the page to receive the message from my side but it remains idle at the side of the visitors chat ( i.e they can’t read my reply )
PM Questions
2:I’ve added the pm link here but when I click on it it doesnt do anything.3:How can I share the private url message dashboard to the owner, is there a standard link/login that I can share?
Looking forward to your reply – Thank you
On the login page where we have add the functionality shortcode for user login, there is a section under the User ID and Password fields that says
“Don’t have an account yet? Register Now”
The link on this text goes to a invalid URL and I cant find where to change this.
The URL it links to is exactly : https://goste.net/shareholders/login/custom%20registration%20page%20url/
Why is this not working for me? Is this a plugin issue or a setting issue on my end?
Topic: User Dashboard Customization
I do not see the “My Downloads” section in my user dashboard. How do I enable the “My Downloads” section for user dashboards?
Additionally, I would also like to know what the flaturl parameter in the User Dashboard short-code does and how I can use that parameter.
Topic: How to get download url?
Hello,
I am doing some work to add old versions of package files to ACF fields but i can’t appear to get the download url for a package file, how can i do this?
example of what i currently have
$files = get_package_data( $post_id, 'files' ); if ( $files ) { // Define the new row to add. $new_row = array( 'title' ► get_the_title(), 'date_added' ► gmdate( 'M d Y h:i:s A' ), 'files' ► array(), ); foreach ( $files as $key ► $file ) { if ( isset( get_package_data( $post_id, 'fileinfo' )[ $key ] ) ) { $new_row['files'][] = array( 'file_name' ► $file, 'file_type' ► get_package_data( $post_id, 'fileinfo' )[ $key ]['type'], 'file_size' ► get_package_data( $post_id, 'fileinfo' )[ $key ]['size'], 'file_url' ► get_the_permalink( $post_id ) . '?wpdmdl=' . $post_id . '&ind=' . \WPDM_Crypt::Encrypt( $key ), ); } } add_row( 'previous_versions', $new_row, $post_id ); }


