Your can renew now.
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
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.
Update is available now.
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.
That is not an issue with wpdm, that is how wpdm url settings works.
However, if you want to add category slug with package URL, here is the workaround:
#1. Please add the following code at the end of your active theme’s functions.php:
function wpdm_package_link($post_link, $post) {
if ('wpdmpro' === $post->post_type) {
$terms = wp_get_post_terms($post->ID, 'wpdmcategory');
if ($terms) {
$term_slug = array_pop($terms)->slug;
$post_link = str_replace('%wpdmcategory%', $term_slug, $post_link);
} else {
$post_link = str_replace('%wpdmcategory%', '-', $post_link);
}
}
return $post_link;
}
add_filter('post_type_link', 'wpdm_package_link', 10, 2);
#2. Then use %wpdmcategory% is wpdm page url base slug.
#3. Save Settings
#4. go to WP Admin Menu ► Settings ► Permalinks
#5. Click “Save Changes” button.
Finally to go WP Admin Menu ► Packages and check the changes in URLs.
Login info is not working.
That is probably due to conflict with other outdated plugin your are using there, your wp is outdated as well as many other plugin. Please try deactivating other plugin one after another to find the one causing the conflict.
Try using different link template, there are lots of link templates for various use case, you can can create your own link template.
Please follow the docs:
Update is coming within the next 24 hours.
Actually, we have nothing to do from the plugin side, but we are trying to contact the patchstack.com about this report, though they clearly mentioned it is a pro plugin issue, not free. Also, please let your security plugin author know about that.
It looks like any of your active plugin generating some unexpected chars before it should be what’s why pdf stamper is failing, try deactivating other plugin. Also, use unencrypted pdfs, encrypted/password protected pdf are not stamp-able.
okay, we are doing some research on that :).
Hi,
We have found the issue, update will be available with the fix within next 24 hours.
Please update premium package plugin, you can now add multiple quantity of the same item just by clicking item add button multiple times.
Also, you can create cart coupon too instead of product specific coupon by simply skipping product id when creating a coupon.
Also, we are making some other improvements on custom order option to make it more flexible.
Hi,
No worry, there issue you were seeing was related to an old PRO version, the latest versions of wpdm free 3.2.70 and pro 6.3.2 both are secure.
That is actually not a plugin issue, you need to disable image cache/cdn to make it work properly.
Your media library images are serving from here 94m2c9.p3cdn1.secureserver.net instead of upperbrandon.com
We have found the issue, it is actually with download page, if you email direct download link, it will work fine. However, we shall fix it with the next update.