Forum Replies Created
Hi,
First of all, Mailchimp is working fine now on your site. For phone number, I added a dummy number when sending api request from wpdm.
There is no wpdm specfic, the form is for the list you select in wpdm settings. The form can be found here: Go To MailChimp Audience Menu ► Select the list from dropdown ► Click View Contacts button ► Click on tab Signup Forms ► Select Form builder
And you will the MailChimp form, there you can delete the phone number.
You can show like this:
https://demo.wpdownloadmanager.com/wpdmpro/download/multi-file-package/
Hi,
The error is coming from the plugin Multisite Networkwide Notifications
Use add_filter("wpdm_nivo_lightbox", "__return_false"); to hide nivo lightbox
Unselect any google font from wpdm UI setting to hide the CSS.
got it, we shall adjust it with the next update.
File card button is showing now after selecting file cart page from wpdm settings:

Please check:
https://animalwelfareindicators.thebrooke.org/download/example-multifile-package/
Updated page template:
https://animalwelfareindicators.thebrooke.org/wp-admin/edit.php?post_type=wpdmpro&page=templates&_type=page&task=EditTemplate&tplid=brooke_multifile_extended
Hi,
Sorry, we missed some placeholder text from translation, we shall adjust them with the next update.
Please follow the steps to upgrade:
1. Deactivate and Delete the old version from Admin Menu ► Plugins
2. Download the latest version from https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
3. Install and activate the latest version
4. Done! ( The process will not harm your old data/settings )
From the next update, you will be able to use the automatic upgrade as usual.
Hi,
Please do that following:
- Go to admin menu ► Pages ► Add New
- Add page title and select thee custom page template you just created from the
Page Attributes - Publish
- View the page and you will see the search bar
- Search something to see results
Hi,
Pagination issue is generating by your theme. It can be adjusted by adding the following CSS:
@media (max-width: 600px) {
.w3eden .pagination li a.page-numbers{
padding: 0 10px !important;
min-width: 30px !important;
}
}
Issue #1 & #2, a new major update is coming soon with the fix. However, for now, I’ve patched it on your site temporarily
With the latest version of the form lock add-on, need the latest version of wpdm pro. If you are already using the latest version of wpdm pro, please send me temporary wp-admin login info in a private reply to check your issue.
Hi,
Found the issue, it will be adjusted with the next update.
Still, it is not allowing me to access https://magneticwin.pt/wp-admin/
Hi,
To open a link in Nivo lightbox in the package details page, use class wpdm-lightbox with the a tag.
Ex: <a href='full-image-url' class='wpdm-lightbox'><img thumb/></a>
Hi,
I think you can do that using our PDF viewer add-on:
And from the page template simply remove the [download_link..] tag
That option is not available for now, the default redirect page is the dashboard membership plan page. However, a new and major update of membership plugin is coming within this month, we shall add those options there.
However, you can track stripe successfull subscription payments using the following code:
add_action("plugins_loaded", function(){
if (wpdm_query_var('wppmaction') === 'stripe-new-subscription') {
$url = "your tracking url"; //Set you tracking url
$params = [ ]; // Additional Parameters
$params = $params + $_REQUEST;
wpdm_remote_post($url, $params);
}
});
Hi,
I’m not seeing login page anywhere there, also standard login url is not working.
Hi,
Sorry for the delays, we missed this as the topic is already marked as resolved, next time please create a new topic.
Please send me temporary wp-admin login info in a private reply to check your issue.
Hi,
You. can use the following code to push the data to a remote URL:
add_action( 'gform_after_submission', 'handle_api_request', 10, 2 );
function handle_api_request( $entry, $form ) {
//Handle your remote. api request here
}

