@mdalleyrudowgroup-com, Please try now.
@simstim, Your key is already linked to 5 domains. If you are getting the invalid key error in those domains, please install the latest version of Download Manager to fix the license issue.
Please deactivate and delete free version first. Then install the pro version. All of your old packages will still be there.
Dropbox files cannot be secured in that way using WPDM Dropbox add-on. Store your files in own server if you want to block link sharing.
The selected folder is not applied in this case ( chooser API ). The app folder of Dropbox app is used when app writes the file to your Dropbox. The Dropbox chooser API can access you full dropbox regardless of the permission type.
Hi,
It is not possible to keep the PDF editable after stamping. This a limitation of the stamping library ( FPDF ).
Thanks.
Download the latest version ( 4.7.1 ) here https://www.wpdownloadmanager.com/user-dashboard/purchases/
Deactivate and delete old version first. You won’t lose any data.
Please try now. If still having the issue then install the latest version of Download Manager.
Have you attached your PDF with the package? Please send temporary wp-admin login info in private reply if that’s not the issue.
Maybe one of your plugins is modifying WP Query. Try disabling other plugins to find the conflicting one. Or send temporary wp-admin login info in private reply, so I can check this.
Hi,
We will fix this issue in next version of Download Manager. Looks like latest version has an email template issue there. For now, you can use default WordPress login page. Set “None Selected” in Settings Frontend Login page option. It will disable WPDM login page redirect.
Thanks.
When creating the package you missed the “Allow Access” option in package settings meta box. It is empty by default. So, no one can access it. Setting “All Visitors” or any other role will fix this issue.
This issue was related to your Register with email for download pdf plugin. It was responding to WPDM ajax call. After disabling the plugin email lock is show the successful message.
Yes, File Hosting support audio file upload. You have to set “Open in browser” option to play the file as there is not player support in file hosting add-on.
I couldn’t find any email locked package. Please send me the package URL where you faced the email lock ( not sending email ) issue.
I have changed the login page settings, not WPDM won’t take over your login page.
Yes, it should work when using the same category on both shortcodes. We will look into this soon and add required patch to support multiple instances of category shortcode on the same page.
Let us know if you have any other query. Thanks.
Please send temporary wp-admin login info in private reply. About the password reset, are you referring to the password lock?
Now, You can update WPDM from your dashboard ( from version 4.7.0 )
Okay got it. The preg_match match still missing some invalid $key. We will look into this and run some more tests before next update.
Looks like this is related to the Swedish language. Sorting is working when language is English. For now, use jstable=0
Sorting will work without JS table.
Please send temporary wp-admin login info in private reply to check the issue.
Developing custom template requires customization as there is no shortcut way to handle this.
Add following code in your theme’s functions.php file to add custom tag categories_nolink
for comma separated categories without links.
function wpdm_comma_separated_tax_terms($post_id){ $args = array('orderby' ► 'name', 'order' ► 'ASC', 'fields' ► 'all'); $terms = wp_get_post_terms( $post_id, 'wpdmcategory', $args ); $terms_array = array(); foreach ($terms as $term): $terms_array[] = $term->name; endforeach; return implode(', ', $terms_array); } function wpdm_custom_tags($vars){ $vars['categories_nolink'] = wpdm_comma_separated_tax_terms($vars['ID']); return $vars; } add_filter( 'wdm_before_fetch_template', 'wpdm_custom_tags', 10, 1 );
Hi,
You need Advanced CSV Importer add-on to import the WooCommerce CSV file. Some columns are not importable as they don’t exist ( like SKU, Image Title etc ) in WPDM. Also, we can’t keep the same ID as those post IDs might not be available.
Thanks.
Hi,
Your site_url
and home_url
is not same. Using the same URL for both should fix the issue. I tried to update the options Generals Settings. But looks like the site is in redirect loop or not responding correctly.
Please go to your database admin. Then find home
and siteurl
in wp_options
table. Set both options to http://www.ambuservice.it/wp/
That will fix the issue.
Or send database access info, I will do it for you.
Thanks.