Forum Replies Created
Please send temporary wp-admin login info in private reply to check the issue.
Hi,
You can use the Archive Page add-on to show all downloads using a single shortcode. This also makes all download accessible easily. Make the town commissions parent category and use years as child categories. Then a user can filter downloads using dropdowns from parent category.
Please check this demo https://demo.wpdownloadmanager.com/wpdmpro/archive-page-default/ Initial gray buttons are parent category but if you click the arrow in a parent it shows all child categories.
If you use this not need to add all commisions to your site menu. Just point to the shortcode page using a single entry i.e. Downloads.
Thanks.
Please check now. You can modify various theme options from Appearance Customize page.
Hi!
Permission seems to be working on fine. Both links are asking me to log in to download the “AAL National Admin System Manual” file. I also tested this in my local setup.
Please send login info in private reply if you want me to check it on your installation.
Thanks.
The Archive Page Sidebar view is coming from WPDM Directory Add-on ( https://www.wpdownloadmanager.com/download/wpdm-directory-add-on/ )
To create a sidebar view use the following shortcode,
[wpdm-archive cat_view="sidebar" button_style="default" items_per_page=10 order_by="post_title" order="asc"]
Please add the following CSS in Customize Additional CSS. You can adjust the size if you want.
.w3eden .file-ico { max-width: 48px; }
In your link template replace [download_link_extended] with [download_link] to show multiple captcha locked packages in the same page.
Add the following CSS in Customize Additional CSS to fix the file icon issue,
.w3eden .wpdm_icon {
max-width: 48px;
}
Could you please check the PHP error log and send me the log related to WPDM? Or just send the log file.
You can send the login info as a private reply. Only you and site admin can see it.
Hi,
You can use Pro license only in one site at a time. You can test the WPDM on the dev server and move the license to production when the test is done. But if you want to keep using the plugin on both sites then you need another Pro license.
Thanks.
You can use the [wpdm_user_profile] shortcode to create a public user profile page. To view packages by a user you have to add the username a query parameter,
http://localhost/wpdm/profile-page?profile=username
Shortcode documentation – https://www.wpdownloadmanager.com/doc/short-codes/wpdm_user_profile-public-profile-short-code/
Thanks.
Please remove this code
<td><?php echo get_the_modified_date(); ?></td>
from /wpdm-archive-page/tpls/aps-content-cat.php file to hide the date. You will find the code at the bottom of the file.
Hi!
You have to use a custom link template with [file_list] template tag to show single file download buttons. This post explains how to create custom templates https://www.wpdownloadmanager.com/building-a-wordpress-download-manager-link-template-from-scratch/
Please send login info in private reply if you want me to create a custom link template for you although we highly encourage reading the above tutorial.
Thanks.
Simplifying the signup form requires code customization. Alternatively, You can use the email lock to collect name and email address before the download. No signup necessary in this way.
Hi,
Please try now. Unlocked your key from staging domain.
Thanks.
In the latest version, we added multiple key support, so the field name is changed. But the add-on was using the old field name to retrieve the key to connect to the bucket. But that doesn’t exist in the new version. So, it was just an option field naming issue.
Sorry, It is actually possible in the current version ( 4.8.11 ) Just add thumb=1 parameter in all packages shortcode.
[wpdm-all-packages items_per_page=10 thumb=1]
It is possible without the add-on but requires a fair amount of code customization.
You can use a custom template file for the signup form wpdm-reg-form.php Please check the template customization doc here https://www.wpdownloadmanager.com/doc/template-files/
1 ) Copy the /download-manager/tpls/wpdm-reg-form.php file
2 ) Place it in /active-theme/download-manager/ directory
3 ) Add the Company field in /active-theme/download-manager/wpdm-reg-form.php file.
Now you have to save this custom filed ( company ) when someone registers using the user_register hook ( https://codex.wordpress.org/Plugin_API/Action_Reference/user_register )
I think you get the idea 🙂 It is pretty messy although it is just a single field. However, let me know if you need further assistance.
Please send me the page link. I will suggest some custom CSS to fix the issue.
You are right about the missing WPDM fields file_titles. We will add it in next release. post_date and post_modified from dropdown equal to create date and update date respectively.
Please send me your CSV file to check import issue you are facing.
Please send temporary wp-admin login info in private reply to check the issue. There is an option in WPDM that controls the download speed. You will find it in Downloads Settings Basic File Download Panel.
Please replace the Download text with this ".$data['link_label']." to use link label from pacakge settings.
echo "<a target='_blank' href='".\WPDM\Package::getDownloadURL($data['ID'])."'>".$data['link_label']."</a>";