Forum Replies Created
Hi,
It is not possible yet. We will add frontend tag support from next release of Download Manager. I hope the update is coming within this month.
Thanks.
Hi,
You can edit the /download-manager/assets/css/front.css file to change the font for various CSS classes to mentioned above. But adding custom CSS should work too. You can try adding !imporatnt; after font name to force the rule.
Thanks.
Hi Nic,
Please try now. Unlocked the key from your old domain.
Best regards.
Hi Aurélien, Unlocked your key from localhost. It should work now on your new domain. Thanks.
@itesla, Your key is linked to itesla.solutions Do you want to move the license to another domain? If you are having the license issue in this domain, then updating the plugin to the latest version should fix the issue.
Hi,
The repeater field would be a nice addition to WPDM Advanced Custom Fields. Noted for implementation.
Thanks.
Please send temporary wp-admin login info in private reply to check the {“result”:”_ap_wpdm”,”id”:31274} issue.
What kind of changes do you want to apply in frontend package list? It is not possible using an add-on. Requires custom coding. If it is something simple I can do it for you. Otherwise requires custom upgrade service https://www.wpdownloadmanager.com/download/custom-upgrade-service/
Hi,
We will fix it in next release of Download Manager. Please use another page template for now. If you want to use the Single Column, Flat page template then clone it ( From Downloads Templates ) and remove [acf_Demo_demo_url] tag from there.
Thanks.
Hi,
Actually, The icon in the admin area is the old one. The front area now uses SVG icons. And it is showing the svg version of doc icon.
Thanks.
Hi,
File owner can control the access setting using the ‘cog’ icon. Just uncheck everything in file ‘Allow Access’ setting to stop sharing.
Please check the screenshot,
https://www.evernote.com/l/AUf7PLhOGxdLIIQmfrDOGb7BxysaY7jEcmEB/image.png
Looks like there is a filter available to modify the taxonomy arguments. Add the following code to your theme functions,
function wpdm_custom_taxonomy_args( $args, $taxonomy, $object_type ) {
if ( $taxonomy == "wpdmcategory" ) {
$args['rewrite'] = array( 'slug' ► sanitize_title( get_option('__wpdm_curl_base', 'download-category') ), 'hierarchical' ► true );
}
return $args;
}
add_filter( 'register_taxonomy_args', 'wpdm_custom_taxonomy_args', 10, 3 );
There is a way. But requires code customization. I custom category archive template taxonomy-wpdmcategory.php can control the design of the download category archive.
If you are interested we can build it as a custom upgrade service ( https://www.wpdownloadmanager.com/download/custom-upgrade-service/ ). Let me know if you are interested.
Thanks.
Hi,
All images URLs are working fine after the activating Download Manager. I couldn’t find any proof if changed image URL. Please send me a specific page URL if you are still facing this issue.
Thanks.
Hi,
The frontend upload issue is coming from your theme. The theme is making the buttons unresponsive. Maybe they have added some kind of JS which is removing attached button events. Please ask your theme provider to check the issue.
The login page issue also coming from the theme. It is adding an extra field ( email id ) to the form.
Both of these issues were gone when I switched to another theme temporarily.
Looks like you have created a custom template with the favorite button. However, this link might come in handy: Complete template tag reference https://www.wpdownloadmanager.com/doc/templates/template-tags/
Thanks.
You can get the download link from All Downloads page and attach it with inline words. Each package has a Generate Download Link button. Retrieve the master download link from there.
https://www.evernote.com/l/AUdbmPlfkqBNe5QPADxc1TS8BAJi4rSrKWIB/image.png
Thanks.
This error {“result”:”_ap_wpdm”,”id”:31274} coming from JS issue. Maybe one of the plugins has JS error which preventing the WPDM AJAX request. Please try deactivating other plugins one by one to find which one is the origin of the issue.
You have to use a custom template for /download-manager/tpls/list-package-table.php to modify the frontend package list view. Basically, you have to copy the file and place it in your /active-theme/download-manager/list-package-table.php and then make the necessary changes in the new template.
Here is the template doc https://www.wpdownloadmanager.com/doc/template-files/
Please add following CSS in Customizer Additional CSS to change the button color,
.btn.wppm-download-link {
background: #4583ed;
}
Hi,
It shows the featured image of the package. Maybe your package doesn’t have a featured image. Setting a featured image should fix this issue.
Best regards.
Hi,
Maybe your access setting is set to hide everything when the user does not have access to downloads.
https://www.evernote.com/l/AUcBhnAdPeNHeJWeYdTlkzEChIYycm03-k0B/image.png
Setting it to only block download link should fix the issue.
Another approach is explicitly setting category access to user roles from category settings.
Let me know if you can’t fix the issue by following the approached discussed above.
Thanks.
Hi,
Looks like you have renamed the /uploads/download-manager-files/ dir after uploading files. So, the links to the files are broken now. That’s why it is showing file-not-found.txt error.
The unresponsive button issue in this page https://greatthingsgrowhere.co.nz/brand-champions/logo-suite/gtgh-chinese-logo-suite/ related to a JS conflict. Will it be okay if I temporarily deactivate other plugins or switch themes for testing purpose. The test is required to find the conflict.
Thanks.
Hi,
The category archive page template is controlled by your theme. WPDM can modify the template partially. But does not have full control over it. You can configure the available options from WPDM Settings Frontend Category Page Options Panel. It allows you to use a link template there or just show custom package info.
https://www.evernote.com/l/AUc7c_68jpRO5rXHEnJY3tK5KrOMtrDpwjQB/image.png
Thanks.
Hi,
It is possible but requires code customization. You can modify the line no 137 in /wpdm-premium-packages/includes/libs/class.LicenseManager.php file.
You can add more random number there to increase the length.
Thanks.
Hi,
You can’t change the WPDM upload dir. But you can set a custom file browser location. You can attach files to the package from that directory or child directory.
In WPDM Basic Settings Access Settings panel set your custom directory as File Browser Root. When creating a new package you custom dir files will be available in Browse tab of Attach FIle metabox.
https://www.evernote.com/l/AUfTQEM791JHfaCqJzNj6XLLyF3f8QXbWyEB/image.png
Thanks.
Please send temporary wp-admin login info in private reply. I have to check your installation. Everything works fine in my setup.
Hi,
It is possible but requires code customization.
Please find the following code in /download-manager.php file. Should be aroud line no 242.
'rewrite' ► array('slug' ► sanitize_title(get_option('__wpdm_curl_base', 'download-category'))),
and replace it with the following code,
'rewrite' ► array('slug' ► sanitize_title( get_option('__wpdm_curl_base', 'download-category') ), 'hierarchical' ► true ),
Thanks.