Shahriar

Forum Replies Created

Viewing 25 posts - 3,776 through 3,800 (of 12,513 total)
Jan 4, 2019 at 6:18 am
#91785
Moderator
Shahriar
Staff OP

Your theme is deactivating the click on the download link. The click is triggered by JS onclick event.

However, there is a workaround. I have created a clone ( Single Column, Flat Clone ) for the page template ( Single Column, Flat ) you are using there. Replaced the [download_link] template tag with <a href="[download_url]" class="btn btn-sm btn-success">[link_label]</a> This uses direct URL instead of JS onclick event to initiate download.

Check the example here https://www.teatimemonkeys.com/download/single-opt-in-mailchimp-english/

This clone template will work with only packages that have no lock. For locked packages use the original ( Single Column, Flat ) template.

If all of your downloads are unlocked, let me know. I will bulk update page template for all packages so you don’t have to update one by one.

Jan 3, 2019 at 8:36 am
#91750
Moderator
Shahriar
Staff OP

It is not possible yet to set currency in Membership add-on. Although it is showing $ in settings, It takes the currency from Premium Package during checkout.

Jan 3, 2019 at 8:33 am
#91749
Moderator
Shahriar
Staff OP

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

Jan 3, 2019 at 8:31 am
#91748
Moderator
Shahriar
Staff OP

Thanks for reporting the issue. We will fix it in next version.

Jan 3, 2019 at 7:21 am
#91747
Moderator
Shahriar
Staff OP

Hi,

Sorry for the delay

1 ) A user can download it anytime from their dashboard. No option to send it again.
2 ) You can generate a temporary download link from All packages page. Check the download button under each download.
3 ) Which settings are you referring to? Temporary download links can’t be changed, you can set the parameters only when generating the link.

Thanks.

Jan 3, 2019 at 7:17 am
#91746
Moderator
Shahriar
Staff OP

Hi, Installing the Premium Package should fix the issue. Thanks.

Jan 3, 2019 at 7:15 am
#91745
Moderator
Shahriar
Staff OP

Please send temporary wp-admin login info in private reply to check the issue. This looks like some kind of conflict with your theme.

Jan 3, 2019 at 7:13 am
#91744
Moderator
Shahriar
Staff OP

Please install the latest version of Download Manager. That should fix the issue. I can install the updated version for you. Just let me know if I should proceed with the update in that case.

Jan 3, 2019 at 7:09 am
#91743
Moderator
Shahriar
Staff OP

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

Jan 3, 2019 at 6:59 am
#91741
Moderator
Shahriar
Staff OP

The default page template is located here /download-manager/tpls/page-templates/page-template-default.php

You can copy and place it in /active-theme/download-manager/page-templates/ Then make your modifications to keep the changes even after plugin update.

Or you can use the Default Values add-on to set a different default template for new packages. It also allows you bulk update old package settings.

Jan 3, 2019 at 6:55 am
#91740
Moderator
Shahriar
Staff OP

Works on my test. The issue is related to your browser settings. I think you are blocking popup. But popups must be allowed to start the download automatically.

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

Jan 3, 2019 at 6:50 am
#91739
Moderator
Shahriar
Staff OP

Please send temporary wp-admin login info in private reply to check the issue. Everything works fine in our side. Nonces are checked during registration.

Jan 3, 2019 at 6:46 am
#91738
Moderator
Shahriar
Staff OP

The issue may be related to your “File Browser Root:” I tried to update the root but couldn’t save the settings as the WordFence blocking the saving operation. Please ask Word Fence to allow it or disable the Word Fence.

The tree shortcode wpdm_tree is coming from Extended Shortcodes add-on http://www.wpdownloadmanager.com/download/wpdm-extended-short-codes/ Installing it will fix the issue shortcode issue.

Jan 3, 2019 at 6:33 am
#91737
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Jan 3, 2019 at 5:54 am
#91735
Moderator
Shahriar
Staff OP

You can access the user uploaded files from Frontend Uploader File Manager tab. No need to create another page for that.

– If having an issue with the upload process send login info in private reply.
– You manage actual files using File Manager. To edit package info ( i.e. description, thumbnails etc ) you have to edit package from Frontend Uploader All Items tab.
– Yes, if you want I can add custom CSS to hide New Folder option.
– Upload from add/edit package page and File Manager goes to the same directory in the server which is /uploads/download-manager-files/username/

Jan 3, 2019 at 5:42 am
#91734
Moderator
Shahriar
Staff OP

Please try now.

Jan 3, 2019 at 5:40 am
#91733
Moderator
Shahriar
Staff OP

Hi Paul,

Try uploading files from File Manager Tab. Maybe there is no file uploaded by your user.

The setting tab is actually empty, it is used to add options dynamically using hooks. No need to worry about it.

Please send wp-admin login info in private reply if you want me to take a look there.

Thanks.

Jan 3, 2019 at 5:34 am
#91732
Moderator
Shahriar
Staff OP

Sorry for the delay. Looks like there is an issue with FB login. We are looking into it and will add a patch in the next release to fix it.

Jan 3, 2019 at 5:33 am
#91731
Moderator
Shahriar
Staff OP

Sorry for the delay. Please send wp-admin login info in private reply to check the google login issue. It works on my setup.

Jan 1, 2019 at 6:39 am
#91085
Moderator
Shahriar
Staff OP

Add the following code to your theme’s functions.php file. That should limit the access of media library to own uploads for all roles except administrator,

add_filter( 'ajax_query_attachments_args', 'wpdm_show_current_user_attachments' );
function wpdm_show_current_user_attachments( $query ) {
    $user_id = get_current_user_id();
    if ( $user_id && !current_user_can('activate_plugins') ) {
        $query['author'] = $user_id;
    }
    return $query;
}
Jan 1, 2019 at 5:37 am
#91084
Moderator
Shahriar
Staff OP

Maybe there are multiple instances of Bootstrap in the page. However, I have to check this issue there to be sure. Please send temporary wp-admin login info in private reply to check the issue.

Jan 1, 2019 at 5:36 am
#91083
Moderator
Shahriar
Staff OP

It is a built-in feature. No add-on is required for that.

Jan 1, 2019 at 5:32 am
#91082
Moderator
Shahriar
Staff OP

Please send the login url.

Dec 30, 2018 at 3:31 pm
#91072
Moderator
Shahriar
Staff OP

Not possible yet. You can show only file icon or thumb.

Dec 30, 2018 at 3:29 pm
#91070
Moderator
Shahriar
Staff OP

Remove the marked code,

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

Or just replace the line using the following code,

$zipped = wpdm_zip_files($files, $zipname );

Viewing 25 posts - 3,776 through 3,800 (of 12,513 total)