Tanvir

Forum Replies Created

Viewing 25 posts - 2,776 through 2,800 (of 3,183 total)
Aug 16, 2021 at 7:14 am
#159854
Spectator
Tanvir
OP

Hello,

I made the changes in active theme directory> download-manager folder. It is overriding the plugin file. wpdm update will not cause any problem. but please backup the folder before updating theme and make that folder again after updating the existing theme or any new theme if needed.

Thanks

Aug 16, 2021 at 6:54 am
#159850
Spectator
Tanvir
OP

Hello,

Please check now, I have fixed the issue.

Thanks

Aug 15, 2021 at 4:53 pm
#159825
Spectator
Tanvir
OP

Hello,

I have just tested in the latest 6.0.6 version of WPDM and found it is working.
If you upload images as additional thumbnails and use the template tag in link/page template [thumb_gallery_wxh] format in example: [thumb_gallery_50x50] it should work.
If the issue still persists, please provide us temporary admin access of your wordpress website in a private reply to debug the issue quickly.

Thanks

Aug 14, 2021 at 7:43 am
#159784
Spectator
Tanvir
OP

Hello Guy,

Yes you can.
In order to show total downloads in a download package page, you have to use this template tag [download_count] in the link/page template that you are using.
For more template tags, you can check here:

Template Files

Also you can use shortcode and set link template there to show total downloads. To create templates you can follow this
https://www.wpdownloadmanager.com/doc/templates/creating-a-new-template/

Thanks

Aug 14, 2021 at 7:14 am
#159783
Spectator
Tanvir
OP

Hello @hudi-webcart,
You just need to follow this:

1. Copy page-templates directory from /plugins/download-manager/src/package/views directory to your active theme directory.
2. Make a new directory as download-manager on your active theme directory.
3. Now remove all files from {active-theme}/download-mamager/page-templates except the template files you need to update.
4. Update template file(s) in {active-theme}/download-manager/page-templates directory as per your need. As you need to add open in a new tab you have to add this <a href="[download_url]" target="_blank">[link_label]</a>

Let me know please if you still find any issues.

Thanks

Aug 13, 2021 at 5:50 pm
#159770
Spectator
Tanvir
OP

Hello,

I think you require some customization work.
You can contact our customization team through this link.

With Regards

Aug 13, 2021 at 4:58 pm
#159766
Spectator
Tanvir
OP

Hello Asad,

We are sorry to say that it’s not possible. It requires some customization work.
You can contact our customization team through this link.

With Regards

Aug 13, 2021 at 3:18 pm
#159758
Spectator
Tanvir
OP

Hello,

I am sorry that Wp_Query is not used in that shortcode.

You can check all the filter reference of wpdm here:
https://www.wpdownloadmanager.com/doc/filter-reference/

Editing Template Files of wpdm archive:
If you want to customize a view in your own way, you need to edit template files inside /plugins/wpdm-arhive-page/src/Templates/****/views/ dir. Please follow the following steps to edit a template file so that the new update doesn’t erase your changes:

1. Create a dir path download-manager/wpdm-arhive-page/**** inside your active theme directory if it is already not there. Here replace **** with simple or flat or filter or compact, depending on the template dir name, from where you are moving the template file.
2. For example, if you are editing template file from /wpdm-archive-page/src/Templates/Filter/views, you need to place it in {active-theme-dir}/download-manager/wpdm-arhive-page/filter/
3. Copy all the files you need to modify
4. Update template file(s) in {active-theme-dir}/download-manager/wpdm-arhive-page/**** dir as per your need

Thanks

Aug 13, 2021 at 1:45 pm
#159751
Spectator
Tanvir
OP

Hello @ccbfdrc,

The source files related to user dashboard are located in /src/user/views/dashobard/. Those files need to be changed to take effect.

Please make a screenshots of the related pages and mention the changes you want using this tool so that I can suggest you about the changes you need.

Thanks

Aug 13, 2021 at 1:27 pm
#159750
Spectator
Tanvir
OP

For make disallow Crawling Download Manager Pages Google, Bing + search engines, Add the following code at the end of your active theme’s functions.php:

function noindex_for_wpdm()
{
    if ( is_singular( 'wpdmpro' ) ) {
        echo '<meta name="robots" content="noindex, nofollow">';
    }
}
thanks

thanks

Aug 13, 2021 at 7:33 am
#159744
Spectator
Tanvir
OP

Hello,
Sorry for this inconvenience.
please share the admin access of your website in a private reply.
It helps us to quickly figure out the issue and resolve it immediately.
Thank you

Aug 11, 2021 at 4:59 pm
#159633
Spectator
Tanvir
OP

Hi,

You are welcome.

However,If you found my support helpful, could you leave your valuable review here?
Your rating keeps us inspired ❤️
Best Regards

Aug 11, 2021 at 4:56 pm
#159632
Spectator
Tanvir
OP

Hello,
There was issue of conflict with WPDM with the theme. I have fixed that.
Please check it now.
Thanks

Aug 11, 2021 at 3:46 pm
#159621
Spectator
Tanvir
OP
This reply has been marked as private.
Aug 11, 2021 at 3:43 pm
#159620
Spectator
Tanvir
OP

Hello Guy,

Hope you are well.
You have to customize the all-packages-shortcode.php file, and the file location is /download-manager/src/Package/views/,

To do that,
1. Create a dir named download-manager inside your active theme dir(Dont need if it is already created there)
2. Now copy the all-packages-shortcode.php to modify from download-manager/src/Package/views dir to /{active-theme}/download-manager/ dir.
3. Customize that file in{active-theme}/download-manager dir as you need to comment out the line 290 by adding this // to
$data['download_link'] = WPDM()->package->downloadLink($data['ID'], 0, array('template_type' ► 'link'));
like this //$data['download_link'] = WPDM()->package->downloadLink($data['ID'], 0, array('template_type' ► 'link'));
then add this line there

$data['download_link'] = "<a target='_blank' class='btn btn-primary' href='".get_permalink($data['ID'])."'>"."Download"."</a>";
$download_link = $data['download_link'];

if you dont want to open in a new tab just remove target='_blank' from that line.
4. It will work with the shortcode as you wanted. then save the file and test.

Thank you

Aug 11, 2021 at 2:43 pm
#159615
Spectator
Tanvir
OP
This reply has been marked as private.
Aug 11, 2021 at 1:22 pm
#159611
Spectator
Tanvir
OP

Hello,

Please update to the latest version 4.3.0 also update WPDM and all related addons of WPDM then let me know.
if the issue still persists, please provide wordpress admin access in a private reply so that we can debug the issue quickly.

Thanks

Aug 11, 2021 at 12:45 pm
#159604
Spectator
Tanvir
OP

We have updated this yesterday. Please download wpdm-archive-page.zip from here

then upload and activate that to wordpress plugin page.

Thanks

Aug 11, 2021 at 12:34 pm
#159601
Spectator
Tanvir
OP

You dont need to buy that. You have already special pack and the addon is there. but I checked somehow it has been deactivated on your site.

Aug 11, 2021 at 12:13 pm
#159598
Spectator
Tanvir
OP

Hello,
Please activate the addon WPDM Archive to affect for the shortcode. The shortcode needs that.

WPDM Directory Add-on


If you can’t update it directry from WordPress dashboard, Please update from here.
Thanks

Aug 11, 2021 at 10:53 am
#159592
Spectator
Tanvir
OP

Hello,
It is working fine in our test environemnt.
Screenshot-1
If the problem still persists, please provide admin access of your website in a private reply.
Thanks

Aug 11, 2021 at 9:56 am
#159584
Spectator
Tanvir
OP

Hello,

The [page_link] will show package title with package link.
Currently it is not possible by default to change the download button link to package link.
It needs some php customization in download-manager > tpls/tpls3 > wpdm-all-downloads.php file,
please let me know, if you want the changes.

Thanks

Aug 11, 2021 at 8:47 am
#159566
Spectator
Tanvir
OP

Hello,

I am sorry that jstable is currently not possible with [wpdm_category] shortcode.
You can check details here:
https://www.wpdownloadmanager.com/doc/short-codes/wpdm_category-query-all-downloads-from-one-or-more-categories/

However if you think it is useful, you can request this feature here then we may add this feature in future updates.

Thanks

Aug 10, 2021 at 4:36 pm
#159515
Spectator
Tanvir
OP

Hello,

Sorry for this inconvenience. I see you have outdated versions of WPDM and related addons.
Make sure that WPDM and all add-ons you are using of WPDM are in the latest version. If you can’t update it directry from WordPress dashboard, Please update from here.

Best Regards

Aug 10, 2021 at 4:24 pm
#159513
Spectator
Tanvir
OP

Hello,

please also share the admin access of your website in a private reply.
It helps us to quickly figure out the issue and resolve it immediately.

Thank you

Viewing 25 posts - 2,776 through 2,800 (of 3,183 total)