Shahriar

Forum Replies Created

Viewing 25 posts - 5,726 through 5,750 (of 12,513 total)
Jun 5, 2018 at 9:45 am
#78210
Moderator
Shahriar
Staff OP

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

I deactivated and deleted the free version. Tried to install Pro but couldn’t install due to upload file size. Let me know if the issue persists with Pro version too. Also, is it okay if I deactivate other plugins during testing?

Jun 4, 2018 at 5:42 pm
#78144
Moderator
Shahriar
Staff OP

Please send temporary wp-admin login info in private reply. I will check other issues too that you reported in 2 other separate topics.

Jun 4, 2018 at 5:32 pm
#78143
Moderator
Shahriar
Staff OP

Please update PHP version on your dev site. You have 5.3 there now but WPDM requires at least 5.4

Please send temporary wp-admin info in private reply if WPDM not working in dev site after updating PHP.

Jun 4, 2018 at 5:28 pm
#78142
Moderator
Shahriar
Staff OP

There are 2 options.

1 ) You can create a template file /single-wpdmpro.php and place it in theme dir. This template file will override the page template from package settings and will show contents as you design them on the template. Requires PHP knowledge.

2 ) Another option is using Default Values add-on. It sets default values for new packages and you can bulk update old package settings.

Jun 4, 2018 at 5:24 pm
#78141
Moderator
Shahriar
Staff OP

Unlocked the key. Thanks.

Jun 4, 2018 at 5:22 pm
#78140
Moderator
Shahriar
Staff OP

Download Manager shows all packages to all visitors by default. When you assign a role to a package only the users with the role can download but others can still view the package info. But they can’t download the package.

If you want you can hide the package when a user doesn’t have access to it. Just set ‘Hide Everything’ as ‘When user is not allowed to download:’ option in Downloads Settings Basic Access Settings.

Jun 4, 2018 at 5:14 pm
#78135
Moderator
Shahriar
Staff OP

Please send temporary wp-admin login info in private reply to check the issue. Maybe some plugin files are missing or there is a JS conflict.

Jun 4, 2018 at 5:13 pm
#78133
Moderator
Shahriar
Staff OP

Please check the Allow Access option in package settings. Maybe Administrator role doesn’t have access to the package.

Jun 4, 2018 at 5:12 pm
#78132
Moderator
Shahriar
Staff OP

This shortcode won’t work with the download-tags. This is for generic tags only. A custom shortcode is required for that.

Jun 4, 2018 at 5:10 pm
#78130
Moderator
Shahriar
Staff OP

Please send the login url.

Jun 3, 2018 at 4:31 pm
#78032
Moderator
Shahriar
Staff OP

Sorry, it is not possible. jQuery file tree doesn’t have this option yet.

Jun 3, 2018 at 4:07 pm
#78029
Moderator
Shahriar
Staff OP

Maybe user doesn’t have the necessary permission to post from frontend or trying to edit someone else’s package. You can re-check the following option,

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

Send login info in private reply if the option is okay but still having the issue.

Jun 3, 2018 at 4:04 pm
#78027
Moderator
Shahriar
Staff OP

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

Jun 3, 2018 at 4:03 pm
#78026
Moderator
Shahriar
Staff OP

Current tag we used with Download Manager pacakges are the generic one which is shared with WP posts or any other custom posts that add tag support.

If you want you can add a custom tag with packages. That would work like the download categories which is a custom taxonomy. Add the following code to your theme’s functions.php file to add the custom tag taxonomy. There is only one difference between this custom and the download category. This one is not hierarchical like categories.

add_action( 'init', 'wpdm_create_download_tag_taxonomy', 0 );

function wpdm_create_download_tag_taxonomy() {

    $labels = array(
        'name'                       ► _x( 'Download Tags', 'taxonomy general name', 'download-manager' ),
        'singular_name'              ► _x( 'Download Tag', 'taxonomy singular name', 'download-manager' ),
        'search_items'               ► __( 'Search Download Tags', 'download-manager' ),
        'popular_items'              ► __( 'Popular Download Tags', 'download-manager' ),
        'all_items'                  ► __( 'All Download Tags', 'download-manager' ),
        'parent_item'                ► null,
        'parent_item_colon'          ► null,
        'edit_item'                  ► __( 'Edit Download Tag', 'download-manager' ),
        'update_item'                ► __( 'Update Download Tag', 'download-manager' ),
        'add_new_item'               ► __( 'Add New Download Tag', 'download-manager' ),
        'new_item_name'              ► __( 'New Download Tag Name', 'download-manager' ),
        'separate_items_with_commas' ► __( 'Separate Download Tags with commas', 'download-manager' ),
        'add_or_remove_items'        ► __( 'Add or remove Download Tags', 'download-manager' ),
        'choose_from_most_used'      ► __( 'Choose from the most used Download Tags', 'download-manager' ),
        'not_found'                  ► __( 'No Download Tags found.', 'download-manager' ),
        'menu_name'                  ► __( 'Download Tags', 'download-manager' ),
    );

    $args = array(
        'hierarchical'          ► false,
        'labels'                ► $labels,
        'show_ui'               ► true,
        'show_admin_column'     ► true,
        'update_count_callback' ► '_update_post_term_count',
        'query_var'             ► true,
        'rewrite'               ► array( 'slug' ► 'download-tag' ),
    );

    register_taxonomy( 'download-tag', 'wpdmpro', $args );
}
Jun 3, 2018 at 3:37 pm
#78024
Moderator
Shahriar
Staff OP

Actually, category permissions work fine. I think the user is getting the access from package settings. As the package and category permissions are merged to decide if the user can access the package or not.

If you want to use only category permission then remove all roles from package access settings. That should fix the issue.

Please let me know if you I missed something. Send wp-admin login info in private reply if you think the permission is not working as I described above.

Jun 3, 2018 at 3:32 pm
#78023
Moderator
Shahriar
Staff OP

Hi,

Upgraded your license. You can use the key on up to 5 sites.

Thanks.

Jun 3, 2018 at 3:28 pm
#78021
Moderator
Shahriar
Staff OP

Hi,

Adding the custom field filtering requires code customization and it is pretty complex customization. Our customization team can help you on this issue. Please mail to customize@wpdownloadmanager.com to get a quote for this customization.

Thanks.

Jun 3, 2018 at 3:14 pm
#78019
Moderator
Shahriar
Staff OP

1 ) Please send me the server error log to check this issue.
2 ) You have to hide some columns to make the view better

https://www.evernote.com/l/AUc4zjMcuPVAhIf9M5Ve-MNiQO7KjAeRaloB/image.png

3 ) Please send temporary wp-admin login info in private reply. Maybe some other plugin adding those extra fields using hooks.

4 ) Could be a permission issue. Please check File Browser Access option.

https://www.evernote.com/l/AUf-qz6FTY9C0oHMYT07P6Tdeo0HQ4Dj2HYB/image.png

5 ) I will check this issue after getting login info.

Jun 3, 2018 at 3:03 pm
#78018
Moderator
Shahriar
Staff OP

Hi, There is no option to disable google fonts. If you want to remove Google fonts you have to do it manually. Search for fonts.googleapis.com in Download Manager plugin dir and remove all font requests.

Another thing is when using Google fonts websites are not collecting any data. It is the Google which has to comply with GDPR in this case.

Jun 3, 2018 at 2:29 pm
#78016
Moderator
Shahriar
Staff OP

Please re-check the login info. Getting invalid username error.

Jun 2, 2018 at 4:32 pm
#77949
Moderator
Shahriar
Staff OP

Are you using any custom template for Download Manager? If not please delete the /download-manager folder inside your theme child theme. This issue is related to your theme. I switched to another theme to check and package details were visible there. Let me know what happens after deleting the folder/dir.

Jun 2, 2018 at 4:21 pm
#77948
Moderator
Shahriar
Staff OP

Please add the following code to the bottom of your active theme’s functions.php file to redirect users to the homepage,

add_action('wp_logout', 'wpdm_logout_redirect');
function wpdm_logout_redirect(){
    wp_redirect(home_url(""));
    exit();
}
Jun 1, 2018 at 9:05 pm
#77897
Moderator
Shahriar
Staff OP

Works fine on my side. I tested with Samsung Galaxy phone.

https://www.evernote.com/l/AUewupmVU09C2Kplid_tu_XaFc9zW-tWVSAB/image.png

Jun 1, 2018 at 8:56 pm
#77894
Moderator
Shahriar
Staff OP

You will find all your forum posts here https://www.wpdownloadmanager.com/support/users/services/topics/

Clicking on your name in a forum post forwards you to your forum profile.

Jun 1, 2018 at 8:53 pm
#77892
Moderator
Shahriar
Staff OP

Hi,

There is no built-in template tag to set icon or featured image conditionally as you want. But it is possible to create a custom template tag using this hook wdm_before_fetch_template ( https://www.wpdownloadmanager.com/doc/filter-reference/wdm_before_fetch_template/ )

File icons are set automatically in boxed style ( [file_list_extended] )

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

And all package table shows the file icon automatically when there is a single file attached to the package. If there are multiple package, it shows zip icon.

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