Forum Replies Created
When I was testing with this https://dge6opterg.onrocket.site/download/introduction-materials/, I found attached file is missing, there now I’ve attached a sample file and tested download, and it is working fine.
Hi,
We have found the issue in AssetManager.php, shall adjust it with the next update.
The error doesn’t look like from wpdm. Please give me temporary wp-admin login info to check it in details.
popup will not work if you disable css/js. Please send me temporary wp-admin login info to check your issue.
May you send me a mockup for mobile device how you want it to show.
Here it is:
Actually, too keep the link protected while still you want to allow user to download the item for free, you better use Captcha lock option.
If you want to hide download link effectively, you need to use a lock option. In your case you may use terms lock. However, we are soon update hide download link option to keep it totally hidden from search engines and bots.
The download button with wpdm_my_download short-code skips all lock options with default options. However, use template="link-template-id" with short-code, that will serve your purpose.
All seems to be same height already except the one where you didn’t add featured image.
in that case, you need to use regular post/page and add wpdm package shortcode there. Package information on page is customizable through link template
https://www.wpdownloadmanager.com/doc/templates/link-template/
However, plugin actually doesn’t offer that type of feature, it is just working as standard wp feature works with custom post type, ex: woocommerce.
However, for extended customization support, please contact our Custom Upgrade Service team.
instead of download your can use different word in wpdm settings. However, base slug also totally removable. As, it is not a built-in feature with wpdm pro, it will require some code customization.
Try using the following code:
function wpdm_remove_base_slug($post_link, $post) {
if ('wpdmpro' === $post->post_type && 'publish' === $post->post_status) {
$post_link = str_replace('/download/', '/', $post_link);
}
return $post_link;
}
add_filter('post_type_link', 'wpdm_remove_base_slug', 10, 2);
function wpdm_parse_request($query) {
if (!$query->is_main_query() || 2 != count($query->query) || !isset($query->query['page'])) {
return;
}
if (!empty($query->query['name'])) {
$query->set('post_type', array('post', 'wpdmpro', 'page'));
}
}
add_action('pre_get_posts', 'wpdm_parse_request');
For extended customization support, please contact:
If any plugin generates unexpected output, it need to fixed first, did you find which one, or may we try deactivating other plugin to find problematic one?
It works fine on our side. Please send me ftp info in a private reply.
It will not break the email sending.
The action hook invokes after sending email.
Your simply can add the code for sending SMS in the callback function.
I think, the following example explains all about the hook:
add_action("PrivateMessage/Message/RestAPI/sendMessage", function($msgID, $message, $sender) {
//Your sms code here...
}, 10, 3);
It calls before send message.
$msgID = ID of the message
$message = Array containing message info and receiver info
$sender = Sender info.
Working fine in both chrome and firefox for me: https://www.loom.com/share/26a3cbaad5ec43a994ad5adb56d70725
Please check if your have installed any browser add-on which is blocking pdf js.
#1. Change package url base slug to download/%wpdmcategory%

#2. Save Settings
#3. go to WP Admin Menu ► Settings ► Permalinks
#4. Click “Save Changes” button.
Everything will work fine then.

