I can’t able to access in your theme folder, can you please create in your theme single-wpdmpro.php
file copying scripts from single.php
file, then remove the pagination code from there, please check and let me know then
thanks
I hope you have got the solution in your latest created topic
thanks
Can you please elaborate on blocked direct access through Media Library issue please, if possible, please, give your temporary wp-admin login details in a private reply for checking the issue.
Thanks
I have checked that, this action hook is working fine from my side,
add_action('wpdm_update_profile_filed_html','new_user_profile_field',10,1);
function new_user_profile_field($user){
?>
<div class="col-md-6">
<label for="fb_id">Facebook Profile Link: </label>
<input type="text" value="<?php echo $user->fb_id; ?>" class="form-control" name="profile['fb_id']" id="fb_id">
</div>
<?php
}
can you please elaborate on this
thanks
Please, give your temporary wp-admin login details in a private reply for checking the issue.
Thanks
Please, give your temporary wp-admin login details in a private reply for checking the issue and also please the related package URL
Thanks
If you are using the form-lock add-on, there should have an option Email Download Link from Enable Form Lock lock options, please check
thanks
Has the problem been resolved, please let me know
thanks
Glad to hear this, your problem has been resolved, please let me know if you have other queries
thanks
Please, give your temporary wp-admin login details in a private reply for adjusting the issue.
Thanks
Do you want after pressing update package button, then it will redirect to another page, please let me know
thanks
please check now, it is working fine from my side, https://kiwislife.com/dl/excel-personal-salary-calculation/
thanks
you are welcome
thanks
It should work in latest version too, please upgrade your copy to the latest
thanks
Fixing the Error there are a couple of ways on how to go about resolving this error. These include:
1.Editing the wp-config.php
file
2.Editing the php.ini
file
3.Editing the .htaccess
file
1.Editing the wp-config.php
file
Here you will need to edit thewp-config.php
file.
define( 'WP_MEMORY_LIMIT', '1024M' );
2.Editing the php.ini
file
On a live install, the file can be accessed within the root of your install, that is within the /public_html/ folder. Note that the file is not installed by WordPress but in most cases set up by your host. If you are using CPanel as your control panel, for example, make sure the checkbox for “Show Hidden Files” is checked and then click Go. You may check into this article on how to go about editing the file. Before editing the file, kindly preserve a backup to it by downloading it to your computer.
Once this is done, open the file, add or edit the following line:
memory_limit 1024M
3.Editing the .htaccess
file
The .htaccess
file is a file located within the root of your WordPress files.
You will need to add or edit the following code to the bottom of the file:
php_value memory_limit 1024M
With this done, you can then save your changes and check if the error is resolved.
Thanks
Please, give your temporary wp-admin login details in a private reply for checking the issue.
Thanks
please check now, I think it should work now
thanks
How many packages you have with email lock, generally you have to select the additional custom field manually, otherwise have to search for a solution for you
thanks
please check now, I think now everything is working fine
thanks
By default, downloads are working on the same page, for open downloads in a new tab, it is required customization the code, please let me know how can I further help you
thanks
please check details in the doc, https://www.wpdownloadmanager.com/docsfor/download-manager-pro/, if something you not able to understand or configure, please knock here, I shall try to assist you on this
thanks
I have just adjusted it from plugins\download-manager\tpls\user-dashboard\edit-profile.php
for your Paypal option, you can also back-up the file for the next update following this doc, https://www.wpdownloadmanager.com/doc/template-files/
thanks
Just solving that,
thanks
For the first issue, the filter hook has been changed,
please use this below code,
add_filter('wpdm_user_dashboard_menu_account','my_custom_dashboard_menus',10,1);
// $menu_items is an array containing current menu items
function my_custom_dashboard_menus($menu_items)
{
unset($menu_items['edit-profile']);
return $menu_items;
}
for [wpdm_user_dashboard]
shortcode,
and for the second one, can you please elaborate which portion you are trying edit of the frontend or shortcode, let me know
thanks