Forum Replies Created
Assuming, you already have Premium Package activated.
Create a product/package, and select pay as you want option:
Asset CleanUp: Page Speed Booster plugin is messing up the layout.
To activate the payment option, you need to configure PayPal from here:
https://beemate.be/wp-admin/edit.php?post_type=wppm_plan&page=wppm_settings#paypal
Here it is:
https://beemate.be/membership-plans/
And you need to configure PayPal from here:
https://beemate.be/wp-admin/edit.php?post_type=wppm_plan&page=wppm_settings#paypal
Hi,
Sorry for the delays, we have fixed the issue and released an update ( v1.4.9 ) for that MailChimp Add-on
Import is not possible yet, but, as I see, that will be a good feature for Pro Membership plugin, and we shall add it with the next update ( within next week ).
Hi,
That is a theme feature, your theme didn’t have wpdm specific template files ( https://www.wpdownloadmanager.com/doc/template-files/ ). However, please add the following code at the end of your theme’s functions.php to add category title:
add_action( "wpdm_before_category_page_content", function( $category ) { echo "<h2>".$category->name."</h2>"; } );
Here it is:
[wpdm_search_result template="custom_archive_pages" cols=4]
The size and shape of the PDF thumb will depend on the PDF file, wpdm has nothing to do there. If you want to make every thumb look similar, you may need to crop and adjust them, then attach as featured image.
Keep backup of /download-maanger/ dir inside astra theme. Also, please review our templating docs, all are explained there
It looks like your updated Astra theme and my edited templates are gone, may you please restore it from backup.
However, here are the instructions for editing template files:
Hi,
you may use [pdf_thumb] to show original thumbnail instead of [pdf_thumb_WxH]. But shape and spacing will depend on the PDF file.
Hello @yumaworks,
As you are using the pro version, adding * in the allowed file type option should work fine for you.
Okay now, I’ve deactivated and reactivated the plugin, that updated the database. The stats are working fine now.
You can’t customize the columns for a widget. But you can do that using wpdm_packages shortcode.
No worry, we are adding date filter parameters soon :).
Hi,
From WPDM 6.0 ( Coming Soon ), we shall add a new tag [pdf_thumb_url] which will return the only pdf thumbnail URL instead of image tag HTML, and [pdf_name] will return the pdf file name without .pdf ext, so that you can customize the thumbnail and attributes as you want :).
Hi,
[similar_downloads] tag shows related downloads based on tags and categories. I’ve added the tab in your page template. Related downloads are showing now:
It was not showing the homepage as there was no record for this on WPPM as the user was not subscribed through WPPM. However, I’ve adjusted it and now it is working fine.
Hi,
Done. Here is how:

However, in the next update, we are adding a new option named Site Lock. Using the option you can lock the full site to visitors. They will be able to view the site ( any public or specified authorized pages ) only after signup.
Hi,
Thanks for your patience.
#1. User signup is okay now, the issue was with the plugin, we have fixed it for the next update, I also have added the fix in your site.
#2. May you please point me to where are you seeing the error.
#3. Yes, you can hide admin bar add the following code at the end of your active theme’s functions.php:
add_filter("show_admin_bar", "__return_false");
However, that will hide admin bar at frontend for all users, but if you want to hide admin bar for everyone except admins, please add the following code:
add_filter("show_admin_bar", function(){
if(!current_user_can('manage_options')) return false;
});
