Hello @desertwaters,
I hope you are well.
Please, provide us with your temporary wp-admin login details and site URL in a private reply for checking the issue.
Also, please share the related page/file/package URL with us where the issue exists.
It helps me to quickly figure out the issue and squash it immediately.
Thank you
Hi @rafaelviana,
Please check now here we have adjusted your issue.
Templates are getting overwritten now from {theme-dir}/download-manager/wpdm-archive-page/{archive-page--style}
path.
It was happening due to the template locate function in the child theme dir was skipped that’s why.
Best Regards
Hi @goldenmoon,
You can change the download button color by following this setting.
However, in order to change the other texts in the download box, you have to edit the corresponding template file by following this doc.
Also, You will find all the related template tag details in the below link.
Thank You
You are most welcome mam.
Also, thank you to you too for your patience and cooperation.
Cheers!
Thank you very much for your great review.
Have a good day sir.
Hi @branja,
Sorry for the inconvenience.
Please use the below updated code instead of the previous one.
add_action("wpdm_after_upload_file", function($path){
$filename = basename($path);
$upload_dir = dirname($path);
$year = date("Y");
$new_path = $upload_dir."/".$year."/".$filename;
$overwrite = (int)get_option('__wpdm_overwrrite_file',0);
if(file_exists($new_path) && $overwrite){
@unlink($new_path);
}
if(file_exists($new_path) && !$overwrite){
$filename = time().'wpdm_'.$filename;
$new_path = $upload_dir."/".$year."/".$filename;
}
if(!file_exists($upload_dir."/".$year."/"))
mkdir($upload_dir."/".$year."/");
rename($path, $new_path);
die("|||{$year}/{$filename}|||");
});
I have tested it and it’s renaming file properly.
With Regards
Hello @rafaelviana,
{theme-dir}/download-manager/
and {theme-dir}/download-manager/wpdm-archive-page/{archive-page--style}
for default shrotcode {archive-page–style} like starter or filter or flat etc both will work.
Please follow this screencast I just made for you.
Hope you are clear now.
Thank you
Hello @rafaelviana,
Sorry for the inconvenience.
We have released the WPDM Directory Add-on update which is right now 4.3.0
.
Please update your copy to the latest version and then the above-mentioned #159481 path will work.
Thank you for your cooperation.
Good Morning @b-maria,
Well sorry for the inconvenience.
I have created a test page here for you.
It seems wpdm_archive button_style="success"
or button_style=”default” download files are showing properly Have a look at this. Please follow the test page accordingly.
Also, nothing will wipe out with the future update. We are always ready to help you.
With Regards
Hello @ccbfdrc,
Hope you are well.
You will find the import procedure in the below docs.
However, the CSV file has to be well-formatted, any error in the HTML tag will cause a faulty import.
Hope you got my point. If, still you face any issues then please share the CSV file with us.
Thank You
Hello @leadoptimize,
Hope you are well. And sorry for the inconvenience.
The update section sometimes fails due to auth error or server file permission issue
However, We have released the latest version 6.0.6
of the WPDM PRO plugin and add-ons. According to the latest update of WPDM PRO, you also need to update the other add-ons as well. Please update them, or you can download them from here.
I hope it will work fine then. If it doesn’t work, please, provide us with your temporary wp-admin login details and site URL in a private reply for checking the issue.
Also, please share the related page/file/package URL with us where the issue exists.
Thank you
Hi @markstr8,
Please check now we have resolved your issue. You can follow this for future reference.
However, We have released the latest version 6.0.6
of the WPDM PRO plugin and add-ons. According to the latest update of WPDM PRO, you also need to update the other add-ons as well. Please update them, or you can download them from here.
With Regards
Hi @voicealyb,
As you see I have tested with my browser sync on and still, it’s working fine like this. Maybe it’s your browser settings. Can you restore browser settings to default?
However, there can be a conflict with another plugin, can you please enable/disable other plugins for checking, you may also switch the theme to another for checking, please let me know then.
Thank you
Hello @rafaelviana,
Well in that case, you have to keep them in {theme-dir}/download-manager/wpdm-archive-page/starter/
for default shrotcode template or {theme-dir}/download-manager/wpdm-archive-page/filter/
[wpdm_archive_filter…] shortcode, depending on the shortcode you are using.
Hope you understand.
Thank you
Hello @jamesbrien,
Hope you are well. And sorry for the inconvenience.
Please, provide us with your temporary wp-admin login details in a private reply for checking the issue.
Thank you
Hello @voicealyb,
I have tested in different latest browsers and the popup worked well.
Can you please try in browser incognito mode?
Also, in which browser you are having such an issue?
Thank you
Hi @rafaelviana,
You need to update templates files in the theme as WPDM archive page template files changed, or just remove the template files from the theme.
Hope you understand.
Thank you
Hi @branja,
Well, let me explain.
When a file with the same name is already existing, and “Rename File” is selected, it will rename the newly uploaded file by adding a prefix so that it doesn’t get overwritten. Have a look at this.
But if you want to replace the old file using a new file with the same name, then you need to select overwrite.
Hope you are clear now.
Thank you
Hi @nydunes,
You are using an older version of the Advanced Access Control add-on. Have a look at this.
Please update your WPDM-Advanced Access Control
add-on to the latest version which is right now 3.0.8
or you can download the latest version from this link as well.
It will solve your issue.
Best Regards
Hi @yvonneb,
Have you set your page template as Image Gallery in the new package/ edit package section like this?
It should represent like this page.
Or you can use like this demo by following the below shortcodes.
[wpdm_carousel category="category-id" autoplay=1 nav=1 dots=1 wrap=1 items_per_page=4 items_total=8 template="link-template-id"]
More details can be found here.
Thank you.