Do you want to combine the master key with page or post URL?
I want the master key to be the same as the Post ID. Is this possible?
The master key generally auto-generated key, it is not editable.
Thanks.
Thank you for your quick response. You said generally.., does that mean that it can be editable with code?
Hi,
Yes, it can be edited using code. The master key is saved in the post meta __wpdm_masterkey.
Thank you for your help. Is there any way that you can share a snippet to tweak the masterkey settings so that it can be manually set in the back-end? I would really, really appreciate it!
You may use code like the following:
$key = "ADD-YOUR-KEY"; //Your may your custom key or for ramdom key, use function uniqid();
update_post_meta($package_id, '__wpdm_masterkey', $key);
Replace $package_id with download package ID.
Hi again, thank you. Would this be something that would run in a php function? Would this allow the master key field to be set manually in each download?
Hello I am writing to you for your help again. Thank you.