The demo is built with https://wpattire.com/ theme along with wpdm pro and add-ons.
Please check these pages:
https://try.wpdownloadmanager.com/archive-page-default/
https://try.wpdownloadmanager.com/archive-page-flat/
Shortcode also mentioned on those pages.
We are releasing a new update free version 3.2.72 within next few hours.
However v4.4 is 8 year old pro version ( 4.4.0 – Oct 01, 2015 ). You need to update your copy to 6.3.5
Database update is mandatory. But, it will not cause any issue.
please update to 6.3.5
Hi,
You were seeing the error as CSV download was not enabled, you can enable csv download from here:
you should add it as shortcode parameter, change in core file will be erased by new update.
Hi,
sorry for your inconvenience. It is updated now 🙂
okay, got it, fixed in v6.3.4
in direct download link adding target=_blank
, shall open download link in new window.
Renewal cost is same as the first purchase cost as long as subscription is active. Any price increase will not affect old subscriptions.
You can see your subscription from here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
please update extended shortcode add-on, carousel is responsive now:
To add more field to email lock option, you will need the following add-on:
Only download manager pro can handle this, using Email Lock option: https://www.youtube.com/watch?v=1Kd6Sx1Ts6M&t=102s
Hi,If you get some free moments, please give us a 5* here https://wordpress.org/support/plugin/download-manager/reviews/?rate=5#new-post, it will inspire us a lot.
You’re welcome :).
Okay now. Had to update pdf stamper to v3.0.3.
Glad to hear that :). If you get some free moments, please give us a 5* here https://wordpress.org/support/plugin/download-manager/reviews/?rate=5#new-post, it will inspire us a lot. Thanks in advance :).
You simply need to update wpdm pdf stamper settings properly ( Demo: https://try.wpdownloadmanager.com/addons/wp-admin/edit.php?post_type=wpdmpro&page=settings&tab=pdf-stamper ). However, please send me temporary wp-admin login info in a private reply if you need assistance with the setup.
Here is a demo for that:
https://try.wpdownloadmanager.com/download/same-file-with-different-languages/
Attach all 3 files with the same package and add custom file title specifying the language. Then in link template, use [file_download_links]
instead of [download_link]
tag and in page template [file_list]
or [file_download_links]
@wafwa_admin, please create a new ticket.
We have fixed it, updated will be released within next 48 hours.
When are you seeing success message, the email/domain block option should work fine with user signup/login and download action.
Fixed for the next update, will be released within the next 48 hours.
You can use the following code to add package title with gravity form email:
add_filter( 'gform_pre_send_email', 'before_email' , 10, 4); function before_email( $email, $message_format, $notification, $entry ) { $field_id = get_option('__wpdm_gf_'.$entry['form_id'].'_fieldid'); $pid = (int)$entry[$field_id]; $email['message'] .= '<hr/>Package Name: '.get_the_title($pid); return $email; }