Nayeem Riddhi

Forum Replies Created

Viewing 25 posts - 17,726 through 17,750 (of 20,900 total)
Jun 29, 2020 at 4:30 pm
#131821
Moderator
Nayeem Riddhi
Staff OP

Hi,

It is happening due to the js cache. Please try cleating the cache. Alternatively, in the latest update 3.1.02, we have added an option to unmask the download link, that option will resolve the issue regardless of the js cache.

Jun 29, 2020 at 4:27 pm
#131819
Moderator
Nayeem Riddhi
Staff OP

Hi,

Your problem has been resolved after updating the plugin and switching the bootstrap version.

Thanks.

Jun 29, 2020 at 4:16 pm
#131818
Moderator
Nayeem Riddhi
Staff OP

Hi,

In that case, it is happening due to the js cache. Please try cleating the cache. Alternatively, in the latest update 3.1.02, we have added an option to unmask the download link, that option will resolve the issue regardless of the js cache.

Jun 29, 2020 at 4:07 pm
#131815
Moderator
Nayeem Riddhi
Staff OP

Can you please enabling/disabling style/scripts from Downloads > Settings > User Interface for checking. then let me know and also you delete install again the plugin, you won’t lose any data.

Thanks.

Jun 29, 2020 at 4:01 pm
#131813
Moderator
Nayeem Riddhi
Staff OP

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

Thanks.

Jun 29, 2020 at 3:59 pm
#131812
Moderator
Nayeem Riddhi
Staff OP

Hi,

Is it related to WPDM free/pro plugin? please let me know.

Thanks.

Jun 29, 2020 at 3:57 pm
#131811
Moderator
Nayeem Riddhi
Staff OP

Please share your page/ files URL. if possible, Please, give your temporary wp-admin login details in a private reply for checking the issue.

Thanks.

Jun 29, 2020 at 3:28 pm
#131806
Moderator
Nayeem Riddhi
Staff OP

Hi,
Please update to WPDM v5.1.14. Also, if you are using Bootstrap 3 UI in WPDM UI setting, please select Bootstrap 4, bs 3 will be dropped soon and we are not maintaining it anymore. Finally, clear all cache. That should resolve the issue. Also, you may unmask download link from WPDM settings to resolve the issue:
Unmask

Jun 29, 2020 at 3:01 pm
#131801
Moderator
Nayeem Riddhi
Staff OP

If there the old version please try to delete the old one and upload the latest one. I hope it may help you.

Thanks.

Jun 29, 2020 at 2:55 pm
#131799
Moderator
Nayeem Riddhi
Staff OP

I think you are trying bulk apply to the role user for your packages from the author dropdown. It is a WordPress limitation there is only showing admin users, you can try below code in your theme functions.php and let me know if it works for you,

add_filter( 'wp_dropdown_users_args', 'wpdm_change_user_dropdown', 10, 2 );

function wpdm_change_user_dropdown( $query_args, $r ){

$screen = get_current_screen();

if( $screen->post_type == 'wpdmpro' ):
    $query_args['role__in'] = ['author', 'editor', 'administrator', 'manager', 'subscriber'];

    unset( $query_args['who'] );
endif;

return $query_args;
}

thanks.

Jun 29, 2020 at 1:53 pm
#131794
Moderator
Nayeem Riddhi
Staff OP

sorry for the inconvenience. please have patience. we are updating about it soon

Thanks.

Jun 29, 2020 at 1:50 pm
#131793
Moderator
Nayeem Riddhi
Staff OP

Hi,

For issue #1, you can enable/disable style/scripts from Downloads > Settings > User Interface for checking

For issue #2, Which dropdown vendor name you want to show? can you clarify little more or provide screenshots

Thanks.

Jun 29, 2020 at 1:40 pm
#131792
Moderator
Nayeem Riddhi
Staff OP

we have found that issue. soon you shall be updated.

Thanks.

Jun 29, 2020 at 1:36 pm
#131790
Moderator
Nayeem Riddhi
Staff OP

Are you missing these templates as I image attached?

Image 2020-06-29 at 7.32.45 PM

Or missing template settings from package settings, in that case, they are gone except you have a database backup. all custom templates are stored in options table in a serialized format, the option names are _fm_link_templatesand _fm_page_templates

and for updating plugin please delete and again install the plugin, you won’t lose any data. let me know.

Thanks.

Jun 29, 2020 at 1:20 pm
#131788
Moderator
Nayeem Riddhi
Staff OP

Hi,
you can follow the link below documentation,

Template Files


by default, you are using link-template-default.php for link template and page-template-default.php for the page template. As documentation, you have to copy the file in the theme directory naming a folder called download-manager, then paste it in page-templates for page template or link-templates for link template. And you have to replace [download_link] with <a href="[download_url]" class="btn btn-primary" target="_blank">[link_label]</a> in related PHP file.

Thanks.

Jun 29, 2020 at 9:10 am
#131761
Moderator
Nayeem Riddhi
Staff OP

Does it broken settings of WPDM or frontend design of the website? let me know if settings are broken, please try to delete and again install the plugin. you won’t lose data

Thanks.

Jun 29, 2020 at 5:36 am
#131741
Moderator
Nayeem Riddhi
Staff OP

Please read and follow the instruction, i hope everything should be okay

Thanks.

Jun 29, 2020 at 5:29 am
#131739
Moderator
Nayeem Riddhi
Staff OP

Hi,

For the time being you can follow the link below documentation,

Template Files

by default, you are using link-template-default.php for link template and page-template-default.php for the page template. As documentation, you have to copy the file in the theme directory naming a folder called download-manager, then paste it in page-templates for page template or link-templates for link template. And you have to replace [download_link] with <a href="[download_url]" class="btn btn-primary" target="_blank">[link_label]</a> in related PHP file.

let me know, if those help you.

Thanks.

Jun 29, 2020 at 5:28 am
#131738
Moderator
Nayeem Riddhi
Staff OP

Hi,

For the time being you can follow the link below documentation,

Template Files

by default, you are using link-template-default.php for link template and page-template-default.php for the page template. As documentation, you have to copy the file in the theme directory naming a folder called download-manager, then paste it in page-templates for page template or link-templates for link template. And you have to replace [download_link] with <a href="[download_url]" class="btn btn-primary" target="_blank">[link_label]</a> in related PHP file.

let me know, if those help you.

Thanks.

Jun 29, 2020 at 5:28 am
#131737
Moderator
Nayeem Riddhi
Staff OP

Hi,

For the time being you can follow the link below documentation,

Template Files

by default, you are using link-template-default.php for link template and page-template-default.php for the page template. As documentation, you have to copy the file in the theme directory naming a folder called download-manager, then paste it in page-templates for page template or link-templates for link template. And you have to replace [download_link] with <a href="[download_url]" class="btn btn-primary" target="_blank">[link_label]</a> in related PHP file.

let me know, if those help you.

Thanks.

Jun 29, 2020 at 4:59 am
#131736
Moderator
Nayeem Riddhi
Staff OP

It may be conflicting with the plugin. if possible, Please, give your temporary wp-admin login details in a private reply for checking the issue.

Thanks.

Jun 29, 2020 at 2:58 am
#131733
Moderator
Nayeem Riddhi
Staff OP

Please put this code again,

.w3eden .card-footer:last-child {
    display: inline-grid !important;
}

it is working fine from my side.

Thanks.

Jun 29, 2020 at 2:48 am
#131731
Moderator
Nayeem Riddhi
Staff OP

Hi @doppiag,

Your site link only spinning. It is not loading. is there any problem with your site?

Jun 29, 2020 at 2:36 am
#131730
Moderator
Nayeem Riddhi
Staff OP

Has the problem been resolved? you have marked it as resolved. And do you want the same design here, http://demo.wpdownloadmanager.com/wpdmpro/frontend-uploader/ here used Attire theme. https://www.wpdownloadmanager.com/download/attire-allinone-wordpress-theme/. you can download it as a free theme to your site. let me know.

Thanks.

Jun 28, 2020 at 4:51 pm
#131722
Moderator
Nayeem Riddhi
Staff OP

Please add this code and let me know if it helps you

.w3eden .card-footer:last-child {
    display: inline-grid;
}

Thanks.

Viewing 25 posts - 17,726 through 17,750 (of 20,900 total)