“basic_settings” action hook can be used for adding new settings field with wpdm pro while you are building a custom add-on for wpdm pro. Here is the example usage:
<?php function wpdm_new_settings_field(){ ?> <tr> <td>Field Name</td> <td><input type="text" value="<?php echo get_option('_wpdm_settings_field'); ?>" name="_wpdm_settings_field" /></td> </tr> <?php } add_action("basic_settings","wpdm_new_settings_field"); ?>
For the code you will see the result in Admin Menu >> Downloads >> Settings Page like following image: