Forum Replies Created
Yes, you can show the thumbnail of each attached image file. Use the [file_list_extended] to show this all thumbnails with download option. You can use built-in page template ” Single Column, Image Top, Extended ” or create your own custom template using this tag.
Please read my last reply again. I think you have missed what I explained in the last paragraph and in the screenshot. The point is You have to replace all your direct links ( e.g. Curva Sofa 2D files – Download ) with a shortcode like this [wpdm_package id='pacakge_id']
Unlocked the license key. You can use it on your new domain now.
Unlocked the license key. You can use it on your new domain now.
All filters can be applied by following the approach shown here https://www.wpdownloadmanager.com/doc/filter-reference/wpdm_single_file_download_link/
And here is anothet example. I have modified the single file download button text here.
add_filter('single_file_download_link_label','single_file_download_link_label');
function single_file_download_link_label($file){
return 'Custom Label';
}
Hi Jacky,
You don’t need the responsive table ( jstable ) with Archive Page because Archive Age has it’s own search and filter options. But if are looking for the visual appearance of the table then use a custom link template to make your results look like table rows.
Thanks.
Please check you have the /uploads/wpdm-cache/ directory on your server. Create the wpdm-cache folder in /wp-content/uploads/ directory if it doesn’t exist. Let me know if still empty cart issue after that.
If you have set the settings to rename files WPDM won’t delete existing files. Please send temporary wp-admin login info in private reply. I have to check your installation to find out what is going on.
Another plugin is breaking the JS. Most probably a caching plugin. Try deactivating other plugins to find out which one is creating the issue. Or just send temporary wp-admin login info in private reply so we can take a look there.
Please ask your server support to help you recover the error log. Send temporary wp-admin login info in private reply so I can check the issue too.
Added more CSS in Customize Additional CSS. Please check the file list now.
Unlocked the key. All add-ons license key is not required.
Can you access the settings page? When does the 500 error occur?
Hi Ariane,
There are some filter hooks available to customize the [file_list_extended] output.
1 ) single_file_download_link_label Customize the single file download link label. Default label is ‘Download’
2 ) wpdm_single_file_download_link Customize the single file download link
3 ) individual_file_action Add additional options with single file. i.e. add file cart button
4 ) file_list_extended_show_thumbs Show / Hide thumb.
Or you can just make your own custom tag using the approach suggested above to add more customization.
Thanks.
Please try deactivating and reactivating Premium Package add-on. If that doesn’t solve it send temporary wp-admin login info in private reply.
Could you please send me the error log file? Also, try using PHP 7.2
Download Manager has the option to replace the download button with the login page link when a user is not logged in. You can customize this login button from Settings Basic Messages Login Required Message: option. Are you trying to do that?
Or just want to redirect all guest users to the login page from any page in general? Add the following code to your theme’s functions.php file if this is the case. Before adding the code create the login page with WPDM login shortcode [wpdm_login_form logo="your_logo_url"] and set this page as Login Page in Settings Frontend Login Page option.
add_action( 'template_redirect', 'wpdm_login_redirect' );
function wpdm_login_redirect(){
if( ! is_user_logged_in() && get_the_ID() != get_option('__wpdm_login_url') ):
wp_redirect( get_permalink( get_option('__wpdm_login_url') ) );
exit();
endif;
}
Please send your license keys in private reply to unlock those from old domains.
Thank you for reporting the comma issue. You have just found the first bug in export feature 🙂 We are going to fix it soon and more options are coming in the export feature.
The download button should be there after adding the code I suggested in my last reply.
However, If you have a clear specification of what you want please send details. Point out which parts of edit package page you want to remove or what kind of additional functionalities you want to add. We provide custom upgrade service ( https://www.wpdownloadmanager.com/download/custom-upgrade-service/ ) when users need detailed customizations.
The export button exports all your existing packages. So, you don’t have to select anything from the right side file list and selecting files doesn’t have any impact on the export function.
It is still a beta feature so maybe there is still some bug. Please check you have the /uploads/wpdm-cache/ directory on your server. Create the wpdm-cache folder in /wp-content/uploads/ directory if it doesn’t exist and try the export again. Let me know what happens this time.
Looks like the shortcode is coming from some other plugin, not WPDM Accordion add-on ( https://www.wpdownloadmanager.com/download/wpdm-accordion/ )
Here is a sample accordion shortcode,
[wpdm-accordion cats=”catid,” cat_style=”default” subcat_style=”success” template=”link-template-calltoaction2″ orderby=”title” order=”asc”]
Unlocked the license key from your old URL. You can use it on your new site now.
Users can visit the download page to download the file.
It is possible to add the main download button by doing the following customization but it is not guaranteed that it will work. Add the code at line 227 in /tpls/wpdm-add-new-file-front.php template. ( Make a template file like the previous template file )
<?php if( isset( $pid ) ) echo \WPDM\Package::downloadLink($pid, 0, array('template_type' ► 'link')); ?>