Shahriar

Forum Replies Created

Viewing 25 posts - 5,026 through 5,050 (of 12,513 total)
Aug 23, 2018 at 1:50 pm
#86418
Moderator
Shahriar
Staff OP

Hi,

When using the ‘Wait for approval‘ option, email is sent after an admin approves the download from Downloads Subscribers Email Lock page. I have tested this feature and got the email after admin approval.

In your email-lock template you have to add the [#download_url#] template tag, otherwise, the user has no way to get the download URL.

Thanks.

Aug 23, 2018 at 1:32 pm
#86416
Moderator
Shahriar
Staff OP

Hi,

It is possible but requires some code customization. Please send temporary wp-admin login info, I will add the code there and will let you know what has been updated so you can keep track.

Thanks.

Aug 23, 2018 at 1:24 pm
#86415
Moderator
Shahriar
Staff OP

Hi,

It is possible using WPDM Default Values add-on( https://www.wpdownloadmanager.com/download/wpdm-default-values/ ). This add-on can help you to set up default values for all package settings.

Thanks.

Aug 23, 2018 at 1:22 pm
#86414
Moderator
Shahriar
Staff OP

Hi,

It is not possible in the exact way you want. But there is an option. You can set the label from package settings Link Label.

https://www.evernote.com/l/AUdGaZtbDSRGL70PQm77F4JhceV6x4vF3ucB/image.png

Then use the button template when inserting the shortcode.

[wpdm_package id=3333 template="link-template-button.php"]

Aug 23, 2018 at 1:15 pm
#86413
Moderator
Shahriar
Staff OP

Hi,

You can use get_terms function to get WPDM categories.

$args = array(
            'orderby'       ► 'name',
            'order'         ► 'ASC',
            'hide_empty'    ► false,
            'exclude'       ► array(),
            'exclude_tree'  ► array(),
            'include'       ► array(),
            'number'        ► '',
            'fields'        ► 'all',
            'slug'          ► '',
            'parent'        ► 0,
            'hierarchical'  ► true,
            'get'           ► '',
            'name__like'    ► '',
            'pad_counts'    ► false,
            'offset'        ► '',
            'search'        ► '',
            'cache_domain'  ► 'core'
        );
$categories = get_terms('wpdmcategory',$args);

Please check the related docs here https://developer.wordpress.org/reference/functions/get_terms/

Thanks.

Aug 23, 2018 at 1:07 pm
#86409
Moderator
Shahriar
Staff OP

Hi,

Looks like you have the free version of Download Manager there. Please install the Pro version. Email lock will be available after that. Let me know if still having the issue after Pro installation.

Thanks.

Aug 23, 2018 at 1:05 pm
#86408
Moderator
Shahriar
Staff OP

Sorry for the delay. Please send me the new URL. Looks like there is nothing on the page.

Aug 23, 2018 at 1:04 pm
#86407
Moderator
Shahriar
Staff OP

Hi Kristen,

Unlocked the key from old IP. Please try now.

Thanks.

Aug 23, 2018 at 1:01 pm
#86406
Moderator
Shahriar
Staff OP

Hi Nduka,

Please send temporary wp-admin login info in private reply to check the issue. You can create your own support ticket here https://www.wpdownloadmanager.com/support/forum/download-manager-pro/ ( Form is at the bottom of the page )

Thanks.

Aug 23, 2018 at 12:56 pm
#86404
Moderator
Shahriar
Staff OP

Please send temporary wp-admin login info in private reply to check the issue. Order works fine on our demo setup.

Aug 23, 2018 at 12:32 pm
#86400
Moderator
Shahriar
Staff OP

Could you please send me the page URL? After checking the CSS properties I can suggest you required CSS to adjust the alignment.

Aug 23, 2018 at 12:31 pm
#86399
Moderator
Shahriar
Staff OP

Hi David.

You are using an older version of Download Manager. Please install the latest version. You can download it here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases

Installing the latest version should fix the license issue.


@Francesco
Please try now.

Thanks.

Aug 23, 2018 at 12:26 pm
#86397
Moderator
Shahriar
Staff OP

Please try now.

Aug 23, 2018 at 12:24 pm
#86396
Moderator
Shahriar
Staff OP

Hi,

Looks like you are calling a Download Manager function WPDM_Crypt from your theme functions.php file. But this function is not available in Download Manager anymore. These functions are moved to \WPDM\libs\Crypt namespace.

You can call these functions like this example \WPDM\libs\Crypt::Encrypt($params) and \WPDM\libs\Crypt::Decrypt($params)

Thanks.

Aug 23, 2018 at 12:14 pm
#86395
Moderator
Shahriar
Staff OP

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

Aug 23, 2018 at 12:14 pm
#86394
Moderator
Shahriar
Staff OP

Works fine in my Firefox. Please send temporary wp-admin login info to check the issue. Are you using custom cart template there or default Premium Package templates?

Aug 23, 2018 at 12:12 pm
#86393
Moderator
Shahriar
Staff OP

Maybe you were logged out of the system. Did you try to save settings after reloading the page? Please send temporary wp-admin login info if still having the issue.

Aug 23, 2018 at 12:10 pm
#86392
Moderator
Shahriar
Staff OP

Maybe your CSV file is not formatted properly. Please send me a sample file or send temporary wp-admin login info in private reply So I can check it there.

Aug 19, 2018 at 6:21 am
#86305
Moderator
Shahriar
Staff OP

You can use wpdmpp_empty_cart_text filter hook to change the empty cart text.

Just add the following code in your theme’s functions.php file,

function wpdmpp_empty_cart_text( $text ){
    $text = 'No items in cart';
    return $text;
}
add_filter('wpdmpp_empty_cart_text','wpdmpp_empty_cart_text');
Aug 19, 2018 at 6:16 am
#86304
Moderator
Shahriar
Staff OP

The link used to work with older versions of WordPress. Now you have to generate the logout link programmatically using wp_logout_url function.

Ref: https://codex.wordpress.org/Function_Reference/wp_logout_url

Aug 19, 2018 at 6:07 am
#86300
Moderator
Shahriar
Staff OP

Please check the PHP error log and send me the latest entries related to Download Manager. Or just send the whole log file. The log file should indicate where the issue is coming from.

Aug 19, 2018 at 6:04 am
#86299
Moderator
Shahriar
Staff OP

Hi,

The package/download details page view uses single.php ( from your theme ) template combined with WPDM Page Template.

You can create a custom WPDM page template from Dashboard Downloads Templates page to change the package/download details page view.

But if you want to control the view from PHP template file then create a template file named single-wpdmpro.php and place it in your theme dir.

Please check the documentation here ( https://www.wpdownloadmanager.com/doc/template-files/ ) for more info.

Thanks.

Aug 19, 2018 at 5:56 am
#86298
Moderator
Shahriar
Staff OP

Hi,

The page layout depends on your theme. WPDM Page template only controls the content area.

But WPDM Page Template ( https://www.wpdownloadmanager.com/download/wpdm-page-templates/ ) add-on allows you to apply theme’s page template layout in WPDM package page. Install this add-on and apply Full-Width page template from package settings.

Thanks.

Aug 19, 2018 at 5:52 am
#86297
Moderator
Shahriar
Staff OP

Please install the latest version ( 4.7.7 ) of Download Manager to fix this issue.

Aug 19, 2018 at 5:51 am
#86296
Moderator
Shahriar
Staff OP

Hi,

It is already possible using a custom template for frontend upload form.

1 ) Copy the /download-manager/tpls/wpdm-add-new-file-front.php.
2 ) Place it in /active-theme/download-manager/ dir.
3 ) Hide all unnecessary settings in the new template using CSS.

To preset category., link template etc you need WPDM Default values ( https://www.wpdownloadmanager.com/download/wpdm-default-values/ ) add-on.

Thanks.

Viewing 25 posts - 5,026 through 5,050 (of 12,513 total)