Hi,
Please unlock the key from your old URL. You can do it from the order details page. Just click the ey button and remove the domain from modal. Then save the key on your new setup. That will fix the “invalid key” issue.
The “invalid download link” issue doesn’t seem to be related to the key. Please check your package permissions again and if you can’t find any issue there send temporary wp-admin login info in private reply.
Thanks.
This reply has been marked as private.
Thank you. I’ve not checked that out yet but in the meantime, I’ve uploaded a test package, labeled Somebody23897349, this file contains 191 files and is a little over 1200 mb in size (this is on the smaller size of something we would be using this plugin for). When I click on download for this package, I get this link –
http://sebrieimages.com/download/somebody23897349/
then it redirects to
http://sebrieimages.com/download/somebody23897349/?wpdmdl=14566&refresh=5d8a13e90386e1569330153
And what ends up displaying is a generic parked domain page, as if the dns hasn’t been updated. I called my host and they said there wasn’t anything they could do on their end.
Also,
1. Some of the files in that test package were renamed with this prefix 1569258750wpdm_ by the plugin (It was only some at the end). I did a test upload as our users would upload, (only in the back end by going to downloads > add new) by leaving the upload to run overnight and in the morning hitting create package. This morning when I hit create package there was an error that said the link expired and it loaded a blank add package creation form. However, when I checked the package itself in the back end, it looks as if it uploaded fine, I just can’t download it because of the above issue.
2. Is there a way to get the files to save automatically without hitting create package on the front end?
3. When I update the plugin, will the custom edits stick or do I need to back up something?
Hi,
I try to build a shortcode, to show me the last 3 Downloads from a Category but i miss the Limit parameter.
[wpdm_category id="update-apk" operator="IN" order_by="post_date" order="desc" item_per_page="3" template="link-template-bsthumnail" cols="1" colsphone="1" limit="3"]
Found no info in the documentation for shortcodes how to limit the results.
Br
You have to create a custom link template to use the tag [file_thumb_0]
Clone an existing template and edit on top of it. After saving this custom template use the template id in your shortcode’s link_template
parameter.
Template customization how-to: https://www.wpdownloadmanager.com/building-a-wordpress-download-manager-link-template-from-scratch/
I use my Download Manager Pro on a local server, and it was working. i re-installed wordpress, and when i tried validating my license key it says “invalid license key” for the past two days. Then suddenly today i cannot download anymore, it says “invalid download link”. Please respond quickly it’s urgent.
I see that it stripped out my links. Let me try to add them
page on our site
Your demo page
Also, your related posts in this forum are showing horrible spam.
Hi,
We are adding a patch in next release to fix the issue.
For now, you can remove the following CSS from /download-manager/assets/css/front.css
file. You will find it at the bottom of the file.
.w3eden .link-template-default.thumbnail .wpdm-download-link.btn{
padding: 0 20px !important;
line-height: 48px !important;
font-size: 12pt;
margin: 0;
}
Best regards.
Hi Shahriar and All,
Please feel free to delete this message if you don’t want the link on your forum. I won’t be offended!
I have been using a plugin that allows me to edit Downloads and Users many at a time. You can edit almost everything about a Download, User and many other items. You can easily edit 100 Downloads to change the link template or picture or enable comments. I didn’t find anything I couldn’t edit yet and it has saved me hours or perhaps days of time.
Bulk Edit Posts and Products in Spreadsheet
That is the free version. You need the paid version to be able to edit WPDM Downloads. There are a few free versions available or there is a combination package for the paid version.
Anyway, I don’t usually mention something like this but it is so useful I feel like I have to post it. It is the solution I have been searching for to be able to bulk edit almost anything within WordPress.
Also, I think you won’t need to make the bulk import of users with memberships for me now. I think I will be able to use this. I’ll let you know.
Best wishes,
Mike
Hi
I am using pro version. I am getting problem with plugin.
https://url.upwork.com/_011iSvSAVwobCGVJ1NdPt1gQPq-aU_rV2j
all anchor link are converted into simple text(hyperlink removed). Please let me know
Regards
Virendra
1 ) Use global coupon for now. All other coupon related issues are already in our to-do list
2 ) You can use the extended page template or a custom template with [download_link_extended]
template tag to show embedded lock options instead of popup.
3 ) Invoice currency sign Will be patched in next updated
4 ) Fixed it on your side and have added the patch on my side too for the next update. You can use a custom template to add additional info. The template file is located here /wpdm-premium-packages/templates/partials/order-notes.php
5 ) The support of other posts types isn’t fully functional yet. It is still in beta.
6 ) Thank you for reporting this. We are going to fix this issue asap.
7 ) Although the UI is tab style the “+” sign is actually a different link, no JS involved in switching tabs. Not sure which plugin ( os is it the theme? ) disabled it. Please try deactivating plugins one by one to find out which one. As it is live site I would prefer if you do it yourself.
8 ) Here are the defaults, WPDM Category URL Base = downloads
WPDM Package URL Base = download
Archive Page Slug = all-downloads
9 ) Looks like you have already added the “View details” link here https://technicskeyboard.com/download-categories/
10 ) I do have plan to implement the bulk import add-on as soon as possible.
11 ) Links under “Download Categories” in sedebar widget are working fine for me https://technicskeyboard.com/blog/wpdm-category/technics-manuals/ ( Technics Manuals )
12 ) The category archive template comes from Settings > Frontend Access > Category Page Options settings. Use a link template there that doesn’t have a download button. Or you can use the Basic Style and check the pacakge info you want to display.
13 ) Yes, you can add both pdf and zip to the package. After purcahse user can download the files separately from dashboard. The pdf willl be stamped during download.
So, you are an Architect! It is a creative profession. Please do share your works whenvever you can. I do enjoy creative architecture although doesn’t have any technical understaning of it. Not long ago, watched the “The World’s Most Extraordinary Homes” on netflix and really loved it.
This reply has been marked as private.
1 ) /active-theme/download-manager/link-templates/
files won’t be overwritten by plugin update.
2 ) You can use the following code to bulk update page template, replace the template id with your actual id. This code should run only once. Add it and then visit any page. Then remove the code.
function wpdm_bulk_update_templates(){
$params = array(
'post_type' ► 'wpdmpro',
'posts_per_page' ► -1,
);
$packs = new WP_Query( $params );
while( $packs->have_posts() ) {
$packs->the_post();
global $post;
update_post_meta(get_the_ID(),'_wpdm_page_template','page_template_id');
update_post_meta(get_the_ID(),'_wpdm_template','link_template_id');
}
}
add_action('init', 'wpdm_bulk_update_templates');
Yes, I tried using either of those template tags, as those are the only attached file related tags I see in the documentation: https://www.wpdownloadmanager.com/doc/templates/template-tags/ I didn’t see any other way to show the attached files on the details page.
The Custom Field Addon makes it seem like you can simply use the field shortcodes. Are these shortcodes not available to the details page templates?
Details Page: https://www.screencast.com/t/CrYQjji56w
I would like that table of attached files (currently created with [file_list]) to look the same as the “Call To Action 3” Link template. Which is to say I’d like the icon, the filename, the file size, and the custom meta fields for each attached document that I have added to the package. Custom Meta Fields: https://www.screencast.com/t/Fk6DnVBltnCa
Yes, you can design the details page using a custom page template. Link template is a different thing, it is used for shortcode. When you are working with a page template, no link template is involved in any way.
However, I have to check your custom page template code. It is not clear what you meant by only file name + download button. Most probably you are using [file_list]
/ [file_list_extended]
template tag. These tags list files in tabular/box format.
Your custom meta won’t be displayed automatically on the page template. You have to create custom template tags to display that meta.
wdm_before_fetch_template
filter used to add custom template tag. Please check the doc here https://www.wpdownloadmanager.com/doc/filter-reference/wdm_before_fetch_template/
Also, share an illustration/mockup of your custom page template. I can provide better suggestion based on that.
This reply has been marked as private.
This reply has been marked as private.
But [wpdm_my_downloads]
show packages from all categories. It collects all packages the user can access and show them in a single page. It also provides the category filter option ( please check my screenshot above )
If you want to show packages from each category in a separate page then use category shortcode. Please check the shortcode documentation here https://www.wpdownloadmanager.com/doc/short-codes/wpdm_category-query-all-downloads-from-one-or-more-categories/
[wpdm_category id="category_slug" cols="2" toolbar=1 desc=1 item_per_page=30 template="link-template-panel.php" order_by="publish_date" order="desc"]
Please upload the file to dropbox or somewhere else and share the link in private reply.
The separation process depends on customization. Without knowing details I can’t suggest any specific way.
But usually, the customization is done via action and filter hook or custom template files to avoid touching core plugin. Please check the doc for reference https://www.wpdownloadmanager.com/docsfor/download-manager-pro/
What makes you think that it is the Updraft Plus backup plugin causing the option table to be modified like this? I backup my database every 4 hours with that software and the only time the templates ever disappear is occasionally right after I update Download Manager Pro.
If I create the custom templates manually in the /active-theme/download-manager/link-templates/
and /active-theme/download-manager/page-templates/
directories, will they be overwritten when I update Download Manager Pro?
“Page templates are used to render package details page”
If I can’t customize the way that the “package details page” displays the files in that package why would I ever send anyone to the package details page?
I’ve designed a very nice page to show the details of the package. However currently, no matter what I do it shows “file name” and download button for the files in that package. That’s it. I want it to show the nice custom download link section I created that also contains the 4 custom file attachment meta fields that I have added.
I’m trying to create a library of my packages. There is information in the package and the document that needs to be communicated to my users. The package will contain a variety of files such as a preview, a pdf, .doc, .docx, .jpg and .png version. They’ll download the version that meets their needs from the package.
This reply has been marked as private.
Hi,
Please use category shortcode to list all packages from one or more categories. Here is a sample shortcode. You have to replace the slug1
with your category slug.
[wpdm_category id="slug1," cols="1" toolbar=1 desc=1 item_per_page=3 template="link-template-calltoaction1.php" order_by="publish_date" order="desc"]
Please check the shortcode documentation here https://www.wpdownloadmanager.com/doc/short-codes/wpdm_category-query-all-downloads-from-one-or-more-categories/
And let me know if you have further query.
Thanks.
Hi,
Thanks for sharing the details of your recovery procedure. This might help someone else.
But the issue is not actually coming from WPDM. It happened during your backup/recovery process. The backup plugin modified the link and page template entry in the options table. We can’t control how a third party plugin handles the backup procedure.
But there is a solution for this if you want to keep using your current backup/recovery process. Use actual template files instead of using the template editor to create custom link/page template. You have to place the custom template files in /active-theme/download-manager/link-templates/
and /active-theme/download-manager/page-templates/
directory. The file name will be used as template id. Check out the code of the built-in template files to understand the naming procedure.
Best regards.
This reply has been marked as private.