download-manager-files
directory uses 755
permissions. You can set the same for other subdirs.
Please try the updated code.
Hi,
Download Manager handles many data-heavy operations which adds a little more load on your server as any other similar plugin would do. But that does not have any noticeable effect on site speed. And if you use a cache plugin, all WPDM pages are loaded through the cache and does not add any server load. It just serves cached pages without any server calculation.
Anyway, please send temporary wp-admin login info in private reply so I can take a closer look.
Best regards.
Just click the +
sign to attach a file/folder to your package http://prntscr.com/pt4sj5
Button switch works with Pro Membership only.
To make it work with your Membership plugin a custom solution is required. But it is not simple. So, you have to request custom upgrade service for that.
Please use the updated code.
Where is the Automatewoo coupon dropdown? Sorry, I couldn’t find it. Mixing up posts types usually arises from not terminating local queries properly.
Please install and activate the REST API add-on to fix the issue with category meta box.
Please send temporary wp-admin login info in private reply to check the issue.
It is not possible to use the embedded form in all packages table.
Use a custom link template with [download_link_dynamic]
template tag to render the download button based on lock status. Here is the code to implement this tag.
function wpdm_download_link_dynamic($vars){
if ( wpdm_is_locked( $vars['ID'] ) )
$vars['download_link_dynamic'] = $vars['download_link_extended'];
else
$vars['download_link_dynamic'] = "<a class='btn btn-success' href='".$vars['download_url']."' target='_blank'>".$vars['link_label']."</a>";
return $vars;
}
add_filter( 'wdm_before_fetch_template', 'wpdm_download_link_dynamic', 10, 1 );
For Pay Now option the guest order is prepared automatically using PayPal email address. User will be redirected to the guest download page and download optiton will be presented there which won’t require any user action.
Sorry, it is not possible to bulk import from Dropbox. But you can attach a Dropbox directory to the package. Users will be able to download single file from that directory and you can add files later to this directory to make them automatically available for download.
Hi,
It is not possible to send the guest a download link with the email as the link requires the form submission. But the feature is noted for implementation.
For now, you can add a message on the guest order download page to let the user know they can copy the order ID from the email you sent.
Use a custom template for /wpdm-premium-packages/templates/partials/guest-order-search-form.php
to add the message. This template can be overridden by copying it to /active-theme/download-manager/partials/guest-order-search-form.php
Thanks.
Hi,
Are you referring to the Directory Import option in Downloads > Bulk Import page? In this method, one package is created for each file. Download Manager doesn’t move the files, it just links each file’s location to the package.
Thanks.
Just edited the login page. Please check the new shrtocode there.
It is possible but the required customization is rather lengthy. In next release we will replace the email with username.
Could you please send me the login info again? As there are many tickets from you I am not sure where you sent it before.
You have to wrap the CSS inside @media. Here is th eupdated CSS,
@media (min-width: 992px){ .w3eden .col-md-4 { width: 25% !important; } #wpdm-downloads .col-md-4{ width: 33.33% !important; } .w3eden .col-md-8 { width: 75% !important; } }
If the user has a membership and the package is a membership item then the “Add to cart” button will be replaced by a download button automativally http://prntscr.com/pstw7i
You can set the logo URL in the login shortcode. I have updated you login shortcode with your current logo.