Shahriar

Forum Replies Created

Viewing 25 posts - 1,726 through 1,750 (of 12,513 total)
in reply to: Staging site migrated to production with WPDM Pro #110468

Shahriar
Moderator

Hi,

Unlocked your key from the old domain. Now the license key should work fine on your new site. Please make sure you have the latest version of the plugin. You can download it here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases

Thanks.

in reply to: Sort by File Name #110467

Shahriar
Moderator

Which shortcode are you using there?

in reply to: Disable frontend access entirely #110463

Shahriar
Moderator

Hi,

Does your TML plugin have its own shortcode to create login form? I see from setting it creates some dynamic URLs. But when I deactivate the WPDM there is nothing on the login page.

Please set up the login system using TML plugin. If everything works then activate the WPDM to check if it’s creating an issue.

Or you can just use WPDM for the login/signup, no extra plugin required in this case. If you want you can even customize the look using custom templates.

Thanks.

in reply to: Make search default to Downloads not Posts? #110462

Shahriar
Moderator

You can add the following code to your theme’s functions.php file to exclude normal post and pages from the search result,

function wpdmpro_search_filter($query) {
    if ($query->is_search && !is_admin() ) {
        $query->set('post_type',array('wpdmpro'));
    }
    return $query;
}
add_filter('pre_get_posts','wpdmpro_search_filter');

Shahriar
Moderator

Could you please send temporary wp-admin login info in private reply? I will set it up properly for you.

in reply to: Australian GST #110460

Shahriar
Moderator

Just another idea, when setting the package price can’t you include the tax with it? That way, you are showing the price including tax product page and no need to edit the plugin to calculate the tax later.

in reply to: GD Library? #110458

Shahriar
Moderator

Please send temporary wp-admin login info in private reply to check the issue.


Shahriar
Moderator

Download Manager doesn’t require any extra settings for SMTP compatibility. Maybe some kind of settings is missing in your SMTP plugin. You can send temporary wp-admin login info in private reply so I can check the issue there. Do other emails work fine on your site?

in reply to: Mailchimp Email Download Issue #110455

Shahriar
Moderator

Hi,

You are using the Free version of Download Manager there. Please install the Pro version to get the email lock feature.

Thanks.

in reply to: Descriptions of sub-downloads #110418

Shahriar
Moderator

All those add-ons are separate packages as you see from their package details page. In the All Add-ons page, we used the following shortcode to show packages based on a tag. And using a custom link-template there to show title, description, etc.

[wpdm_packages tag_slug__in="all-add-ons-pack" template="5d29dda056d51" cols="1" items_per_page=20 paging=1 async=1 toolbar=0]

in reply to: Share on Buddypress button #110417

Shahriar
Moderator
in reply to: Buddypress problem #110416

Shahriar
Moderator
This reply has been marked as private.

Shahriar
Moderator

Replied to your another ticket about the free button label. We will ass a patch to fix the “You Are Not Allowed to Download” button label issue.

in reply to: Hire you to make some templates for me #110413

Shahriar
Moderator
This reply has been marked as private.
in reply to: Change the menu items in the dashboard & futureproof #110412

Shahriar
Moderator

Use wpdm_user_dashboard_menu hook to modify the user dashboard. You can new items there too if you want.

Documentation https://www.wpdownloadmanager.com/doc/filter-reference/wpdm_user_dashboard_menu/

For example, the following code changes the “Profile” label to “My Subscription”. Add this to your theme’s functions.php to make it update proof.

add_filter('wpdm_user_dashboard_menu','wpdm_custom_dashboard_menus',10,1);
function wpdm_custom_dashboard_menus($menu_items){
    $menu_items['']['name'] = __( "My Subscription" , "download-manager" );
    return $menu_items;
}

Shahriar
Moderator

Hi Marcus, Looks like email support sent the invoice. Marking this as resolved. Thanks.


Shahriar
Moderator

Your theme JS is interfering with the ajax submission of the Form. Everything works fine when using another theme. The form lock in modal is working because in that mode theme JS can’t interfere.

in reply to: Amazon S3 Add On #110407

Shahriar
Moderator

Please send temporary wp-admin login info in private reply. And send me a package link where this issue occurs. Not sure yet where the issue is coming from. But I want to look around and do some testing.


Shahriar
Moderator

Please send temporary wp-admin login info in private reply to check the issue.

in reply to: Descriptions of sub-downloads #110405

Shahriar
Moderator

You can add file title only. Your case seems similar to our All Add-ons pack https://www.wpdownloadmanager.com/download/all-add-ons/ We have created multiple packages for that. You can implement the same approach.

in reply to: Free and PAID in the same package #110404

Shahriar
Moderator

1 ) Free Download Button takes the label from “Link Label” option of package settings. As a premium package doesn’t have another download button ( Main download button is “add to cart” button ) unless you are using Membership add-on. In case of membership, both button shows the same label when the user has access to the package from a subscription.

The solution is using [free_download_url] template tag in your custom link/page template instead of [free_download_btn]. When using [free_download_url] you can define the button label from your shortcode.

<a href="[free_download_url]" class="btn btn-lg btn-info btn-block">Download Free File</a>

2 ) It is not possible to hide the free download button for subscribers. You need a custom template tag for that. Use wdm_before_fetch_template hook to create a custom template tag https://www.wpdownloadmanager.com/doc/filter-reference/wdm_before_fetch_template/

3 ) Individual download for free files: Not possible yet but noted for implementation.


Shahriar
Moderator

Unlocked everyone’s key. Please try now. If still getting an “invalid key” error update your plugin to fix it. You can download the latest version from your “purchases area” https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases


Shahriar
Moderator

Sorry, No hook available there to modify it with plugin customization.

Please find header('location: ' . $indfile); at line 142 on /download-manager/wpdm-start-download.php file and replace it with

header('location: ' . $indfile, TRUE, 301);

in reply to: button Publish directly new frontend package #110400

Shahriar
Moderator

It seems you have already figured it out. Anyway, let me know if still have any question.

in reply to: Upgrading from v1 to v4 #110399

Shahriar
Moderator

What was your previous version? There was no v1 of WPDM.

Have you migrated your old packages? If not please us this add-on https://www.dropbox.com/s/ijvxmt201vrmu3g/wpdm-m324x.zip?dl=0 to migrate packages. Migration Procedure https://www.wpdownloadmanager.com/support/topic/updating-from-wpdm-pro-v3-to-v4/

Let me know if your query is about something else. Or send temporary wp-admin login info in private reply if you want me to check your installation.

Viewing 25 posts - 1,726 through 1,750 (of 12,513 total)