Forum Replies Created
Sorry for delayed reply, Please check now. It looks like working fine after I’ve updated plugin.
Sorry, not clear, may you please give me the example url where you trying this.
No need to pay, it is simple change, if you want to remote the link completely from title for all user and keep download link only, otherwise, please contact customize@wpdownloadmanager.com
Sorry for the confusion, actually the module is developed in that way, following play store:
https://www.evernote.com/l/AV3RxVhEsYtOHYoxXtVepNjH-R190e_Mgd8B/image.png
If you change field type, old values may not work properly due to internal variable name change, means, you can’t change field type if you need to keep old values.
The process is like regular plugin installation:
Admin Menu Plugins Add New Upload Plugin Upload the zip file you have Activate plugin
@minerva-solutions, yes, please give me your order ID or license key in a private reply.
Please give me the license key in a private reply to unlock it.
About the picture:
#1. That is not possible without editing code
#2. To sort category your will need to use plugin like this https://wordpress.org/plugins/taxonomy-terms-order/ , category links are generated by wp itself, wpdm has nothing to do with that.
All docs are available here:
http://www.wpdownloadmanager.com/docs/
To show all packages in a page either you need to use this short-code:
Or use this add-on:
Except email lock with “Mail Download Link” option, all other options downloads the file instantly.
Yes, Please try updating. If you still see the issue after update, please give me temporary wp-admin login info and aws login info in a private reply.
Sorry, not clear, which template did you mean there? May you please give me a screenshot to check.
Please give me ftp access to, I need to rename the wpdm plugin dir before activate it.
Please use short-code like [wpdm_user_dashboard flaturl=0]
Add following code at the end of /plugins/wpdm-prepaid_credit/wpmp-deposit.php:
function wpdm_ppc_modify_user_table( $column ) {
$column['storecredits'] = 'Store Credits';
return $column;
}
add_filter( 'manage_users_columns', 'wpdm_ppc_modify_user_table' );
function wpdm_ppc_modify_user_table_row( $val, $column_name, $user_id ) {
switch ($column_name) {
case 'storecredits' :
$credit = get_user_meta($user_id, 'prepaid_credits',true);
$credit = $credit?doubleval($credit):0;
return $credit;
break;
default:
}
return $val;
}
add_filter( 'manage_users_custom_column', 'wpdm_ppc_modify_user_table_row', 10, 3 );
You will need new column in Admin Menu Users page showing users store credit. However it also will be available with next update.
It doesn’t looks like that class.Templates.php on line # 137 is not matching, please give me temporary wp-admin login info in a private reply to check.
Please give me the url where you trying this so that I can check the current state.
@ruditrip, you don’t need to hack anything, see here now:
http://www.mastermaths.co.za/login/memos-by-category
you had to use order_by="title" order="asc"
Actually if any type of page cache is not active in your server, it won’t happen ever, wpdm check if old cache already exist before creating new thumbnail, if there is old one, then use it or create new one. That’s how it work, but in your site it is still showing old html even after updating plugin.