Forum Replies Created
Add the following code in your theme’s functions.php file and load and visit any admin page. Then remove the code.
Make sure you replace search_for in the code with the content you want to remove. You have to be very careful to not break the PHP code when replacing search_for
Loading any page after adding this code will remove all instances of search_for ( Or whatever you use in its place ) in all packages.
function wpdm_bulk_update_package_content(){
$params = array(
'post_type' ► 'wpdmpro',
'posts_per_page' ► -1,
);
$packs = new WP_Query( $params );
while( $packs->have_posts() ) {
$packs->the_post();
global $post;
$pack_description = get_the_content();
$pack_description = str_replace('search_for','', $pack_description);
$my_package = array(
'ID' ► get_the_ID(),
'post_content' ► $pack_description,
);
wp_update_post( $my_package );
}
}
add_action('init', 'wpdm_bulk_update_package_content');
Hi Lauren,
Do you have the latest version( 4.7. 7 ) of Download Manager? If not please update your copy. That should fix the issue. Please send temporary wp-admin login info in private reply if facing this issue in the latest version.
Thanks.
Looks like in latest version there is an issue in setting default values in from Frontend. We will add the patch in next related of the add-on. For now, Please send temporary wp-admin login info in private reply to adjust the code.
Hi,
You can use your Pro license only in one domain/sub-domain. You can move your license from one domain to another whenever you want. But to use on multiple sites license upgrade is required. Our Business license is for 5 sites and Developer license is for unlimited sites.
Thanks.
Hi,
Sorry for the delayed reply.
1 ) Download works fine when the package has no locks. Tested this one http://www.habitararchitects.co.uk/download/7082-transmittal-0001/ To make sure, we are talking about the Email Download Link feature here.
https://www.evernote.com/l/AUdbCE97n1hAqLF2dy30vFg-vlnQtUc7NvwB/image.png
2 ) You are not moving the file. You are making a new template file to override the default one. Your changes will still be there when you update the plugin.
Thanks.
Please check the sale notification email now. I have updated plugin code and the sale-notification template with buyer_email template tag. Copy of customer email is not sent to the admin in the new version, we removed that feature.
1 ) If your files are in /wp-content/uploads/download-manager-files/ dir then just list the filenames ( separated by comma if more than one ). Otherwise the fully qualified file URL.
2 ) Create a CSV column with the custom filed input name and when importing map that field as a custom field from the WP Fields drop-down.
3 ) Multiple tags should be separated by the comma. i.e. tag1, tag2ans Mapped to post_tag from WP Fields drop-down.
4 ) You can set create date and modified date using post_date and post_modified WP Fields. The date format is YYYYMMDD i.e. 20182107
I have attached a sample CSV file to help you understand the CSV format.
https://www.evernote.com/l/AUfacookaXZCy4aPE2YKjYjaQ9iJUuytS6MB/image.png
Tested this using a fresh installation. Everything works fine. Could you please upload your installation on a staging server. I have to check your setup to find why it is acting differently there. Or you can use Local by flywheel ( a local WP dev environment ) and share your local site using a live link ( ngrok ).
You have to deactivate and delete the old version before installing the latest one. However, I have done it for you and key is verified now.
Hi,
You are using an old version of WP Pro Membership add-on. Install the latest version to fix this issue. You can download it here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
Best regards.
Hi,
You can use a template file to modify the Register Now link in the login form. The login form template is located here /download-manager/tpls/wpdm-login-form.php. Copy that file and place it in /your-active-theme/download-manager/ directory. Then modify the link in this new template file. Please check templates doc here https://www.wpdownloadmanager.com/doc/template-files/
You can also add extra fields in registration form using the same approach. Registration form template is wpdm-reg-form.php in the same directory.
There is another way to add custom fields in the registration form. You can use the wpdm_reg_form hook. Here is the hook documentation https://www.wpdownloadmanager.com/doc/action-reference/wpdm_register_form/
Best regards.
By sharing the URL users gets access to the download. But that does not mean other users who come to your site using the shared URL will have free access to the download. They have to go through the same process ( share the package ) to download the file.
Please send temporary wp-admin login info in private reply to check the issue. Though, The download on your link worked fine for me.
You can set default values for new package using Default Values add-on https://www.wpdownloadmanager.com/download/wpdm-default-values/
Hi,
Download Manager Pro requires PHP version >= 5.4 Please ask your server support to update the PHP. Updating PHP should resolve the issue.
Thanks.
We added the ‘New User Registration’ email in the latest version. So, you should receive the signup notification if you are using the latest version.
Please check if you have set an email address in Dashboard Settings General Email Address
Btw, Which shortcode are you using for the signup form?
Please send me the package URL. Have you set up the Facebook App id?
By default, the Download button is shown when you do not send any email after form submission. However, I have added the button for both cases now.
Hi,
We did mention the Download Manager and PDF Stamper relation on the product page https://www.wpdownloadmanager.com/download/wordpress-pdf-stamper-plugin/ Maybe you missed it.
If you can explain your use case I will set up the WPDM + PDF Stamper that meets your requirements. Installing Download Manager doesn’t necessarily means you have to use it’s every feature. You can use it only for the stamping.
Thanks.
1 ) I see the download count on your screenshot, it is currently 0 because there has been no download yet.
2 ) You have to put widgets on Single Post widget area from Appearance Widgets page to show package info in the sidebar. If you want you can use the Product Page widget area too, just replace Single Post with Product Page in /crypton/single-wpdmpro.php file ( line no 57 ).
1 ) WPDM utilizes the chunk upload feature which removes any limit from file upload size. You can enable it from Basic settings.
https://www.evernote.com/l/AUfRNUBXkDZNHqe1k6uwLfLNwkNzvD05u9oB/image.png
2 ) You can set default values from package settings using Default Values add-on https://www.wpdownloadmanager.com/download/wpdm-default-values/
Hi,
You are using an old version of Download Manager. We moved our license server over https but the old version tries to connect to the previous license server. That’s why you are getting the invalid key error.
Please install the latest version of the plugin to fix the license issue. If you can’t update the plugin right now send temporary wp-admin login info in private reply. I will verify the key in your current version by making some changes in the plugin code.
Thanks.
Hi, I can’t access the frontend. The site is password protected.