Nayeem Riddhi

Forum Replies Created

Viewing 25 posts - 12,951 through 12,975 (of 20,542 total)
Feb 15, 2021 at 7:13 am
#146663
Moderator
Nayeem Riddhi
Staff OP

Please, give your temporary wp-admin login details in a private reply for checking the issue.

Thanks

Feb 15, 2021 at 7:11 am
#146662
Moderator
Nayeem Riddhi
Staff OP

I have checked that, Allow Access role is working fine here, https://cobo.bockemuehl.ch/download/wpdm-test/, can you please elaborate on this issue, please

thanks

Feb 15, 2021 at 6:22 am
#146661
Moderator
Nayeem Riddhi
Staff OP

Do you want to only change the title Downloads to All Items, please elaborate on this issue, please

thanks

Feb 15, 2021 at 6:09 am
#146660
Moderator
Nayeem Riddhi
Staff OP

For a dynamic badge, it needs to make a custom template with some condition, then I hope it should work for you

thanks

Feb 14, 2021 at 5:52 pm
#146645
Moderator
Nayeem Riddhi
Staff OP

Glad to hear this your problem has been resolved

thanks

Feb 14, 2021 at 5:50 pm
#146644
Moderator
Nayeem Riddhi
Staff OP

please check this add-on, https://www.wpdownloadmanager.com/download/advanced-access-control/, if it helps you

thanks

Feb 14, 2021 at 5:48 pm
#146643
Moderator
Nayeem Riddhi
Staff OP

please update your version to the latest version, please let me know if it resolves your issue

thanks

Feb 14, 2021 at 5:44 pm
#146642
Moderator
Nayeem Riddhi
Staff OP

please check the allow access option from package settings and also you can check this add-on, https://www.wpdownloadmanager.com/download/advanced-access-control/ if it helps you

thanks

Feb 14, 2021 at 5:38 pm
#146641
Moderator
Nayeem Riddhi
Staff OP

Fixing the Error there are a couple of ways on how to go about resolving this error. These include:

1.Editing the wp-config.php file
2.Editing the php.ini file
3.Editing the .htaccess file

1.Editing the wp-config.php file

Here you will need to edit the wp-config.php file.
define( 'WP_MEMORY_LIMIT', '1024M' );

2.Editing the php.ini file

On a live install, the file can be accessed within the root of your install, that is within the /public_html/ folder. Note that the file is not installed by WordPress but in most cases set up by your host. If you are using CPanel as your control panel, for example, make sure the checkbox for “Show Hidden Files” is checked and then click Go. You may check into this article on how to go about editing the file. Before editing the file, kindly preserve a backup to it by downloading it to your computer.
Once this is done, open the file, add or edit the following line:

memory_limit 1024M

3.Editing the .htaccess file

The .htaccess file is a file located within the root of your WordPress files.

You will need to add or edit the following code to the bottom of the file:

php_value memory_limit 1024M

With this done, you can then save your changes and check if the error is resolved.

Out of this doesn’t solve your issue, please contact your server administrator

Thanks

Feb 14, 2021 at 5:35 pm
#146640
Moderator
Nayeem Riddhi
Staff OP

Please, give your temporary wp-admin login details in a private reply for checking the issue.

Thanks

Feb 14, 2021 at 5:33 pm
#146639
Moderator
Nayeem Riddhi
Staff OP

please request a feature request here, https://www.wpdownloadmanager.com/support/forum/download-manager-pro-feature-request/ for your requirements, we shall try to add it next available in the next update version

thanks

Feb 14, 2021 at 5:11 pm
#146636
Moderator
Nayeem Riddhi
Staff OP

please share your related URL please, if possible, please, give your temporary wp-admin login details in a private reply for checking the issue.

Thanks

Feb 14, 2021 at 4:02 pm
#146630
Moderator
Nayeem Riddhi
Staff OP

Glad to hear this, your problem has been resolved

thanks

Feb 14, 2021 at 3:55 pm
#146629
Moderator
Nayeem Riddhi
Staff OP

https://med2050.org/download/wpdm-test, it is also working fine with subscriber role, please check

thanks

Feb 14, 2021 at 3:41 pm
#146628
Moderator
Nayeem Riddhi
Staff OP

Category column should contain exact category name or ID, whether it is a root or sub-category doesn’t matter, you should use as usual like this

thanks

Feb 14, 2021 at 3:18 pm
#146626
Moderator
Nayeem Riddhi
Staff OP

please check the attached screenshot, the syntax should be like this

Image 2021-02-14 at 9.14.04 PM

thanks

Feb 14, 2021 at 2:22 pm
#146621
Moderator
Nayeem Riddhi
Staff OP

Hello @Martin Levak,

Can you open a new ticket for your issue, please

thanks

Feb 14, 2021 at 2:13 pm
#146619
Moderator
Nayeem Riddhi
Staff OP

please use this code in your theme functions.php,

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

function wpdm_create_download_tag_taxonomy() {

    unregister_taxonomy_for_object_type( 'wpdmtag', 'wpdmpro' );

    $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 );
}

it will register a new taxonomy and unregister the existing taxonomy, please let me know, if it works for you

thanks

Feb 14, 2021 at 7:44 am
#146595
Moderator
Nayeem Riddhi
Staff OP

We shall check and note for an update for the next update

thanks

Feb 14, 2021 at 7:17 am
#146594
Moderator
Nayeem Riddhi
Staff OP

Can you please elaborate more on your issue, you can provide the related link URL or also can provide some screenshots, please let me know

thanks

Feb 14, 2021 at 6:00 am
#146593
Moderator
Nayeem Riddhi
Staff OP

I have checked that, Asset Manager is working fine, can you please share issue related packages URL

thanks

Feb 14, 2021 at 5:28 am
#146592
Moderator
Nayeem Riddhi
Staff OP

Please, give your temporary wp-admin login details in a private reply for checking the issue.

Thanks

Feb 13, 2021 at 3:18 pm
#146575
Moderator
Nayeem Riddhi
Staff OP

Please check the settings from the Downloads > Settings as I image attached,

Image 2021-02-13 at 9.15.45 PM

let me know if it helps you

thanks

Feb 13, 2021 at 2:54 pm
#146574
Moderator
Nayeem Riddhi
Staff OP

Can you please elaborate more on your issue, if possible, you can share the related URL and also please, give your temporary wp-admin login details in a private reply for checking the issue

Thanks

Feb 13, 2021 at 2:44 pm
#146572
Moderator
Nayeem Riddhi
Staff OP

For issue #1, can you please share the related URL

thanks

Viewing 25 posts - 12,951 through 12,975 (of 20,542 total)