Now in WPDM Pro v6.3 you should receive email notification as soon as user sends a request for download.
Hi,
If you are not using password, please keep encryption disabled in package settings, otherwise chrome ask for password and if no password used, need to press enter with empty password.
Here is a way to create custom button for a locked package:
<a href="#unlock" class="wpdm-download-link wpdm-download-locked btn btn-success " data-package="{{PACKAGE_ID}}">Button Label or Image here</a>
Replace {{PACKAGE_ID}}
with proper package ID.
Please update wpdm pro again. I released a quick patch immediate without version change. However, a new update is also coming soon.
Hi,
It is not possible to disable single download page totally. However, you can disable single download page link from link template. You need to replace [page_link]
with [title]
, Doc:
Exclude login/user dashboard page, signup page, cart page, and pages with url parameters from cache. No other special action is needed ๐
Sorry, not clear, may you please give an url where I can check which icon you are talking about.
No, but, we shall add an option with the next update ๐
okay, I’m checking, however, may you please tell me, why you are expiring order and trying to keep download active simultaneously.
you can add the condition inside your function:
if(wpdm_query_var('wpdmppdl') !=='') { //modify... }
You’re welcome.
BTW, in case you missed it, wpdm premium packages plugin has an interesting feature, we added recently, you can create payment link even without creating new product, we call it dynamic product. It was added recently. It may come handy in your any future project :).
However, let us know if you need any other assistance :).
Sorry, actually my fault, I thought you were trying to expire order as soon as user downloads an item.
However, please use this:
We have added the hook for the next update.
Please update to 3.6.0
please try now.
You’re welcome. Always at your service ๐
okay now.
So, you want to update order data ( expire it ) on start of download.
Use the following code:
add_action("wpdm_onstart_download", function ($package) { $params = wpdmppdl_decode(wpdm_query_var('wpdmppdl')); $order_id = wpdm_valueof($params, 'oid'); $odata = WPDMPP()->order->getOrder($order_id); if ( $odata->order_status == 'Expired' ) { // Modify order data here $odata->order_status = 'Completed'; // Expired time set to 10 mins in the future so that the download link will be seen as valid $odata->expire_date = time() + 600; } });
please update to 6.3.1
Sorry, not clear, may you please explain little more.
May you please send me temporary wp-admin login info in a private reply to check how you are trying to implement it.
okay now, it was an incompatibility issue with the download period add-on.
Looks like you are using older version of PHP.
Please use the following code:
global $WPDM; $download_url = $WPDM->package->getMasterDownloadURL($ID);
please update to 6.3.1
May you please explain a little more about the idea behind the hook.