ERROR: The password you entered for the username WPDM is incorrect.
Anyway, you can add the following CSS to hide addditional gateway options,
#payment_form .payment-gateway-list .index-2, #payment_form .payment-gateway-list .index-3 { display: none!important; }
You can just share the package URL in that case as you want to keep the lock. To limit the download set “Download Limit:” in package settings.
order_by="title" order="desc"
works fine on my setup. Could you please send temporary wp-admin login info in private reply? I have to check there to find out where thing went wrong.
It is not possible with the [download_url]
tag. You have to use the [download_link]
tag if you want to hide the URL. But you do have the option to customize the button from Settings User Interface Tab.
Hi,
We just released an update of the Form Lock add-on. Please delete the version you have there and install the latest one. You can download it here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
Thanks.
Hi,
Unlocked your key from the old domain. Now the license key should work fine on your new domain.
Thanks.
So, you do not want users to signup on your site. Just want to list them in Downloads Subscribers page and after your approval you want the user to have access to the file.
You have to enable email with ” Wait For Approval” option to do that. I have set this up for this package http://zgemma.org.uk/download/backup-softu-openatv-6-2-zgemma-h9-2s/ You have to repeat the setting for all other packages.
Please revert the code changes you have made or just re-install the latest version. In the latest version, there is a “Crop thumbnails” in Setting User Interface tab. Enabling this option will make the thumbnails look like the old version. Sorry, I forgot to mention it in my previous reply.
Your attachment was failed. Could you please re-upload a smaller size file or send a link to the image.
You have to set the order options before selecting the category. But I understand what you explained above. Your suggestion is noted for implementation.
Please send temporary wp-admin login info in private reply to check the issue.
Please send temporary wp-admin login info in private reply to check the issue. Most probably there is a JS error on the page which is preventing the redirection.
Sorry for the delayed reply. It was a compatibility issue with the latest version of WPDM. Just released an update of Form Lock Add-on. Please install it. That should resolve the download issue.
Your suggestion is noted for a future version.
Please try now. If still having a license error send your key in private reply.
Please check you have the /uploads/wpdm-cache/
directory on your server. Create the wpdm-cache
folder in /wp-content/uploads/
directory if it doesn’t exist. Or send temporary admin login info in private reply. I will check the issue there.
Hi Tim,
We just released an update of the Form Lock add-on. Please delete the version you have there and install the latest one. You can download it here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
Thanks.
Please add the following CSS to your Customizer Additional CSS option to fix the icon size.
.w3eden .wpdm_icon { max-width: 48px; }
There is no built-in option for that. But it is possible by adding some custom code. Add the following code to your theme’s functions.php file. Replace the term1
, term2
with the category term of your choice. You can add more.
function wpdm_set_default_package_category( $post_id ) { $current_post = get_post( $post_id ); // This makes sure the taxonomy is only set when a new post is created if ( $current_post->post_date == $current_post->post_modified ) { wp_set_object_terms( $post_id, array('term1','term2'), 'wpdmcategory', true ); } } add_action( 'save_post_wpdmpro', 'wpdm_set_default_package_category' );
I see you have marked this as resolved. Anyway, Let us know if still having an issue with this.
The download will start each time you press the button. Just tested this on your site. But when the limit is crossed user will see the limit earning.
Your theme or another plugin is modifying the style. Please send temporary wp-admin login info in private reply. I will check the conflict and required CSS to resolve it.
Please check the “Private Download Links Usage Limit:” option in the Basic settings tab. Maybe it is set to 0. Set it to a higher value.
Send temporary wp-admin login info in private reply if that doesn’t fix the issue.
Hi,
You can disable the billing from completely if you want. Just uncheck the “Ask for billing address on checkout page ” option in Premium Package settings.
You can also modify the form using a custom template of /wpdm-premium-packages/templates/checkout-cart/checkout-billing-info.php
. This template can be overridden by copying it to yourtheme/download-manager/checkout-cart/checkout-billing-info.php
.
Thanks.