Forum Replies Created
Could you please send me the CSV file? I want to run it on my server.
You are using a Download Manager shortcode with “Link Template Embedded” and it is generating the link to the pacakge details page. To remove the page link clone the “Link Template Embedded” from Downloads Templates page. Then replace the [page_link] template tag with [title] tag and save the custom template. Use this new link template with your shortcode.
You have to move all files from the old /uploads/download-manager-files/ to the new /uploads/download-manager-files/ directory. That should solve the file not found issue.
You can modify the download button style from Settings User Interface Tab. If you want to use just links instead of buttons then set ‘None’ as button style.
https://www.evernote.com/l/AUfp58b-bKRE4bZSLobkT68zCyLWNV3942gB/image.png
Please send temporary admin login info in private reply to check the issue.
Hi! Please update your copy. We fixed it in the latest release. Thanks.
Use the TinyMCE button add-on ( https://www.wpdownloadmanager.com/download/advanced-tinymce-button/ ) to insert the shortcode in a page. It provides an easy GUI for various shortcodes.
Example: [wpdm_category id="slug1,slug2" cols="1" toolbar=0 item_per_page=10 template="link-template-calltoaction3.php"]
Hi,
Your mockup looks like the Archive Page Default view. So, you can use that instead of adding the search feature in sidebar view.
When loading packages from category the auto scroll actually keeps the packages at the viewport. If you want you can remove the code from wpdm-archive-page.php file. The scrolling code in from line no 1123 to 1125.
https://www.evernote.com/l/AUd4V5VHiMJGUqkCfbZBP9QUMVCgSFPlDBQB/image.png
In sidebar view, The android icon is just the default icon we are using there when no icon is set for the package. You can replace it with any other icon from /wpdm-archive-page/tpls/archive-page-with-sidebar.php file. Search for download4.png and replace it with any other icon.
Thanks.
Please add the following line in theme’s functions.php file to re-add the generator tag support. We will fix it next version. It was added for a testing purpose and but shipped by mistake.
add_action('wp_head', 'wp_generator');
What is the link? Is it coming from a link template? Please send me the page link to check.
Please send your order id. We will cancel the subscription as requested.
That works too. The function you used is basically a wrapper for the process I suggested. They do the same thing.
Hi,
Thanks for the purchase. You have to deactivate and delete the old version before installing the Pro version. Don’t worry, You won’t lose any data. After deleting the free Install the Pro version.
Send admin login info in private reply, if you want me to install the latest version for you.
Thanks.
For now, there is no other way. But we have the plan to add a filter to control this using a hook. Hopefully, this hook will be implemented in the next version of the plugin.
It is related to package permission. Please check the allow access option in package settings.
Based on your theme those links might come from a different place. Maybe it is calling a function to display those links. However, you can also use custom css to hide those link. Send me the download page URL. I will suggest the required CSS.
Please send temporary wp-admin login info in private reply to check the issue.
Please send temporary wp-admin login info in private reply to check the issue. Or try the following shortcode,
[wpdm-all-packages items_per_page=10]
Hi,
Please send temporary wp-admin login info in private reply to check the issue. As a Pro user you have access to the Pro forum https://www.wpdownloadmanager.com/support/forum/download-manager-pro/ Please post your next queries there to get a faster response.
Thanks.
Hi,
If you want the Add-on only then just pay for the add-on https://www.wpdownloadmanager.com/download/lazy-download-add-on/ But buying the add-on doesn’t provide access to the Pro version of Download Manager.
Thanks.
Hi,
There is no shortcode for the direct download link. But you can generate the link from all packages page.
https://www.evernote.com/l/AUetUQKK8S5MHbFC04VAwrtDoarQhVy4XKsB/image.png
There is a template tag for the download link but you can it with WPDM Templates only.
Thanks.
Hi,
For now, you have to edit the plugin file to change that panel title and panel type. You will find the code at line no 236 in /download-manager/libs/class.Package.php file.
Thanks.
No shortcode is available for that. I have created 2 custom shortcodes to display the package and download count by category. Just add the code in your theme’s functions.php file. Added the shortcode example as comment.
//[wpdm_package_count_in_category category="slug"]
add_shortcode('wpdm_package_count_in_category','wpdm_package_count_in_category');
function wpdm_package_count_in_category( $params = array() ){
$term_slug = $params['category'];
$term = get_term_by('slug', $term_slug, 'wpdmcategory');
echo 'Package Count: '. $term->count;
}
//[wpdm_download_count_in_category category="slug"]
add_shortcode('wpdm_download_count_in_category','wpdm_download_count_in_category');
function wpdm_download_count_in_category( $params = array() ){
$term_slug = $params['category'];
$query_params = array("post_type" ► "wpdmpro", "posts_per_page" ► -1 );
$query_params['tax_query'] = array( array(
'taxonomy' ► 'wpdmcategory',
'field' ► 'slug',
'terms' ► $term_slug,
'operator' ► 'IN',
'include_children' ► false
));
$packs = new WP_Query($query_params);
$download_count = 0;
while ($packs->have_posts() ): $packs->the_post();
$download_count += get_post_meta(get_the_ID(),'__wpdm_download_count',true);
endwhile;
echo 'Download Count: '. $download_count;
}