Forum Replies Created
Hi,
Is interview_date a custom field? I have to check your installation to get a clear understanding of how this. Could you please send login info and page URL where you placed the shortcode?
Thanks.
Yes, you can locate and edit it using FTP. Have you found the /wp-content/plugins/ dir? The path I sent starts from this dir. Or you can send FTP or wp-admin login info in private reply. I will add the code for you.
Hi,
It is not possible to control this option globally because each view has its own template and query. For example, all packages table has its own template which is different than the category shortcode template.
But you can control the order from the shortcode. Each shortcode has a parameter for sorting. Utilize it to alphabetically sort your packages.
Did you check the Archive Page add-on? Using this add-on you can display all your downloads from one place with search, filters options. Please check the demo here https://demo.wpdownloadmanager.com/wpdmpro/archive-page-default/
Thanks.
Now file hosting pacakges will have your custom page template by default,
https://www.evernote.com/l/AUcB8QK0wQFEDoTZLCwFZDfsXbaVSrKjUdwB/image.png
Had to make a minor change,
https://www.evernote.com/l/AUfpLCkKOrZM7KGps1B-Bor4nSYiKSUWKpMB/image.png
Done, now the file name will be automatically be taken as the package name.
https://www.evernote.com/l/AUekR0GtJ3xOLZLehLEG9qIcaKqEVddifu8B/image.png
Done. Your key is linked to 2 domains only.
Hi,
Yes, it is possible using our File Cart add-on. Please check the add-on details here https://www.wpdownloadmanager.com/download/wpdm-file-cart/
Thanks.
Hi,
Yes, you can add or remove any package related info using a custom link/page template.
To remove the main download button remove the [download_link] template tag from your custom template. You can clone the current template and then remove all unnecessary info from there.
Please check this tutorial to understand how to create a custom template.
Thanks.
Unlocked your key from staging domain. You can use it on production URL now.
Hi,
Yes, you can add custom fields in registration form using Advanced Custom Fields add-on. Please check the add-on details here https://www.wpdownloadmanager.com/download/advanced-custom-fields/
Thanks.
Download Manager Frontend Uploader page requires the Bootstrap JS. But in your installation it was inactive. Everything works now after activating Bootstrap JS ( Downloads Settings Basic Misc Settings ).
I thought I sent you a custom version of File Hosting add-on which takes the filename as the package name. Maybe it was someone else. However, please send admin login info. I will add some code to make it work.
We have to redirect the user to the FIle Hosting tab when visiting the dashboard. Add the following code to your theme’s functions.php file.
add_action( 'template_redirect', 'wpdm_dashboard_redirect' );
function wpdm_dashboard_redirect(){
if( is_user_logged_in() && get_the_ID() == get_option('__wpdm_user_dashboard') && ! isset( $_GET['udb_page'] ) ):
wp_redirect( get_permalink( get_option('__wpdm_user_dashboard') ).'?udb_page=file-hosting' );
exit();
endif;
}
Please deactivate and delete the old version of Download Manager. Then install the latest version.
You can download the latest version here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
Send admin login info in private reply, if you want me to install the latest version for you.
Maybe you are using an older version of Download Manager. Please try installing the latest version ( 4.8.0 ). You can download it here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
Deactivate and delete the old version before installing the latest version. You won’t lose any data.
Send admin login info in private reply if you need help with the update process.
Thanks.
Please send me the license key to unlock it from the old site. And send admin login info in private reply if you need help with the update process.
Hi,
It is possible to extend the current stat export feature to meet the specifications you described above. But it will require a fair amount of code customization. In such cases, we provide custom upgrade service. Please let me know if you are interested.
Thanks.
Hi,
If you could provide any server error log it will help to debug the issue.
However, There is a workaround which seems to work. Instead of adding the file from a directory, You can attach the file URL ( https://www.pixelquest.de/mediathek/test-download-small.zip ) using the URL tab in “Attach File ( Datei anhängen )” meta box. In that case, download works fine. I have tested this with your “Test Download Small” package.
Have you disabled the WPDM Bootstrap? The package details page looks a bit odd without the styles. If that’s what you prefer it’s okay.
Thanks.
One of your plugin or active theme is redirecting non-admin AJAX request to the Homepage URL. So, when a non-admin user using Archive Page Sidebar the first ajax response we get is 302 ( URL redirection ). Then right sidebar loads the homepage content.
https://www.evernote.com/l/AUea_Z5OkDBFYpy0Je6EkuGa1aZc9R51wSIB/image.png
Now, you have to deactivate other plugins one by one to check which one is creating the issue.
You can add the following CSS in Customize Additional CSS to hide the “Shared with me” button,
#sharedWithMe { display: none; }
Or just remove the button from template file /wpdm-file-hosting/tpls/wpdm-file-browser-container.php ( line 15 )
From the share window, you can get the package link which is a permanent URL ( Package Link tab ) and you can download package as many time as you want. Does it work for you?
https://www.evernote.com/l/AUeSutQc97JHNY6E9cplgEHQQWeb8PGYlewB/image.png
Add target="_blank" on line 51 in /wpdm-file-hosting/tpls/wpdm-file-browser.php to open the file in new tab.
https://www.evernote.com/l/AUdv1xggl5xLzYKdhEEXZChum4W6JE5co4QB/image.png
In File /download-manager/libs/class.PackageLocks.php
1 ) Replace Follow with ".__('Follow','download-manager')." on line no 82. This should make the text available in translation plugin.
2 ) Replace Tweet with ".__('Tweet','download-manager')." on line no 283. This should make the text available in translation plugin.
Set the image as the featured image of your package to show it in the circle.
Thanks.
Added the following CSS to fix the list dots and additional previews visibility,
.w3eden ul.list-group li::before {
content: none;
}
.list-group-item:nth-last-child(2) {
height: 60px;
}
Created a custom link template “Card Clone” and applied it in archive shortcode to show the packages in 3 columns.
Hi,
We can’t support all the browsers available out there. We tested the add-on in all major browser like Chrome, Firefox, Edge, Safari in various devices. It works fine everywhere. At the moment, the only solution is suggesting your users to use a more familiar browser.
Thanks.