Forum Replies Created
In that case, you can enable the single file download and use [file_list] or [file_list_extended] template tag. This will allow the user to download a single file from a multi-file package.
You need Download Limit add-on ( https://www.wpdownloadmanager.com/download/download-limit/ ) for that. Using this add-on you set different download limits for different membership level.
Add the following code to your theme’s functions.php file. This will keep the order status pending for all check payment until you manually update the status.
function wpdm_check_payment_change_order_status( $order_id ){
global $wpdb;
$order_det = $wpdb->get_row("select * from {$wpdb->prefix}ahm_orders where order_id='$order_id'");
if( $order_det->payment_method == 'Cheque' )
\WPDMPP\Libs\Order::update( array( 'order_status' ► 'Pending', 'payment_status' ► 'Pending' ), $order_id );
}
add_action('wpdm_after_checkout', 'wpdm_check_payment_change_order_status');
Please insert the shortcode using TinyMCE Button add-on ( https://www.wpdownloadmanager.com/download/advanced-tinymce-button/ ) Send temporary wp-admin login info in private reply if that doesn’t work.
There are no toolbar variations for category shortcode. You can either show or hide it. To show the toolbar you have to use toolbar=1
Here is a sample shortcode where columns worked for me,
[wpdm_category id="flat-ui,free-psd,locked,plugins," cols="3" toolbar=1 item_per_page=10 template="link-template-bsthumnail.php"]
Please use this page as Premium Package shortcode reference https://www.wpdownloadmanager.com/doc/using-premium-package/shortcodes/
Another suggestion, as Download Manager, uses core WordPress search, if you can index WPDM files using SearchWP that should work too.
Does this plugin have an option to add a custom directory for indexing files? You can try indexing the /uploads/download-manager-files directory.
Are you referring to the all packages table? Please send me the page URL to check. It might be possible but requires custom coding.
If the issue was related to a browser I could have checked it. But as the issue is related to your custom app, it is out of scope to check details. I checked the download in various mobile versions of Chrome and downloads worked there too. SO, it is definitely an issue related to your app.
Go to Downloads Templates page and clone the link template you are using now. Then remove the [download_count] tag from there and save it. Use your new custom template with shortcode.
Details about creating custom link templates https://www.wpdownloadmanager.com/building-a-wordpress-download-manager-link-template-from-scratch/
Hi, Really sorry for the delayed reply. Somehow missed your post. Stats works fine in our test. Could you please send temporary wp-admin login info in private reply, so I can run some test with Pro version? Maybe it was some kind of conflict with another.
Thanks for reporting the issue. We will fix it in next release of Premium Package Add-on.
Your suggestion is noted for implementation. Autofilling the email address will definitely make the process easier for the user.
That email address is retrieved from WordPress admin email option. You can only update it from WordPress settings.
Please use orderby=title to sort downloads alphabetically. Your current parameter is order_by=title which is not correct.
If you are hosting on Siteground please check my reply here https://www.wpdownloadmanager.com/support/topic/wpdm-doesnt-save-options/
If it is not a hosting issue, Please send temporary wp-admin login info in private reply.
Have you restricted the category access from category settings? The category will be visible if the user has access to the category. It will be hidden if the user doesn’t have access to it from category settings.
Please send wp-admin login info to check if you still can’t figure it out.
Are you adding file URL instead of attaching a file? This should work without any issue. Please send me a package URL to test the download and temporary wp-admin login info in private reply if possible.
Please try now. Make sure you are using the latest version of Download Manager. Thanks.
Sorry, Please ignore that parameter. It has been deprecated.
Please use the style ( smooth or card ) parameter to set table style.
[wppm_membership_plans cols=3 featured=3 style="card" featured_color="danger"]
There is no shortcode available for that. Custom coding is required for that.
But you can add the login popup in download button when user login is required for download. Just add the following code in Downloads Settings Basic Message Login Required Message section.
[wpdm_login_form redirect="[this_url]"]
That shortcode doesn’t support the custom message yet. But you can set custom message from Advanced settings when hiding membership contents.