Shahjada

Forum Replies Created

Viewing 25 posts - 1,626 through 1,650 (of 15,655 total)
May 18, 2021 at 12:59 am
#152809
Keymaster
Shahjada
Staff OP

Assuming, you already have Premium Package activated.
Create a product/package, and select pay as you want option:
Add%20New%20Package%20%E2%80%B9%20WordPress%20Download%20Manager%20Pro%20%E2%80%94%20WordPress

May 17, 2021 at 5:47 pm
#152790
Keymaster
Shahjada
Staff OP
This reply has been marked as private.
May 16, 2021 at 7:58 pm
#152711
Keymaster
Shahjada
Staff OP

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

May 15, 2021 at 10:24 pm
#152691
May 15, 2021 at 11:03 am
#152665
Keymaster
Shahjada
Staff OP

Hi,
Sorry for the delays, we have fixed the issue and released an update ( v1.4.9 ) for that MailChimp Add-on

May 15, 2021 at 9:57 am
#152663
Keymaster
Shahjada
Staff OP

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 ).

May 15, 2021 at 9:19 am
#152662
Keymaster
Shahjada
Staff OP

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>"; } );

May 15, 2021 at 8:33 am
#152661
Keymaster
Shahjada
Staff OP

Here it is:
[wpdm_search_result template="custom_archive_pages" cols=4]

May 15, 2021 at 8:12 am
#152660
Keymaster
Shahjada
Staff OP

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.

May 15, 2021 at 8:09 am
#152659
Keymaster
Shahjada
Staff OP

Keep backup of /download-maanger/ dir inside astra theme. Also, please review our templating docs, all are explained there

Template Files

Templates Overview

May 14, 2021 at 7:48 pm
#152652
Keymaster
Shahjada
Staff OP
This reply has been marked as private.
May 14, 2021 at 9:08 am
#152635
Keymaster
Shahjada
Staff OP

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:

Template Files

May 13, 2021 at 4:18 pm
#152613
Keymaster
Shahjada
Staff OP

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.

May 13, 2021 at 11:06 am
#152591
Keymaster
Shahjada
Staff OP

Hello @yumaworks,
As you are using the pro version, adding * in the allowed file type option should work fine for you.

May 13, 2021 at 10:13 am
#152587
Keymaster
Shahjada
Staff OP

Okay now, I’ve deactivated and reactivated the plugin, that updated the database. The stats are working fine now.

May 13, 2021 at 6:56 am
#152581
Keymaster
Shahjada
Staff OP

You can’t customize the columns for a widget. But you can do that using wpdm_packages shortcode.

https://www.wpdownloadmanager.com/doc/short-codes/wpdm_packages-wp_query-in-a-shortcode-for-download-manager-packages/

May 13, 2021 at 6:51 am
#152580
Keymaster
Shahjada
Staff OP

No worry, we are adding date filter parameters soon :).

May 13, 2021 at 6:29 am
#152574
Keymaster
Shahjada
Staff OP

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 :).

May 13, 2021 at 5:59 am
#152572
Keymaster
Shahjada
Staff OP
This reply has been marked as private.
May 12, 2021 at 9:12 am
#152515
Keymaster
Shahjada
Staff OP

Done.

May 11, 2021 at 11:19 pm
#152507
Keymaster
Shahjada
Staff OP

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:

https://www.engbookspdf.com/download/landscape-site-grading-principles-grading-with-design-in-mind-by-bruce-g-sharky/

May 11, 2021 at 3:22 pm
#152428
Keymaster
Shahjada
Staff OP

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.

May 11, 2021 at 12:01 pm
#152397
Keymaster
Shahjada
Staff OP

Hi,
Please download invoices from here:

User Dashboard

Invoice

May 11, 2021 at 11:39 am
#152394
Keymaster
Shahjada
Staff OP

Hi,
Done. Here is how:
Edit%20Page%20%E2%80%B9%20Durable%20Customer%20Portal%20%E2%80%94%20WordPress

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.

May 10, 2021 at 11:14 pm
#152372
Keymaster
Shahjada
Staff OP

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;
});
Viewing 25 posts - 1,626 through 1,650 (of 15,655 total)