Hi,
We have found the issue in AssetManager.php
, shall adjust it with the next update.
Try using different template, ex: Blue
May I try deactivating other plugins?
Yes. Checking in a while
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.
It is downloading fine for me:
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.
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.