No need to zip the .eps file before uploading. Just tested a .eps file downloaded by WPDM. Works fine. Could you please send me the original file and the download link?
Yes, there is a template tag [pdf_thumb] that shows the PDF thumb ( first page of pdf ). In your link downloads are shown using WPDM link template. Now, to show PDF thumb you have to create a custom link template with this tag [pdf_thumb].
You can create custom link template from Dashboard Downloads Templates page.
After a user enters a password (correct or incorrect) the link displays “Processing” and freezes, as per the second screen shot. None of our downloads work any more.
We want to show all downloads from one category on one page with preview images.
Our downloads are only images (HI-RES) and we want to show our customers the complete category in a table format.
Preview Image, Download Size, Download Button
Thats it.
How do we do this?
I have linked to the category in our main menu, but it does not look nice. I also dont understand how to edit this category view.
Any help would be appreciated.
THX
PS: I have attached a screenshot from our current category view.
Looking at the file via FTP, the file doesn’t exist. I tried uploading a file as admin and it did not upload to the dir /wp-content/uploads/download-manager-files/
The file size is 131 KB and the WPDM Upload Setting limit is 1024KB chunk size.
I tried uploading on one of the other sub sites (technology) and had the same outcome.
Next, I created a new download package and that also had the same outcome.
It seems the add-on has a bug. After linking to S3 when we try to download it throws an fatal error saying Fatal error: Uncaught Error: Class ‘WPDM\libs\DownloadStats’ not found in …/wp-content/plugins/wpdm-amazon-s3/wpdm-amazon-s3.php:392
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.
Thanks for your reply. The solution your reference is simply to use a cli output option of wget, which is always available to anyone downloading a file from anywhere.
I understand WPDM generates dynamic download links, however, really only the keys are dynamic–the base url is always the same. Can you tell me what piece of code contains the ‘index.html’ static name? At least then I could change it to ‘billybob.zip’, or whatever…
I am not familiar with CSV bulk import. Here is a screen shot of what I am talking about. I can only attach one file. I have a folder that has 3 images in it. I want the user to be able to download the link and see all three images in the folder.
Sorry for the delayed reply. It seems there is nothing to do from WPDM side as wget uses the URL to name the file. WPDM download links are dynamic, it doesn’t contain the exact file name which wget can use to name the file.
But there is an option to set the file name and the download URL contains the package name. So, I think your users can utilize it.
Yes, you can control which columns to show for the [wpdm_all_packages] shortcode.
Here is the shortcode: [wpdm-all-packages items_per_page="20" jstable=1 order_by="date" order="DESC" cols="title|post_content|package_size|download_link" colheads="Title|Description|Size|Download"]
It is possible to keep the package download button open in the same session once the package is unlocked. You can add the following code after line 193 in /download-manager/libs/class.PackageLocks.php to apply it,
But it will require very lengthy modification to unlock single file links. For now, use this modification. We will consider what you proposed for the future release of WPDM.
Thanks Shahriar, I had the purchases page and the guest purchases page set up before but when WP Download Manager got updated, the short codes got changed and the old ones didn’t work anymore. I’ve sorted that out now with the new short codes.
I have re-enabled guest checkout and guest downloads. When I tested it with TestPay (after I had logged out of my site and using another browser), I received a purchase confirmation email that directed me to make a new account, but underneath that it said if you are in a hurry, no need to register – just go ahead and download. This is good because I don’t want my customers to have to register.
But today a customer forwarded his purchase confirmation to me and at that link there was no option to bypass registration. And he said he was having troubles with the captcha and could not register. Is there a way that I can avoid forcing my customers to register?
Regarding your advice with editing the purchase-confirmation template, I will try this, thanks.
DISCARD THIS MESSAGE I ALREADY FOUND OUT HOW TO FIX IT IN SETTINGS.
Hello there
We have changed our site’s login URL in WordPress and now all protected downloads show the old login page when an unregistered user attempts to download a protected file.
How do I make the plugin update the download link to show the new login URL in WordPress?
Thanks in advance.
I am using the Email lock option. When the site visitor gets the email with the download link, it appears as the package permalink, with the wpdmdl and _wpdmkey tacked on. Okay, that’s fine.
However, if the visitor copies that link, and then uses wget on the command line, the file saved is NOT the Link Label, or the permalink, but instead ‘index.html?wpdmdl=xxx&_wpdmkey=xxx….’
How can this be fixed? My site visitors are cli users, and do want to use wget and the like.
Ideally, I would like the saved filename to be the Link Label, as defined in the Package Settings.
Thank you for your answer, but it is not working.
I want to put a link to the shortcode “[wpdm_frontend]” and I put the code below to the function.php of the theme.
The result you can show on the image attached.
So the wpdm_frontend is opening in a frame of the dashboard, but I can not run the correct link if I click to the second time to “Add new”.
Can you help me to connect the “add new” button to the first button?
Best regards
Fatmir
// Use this filter to add menu items with author dashboard or remove any menu item from author dashboard
add_filter(‘wpdm_user_dashboard_menu’,’my_custom_dashboard_menus’,10,1);
// $menu_items is an array containing current menu items
function my_custom_dashboard_menus($menu_items){
// Removing edit profile menu
unset($menu_items[‘edit-profile’]);
unset($menu_items[‘subscription-plan’]);
unset($menu_items[‘subscription-download-area’]);
unset($menu_items[‘subscription-download-area’]);
//Adding new menu item using callback function
//$menu_items[‘new-menu-id’] = array(‘name’► __(‘Menu Title’,’text-domain’), ‘callback’ ► ‘CallbackFunction’);
//Adding new menu item using short-code
$menu_items[‘new-menu-id’] = array(‘name’► __(‘Add NEW’,’text-domain’), ‘shortcode’ ► ‘[wpdm_frontend]‘);
return $menu_items;
}
Author
Search Results
Viewing 25 results - 5,351 through 5,375 (of 9,507 total)