On my test, the shortcode is already working exactly as you want. Please send temporary wp-admin login info in private reply if the shortcode result is different in you case.
Hi,
Downloaded zips are working fine on my test. Tested both packages http://prntscr.com/pov1em Has this issue been resolved or are you still experiencing it on your side?
Best regards.
Hi,
You have to add the key to your site. Go to the Downloads > Settings > License Key Tab. Put the key there and save settings.
If you are getting the error then install the latest version to fix the issue. Follow these steps to update the plugin,
1 ) Deactivate and delete the old version. You won’t lose any data.
2 ) Download latest version from here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
3 ) Install the latest version and activate the license key.
Thanks.
Tag dropdown is not available, requires code customization. It is possible to implement the exact solution you want through code customization.
Hi,
I have deactivated WPDM Login redirect from Downloads > Settings > Frontend Access Now frontend users can login from WPDM Login page but if you want to access the admin side you have to login from /wp-admin url.
Thanks.
The name in this email is mistakenly retrieved from billing info. That’s why it is addressed to the subscriber. We will fix it in the next release.
Replaced all instances of wpmp_url("account"),
with wpdm_login_url()
in /wppromembership/classwpmpemail.php
to fix the login URL.
Hi,
Code customization is required to change the word “Subscribe” to “Donation”.
Changed the “Subscribe” in plans page to “Donate” by editing /wppromembership/tpls/pricing-tables/card.php
Changed the “Subscribe” in checkout page to “Donate” by editing /wppromembership/pages/signup.php
Thanks.
I checked your license key. It is already linked to the domain. If still getting the invalid key error then it is related to old version. Install the latest version will fix this.
Please follow these steps to update the plugin,
1 ) Deactivate and delete the old version. You won’t lose any data.
2 ) Download latest version from here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
3 ) Install the latest version and activate the license key.
Or just send temporary wp-admin login info in private reply. I will update the plugin for you.
Hi Arun,
Download Limit is working on my test. You have to keep in mind, downloading the same pacakge multiple times in the same session is counted as a single download. So, maybe that’s what created the confusion in your case.
Thanks.
Create a custom link template with just [file_list]
and use that link template with category shortcode. All files will be listed as a list http://prntscr.com/pors1c
Please remove the utf8_encode
function from /download-manager/admin/menus/class.BulkImport.php
file. In other words replace the following code( line 161, 162 ),
'post_title' ► utf8_encode($csv_row['title']), 'post_content' ► utf8_encode($csv_row['description']),
with
'post_title' ► ($csv_row['title']), 'post_content' ► ($csv_row['description']),
and then import the CSV.
You have to serve the downloads as single files. The PDF will be stamped if it is downloaded separately. Use the [file_list]
template tag to show single file download buttons.
Hi,
If you save only PayPal email address in the settings you have to Enable PayPal IPN Notification to complete the payment. In this approach user is redirected to the PayPal site to complete the paymet.
If you have created a PayPal app ( https://developer.paypal.com/developer/applications/create ) then get app credential from App settings. You have to save both Live and Sandbox Client ID and Client Secret. When these options are saved in Premium Package settings, you do not have to set up IPN. This checkout method is inline, means user stays on your site during checkout. If everything is okay with settings then you will see the “PayPal Checkout” button when selecting the PayPal option in checkout page http://prntscr.com/poquyv I have tested this just now and the order does complete after payment.
Please review your setting and let me know if orders are still in processing state after payment.
Thanks.
Please send temporary wp-admin login info in private reply to check the issue. Updating plugin doesn’t change the access permissions or any other option. What was the previous permission of you packages?
You only have to log in when attaching the file. Download shouldn’t require login unless you have put access restriction on the pacakge. Could you please send temporary wp-admin login info in private reply, so I can take a look there?
Hi,
Yes, you direct download the Dropbox file usien Download Manager Pro.
Thanks.
If you use jstable=1
all packages are loaded at the same time. To reduce the page load time you can disable jstable by cahnging it to jstable=0
in the shortcode. In that case, only packages from the first page will be loaded initially which will reduce the load time significantly.
Hi,
You can add custom fields in the registration form using the Advanced Custom Fields add-on. Just check the “Show in user registration form” option under the custom field.
You can add a custom tag for email template using wpdm_email_template_tags
filter,
function wpdm_email_template_tags($tags){ global $current_user; $custom_user_meta = maybe_unserialize( get_user_meta($current_user->ID,'wpdm_cregf', true ) ); $tags["[#cust_no#]"] = array( 'value' ► $custom_user_meta['cust_no'], 'desc' ► 'Customer No' ); return $tags; } add_filter('wpdm_email_template_tags','wpdm_email_template_tags');
but as Email Notification add-on doesn’t provide any template yet, there is no way to add the custom info in the email. We have added this on to-do for the next update of the add-on.
Thanks.
Please download this file https://www.dropbox.com/s/ymrx03p8h37vya4/wpdm-all-downloads.php?dl=1 and place it in /active-theme/download-manager/
directory. This new template will override the default template and updating plugin won’t remove this file.
Please send me the package link or download link where you got the “Download link expired” message. I tried several downloads but couldn’t re-create the issue.
No option yet to disable the asset manager. But you can create an empty dir and assign it as “Server File Browser Base Dir:” if you want to deactivate file browsing. User will see an empty window if you do this.
You can add the CSS in your theme or customizer option. But to change the layout of Page Template you have to create an actual page template file and you can do it by placing the file in /active-theme/download-manager/
directory.
Please send temporary wp-admin login info in private reply to check the issue.