Shahriar

Forum Replies Created

Viewing 25 posts - 2,201 through 2,225 (of 12,513 total)
in reply to: Download Links #98304

Shahriar
Moderator

Hi,

Download Manager won’t show the full path to the file. The plugin generates dynamic download links like the following one,

www.site.com/download/package-url/?wpdmdl=5209&refresh=5d047e2e822231560575534

If you want you can add this in the download button but not the actual pdf file path.

Thanks.

in reply to: Download Button is disappear #98303

Shahriar
Moderator

This is a known issue with the latest version. We will fix it in next release.

If you want to patch it temporarily please copy the code from here and override the code of /download-manager/libs/class.FileList.php file with the copied code.

in reply to: Invalid License Key #98302

Shahriar
Moderator

Hi Jason,

Please install the latest version to fix the issue. Follow these steps to update the plugin,

1 ) Deactivate and delete the old version. You won’t lose any data.

2) Download latest version from here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases

3 ) Install the latest version and activate the license key.

Thanks.

in reply to: Download for subscribers and list of entries #98301

Shahriar
Moderator

Assign the ‘Subscriber’ role as ‘Allow Access’ option in package settings meta box. And then set a custom message in “Login Required Message:” option in the “Basic Settings” page. Logged in subscribers will see the download button and non-logged user will see the message. You can set anything in the message, it could be another button too which links to the login url.

in reply to: How to list all the categories and their packages #98262

Shahriar
Moderator

Are you just trying to show your packages in the page or want to export files in a csv or xls?

If it is just listing packages with their categories then use all packages table. The table is customizable using various parameters. Here is the demo link: https://demo.wpdownloadmanager.com/wpdmpro/package-list-in-responsive-table/

in reply to: Double Opt-in during registration #98261

Shahriar
Moderator

There is no double opt-in feature for the registration process. You can use the double option on Email Lock feature on MailChimp subscription using this add-on https://www.wpdownloadmanager.com/download/mailchimp-subscription/

in reply to: Content for registered users ?? #98260

Shahriar
Moderator

It is possible but requires a custom solution.

in reply to: Tree View – Order by ID #98218

Shahriar
Moderator

Please use the following shortcode to order packages by ID,

[wpdm_tree download_link=1 orderby=ID order=asc]

in reply to: Invalid License Key! #98214

Shahriar
Moderator

Then just copy the new /download-manager/wpdm.php file and replace your old file with the new one.

in reply to: download error #98213

Shahriar
Moderator

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


Shahriar
Moderator
This reply has been marked as private.
in reply to: Can't save any Settings #98201

Shahriar
Moderator

Please send the admin login URL.

in reply to: Translations not working (tree view) #98200

Shahriar
Moderator

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

in reply to: Download for subscribers and list of entries #98199

Shahriar
Moderator

Hi,

Add the following code to your theme’s functions.php file to include child category posts too. This code uses the wpdm_embed_category_query_params filter which allows you to modify any query parameter.

function wpdm_embed_category_query_params( $params ){

    $tax_query  = $params['tax_query'];
    $taxonomy   = $tax_query[0]['taxonomy'];
    $terms      = $tax_query[0]['terms'];
    $operator   = $tax_query[0]['operator'];

    $params['tax_query'] = array(array(
        'taxonomy' ► $taxonomy,
        'field' ► 'slug',
        'terms' ► $terms,
        'include_children' ► true,
        'operator' ► $operator
    ));

    return $params;
}
add_filter('wpdm_embed_category_query_params', 'wpdm_embed_category_query_params');

Best regards.

in reply to: Invalid License Key! #98198

Shahriar
Moderator
This reply has been marked as private.
in reply to: Package addition/revisions logging #98197

Shahriar
Moderator
This reply has been marked as private.
in reply to: How to list all the categories and their packages #98196

Shahriar
Moderator

Currently, It’s not possible to auto open folders.

in reply to: audio_player does not show the play button! #98194

Shahriar
Moderator

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

in reply to: Single Download Won't Enable #98193

Shahriar
Moderator

This is a known issue with the latest version. We will fix it in next release.

If you want to patch it temporarily please copy the code from here and override the code of /download-manager/libs/class.FileList.php file with the copied code.

in reply to: Invalid License Key #98192

Shahriar
Moderator

Please try now.


Shahriar
Moderator

Where does it say full? In the package details page? The limit works fine in my case. My limit was exceeded on the other day. Today I was able to download again.

Not clear. Please send me the package link where you experienced this issue.

Default Values are being set properly when creating a new package. Why do you think it is not working?

Your global lazy download was disabled and you were using the global option. That’s why it didn’t work. I have activated the lazy download globally. Now it will work for all packages unless you disable lazy download from package settings.

Where is the picture? Maybe you forgot to attach it.

I will try my best to solve all the issues you are facing. Most of these are related to settings. As you new user you do not have the knowledge of all options in the plugin.

in reply to: Please help me, I'm having trouble with your WDM PRO #98189

Shahriar
Moderator

Could you please re-upload the pictures or send me a link to the image? I check the download here https://www.ameede.com/download/e0003217/ and it is working.

in reply to: Automatic insertion of shortcode in custom posts #98188

Shahriar
Moderator
This reply has been marked as private.
in reply to: Content for registered users ?? #98187

Shahriar
Moderator

You can hide the whole download package by setting “Hide Everything” when the user doesn’t have access to the package. Does it work for you or are you just trying to hide a small part of package description?

in reply to: Additional Previews Caused Error #98185

Shahriar
Moderator

After a thorough debugging, found the origin of this issue. When trying to resize the preview image WordPress is throwing an error “No editor could be selected.” This a core WordPress error message.

After getting this error I checked the image editor from Media tab to be certain the issue is related to core WordPress. And yes it is. I couldn’t use the image editor in Media library which has nothing to do with Download Manager.

So, the question is why WordPress is throwing the error? Two possible reasons. WordPress uses GD or Imagick library for image editing. Maybe none of these libraries is active in your site.

Please ask your server support to enable these libraries for you. You can enable only Imagick ( this is better ) or both.

Viewing 25 posts - 2,201 through 2,225 (of 12,513 total)