Hello @colsheski,
Since it’s a live website so in this case, can you give me a test/example package link where I can check the inline download form issue?
Also, please mention the template name as well.
Thank You.
I have checked all of my plugins. No conflict to be found.
I’m not sure what you checked when you were in my site – but it’s the template that isn’t working. I created a new template without the download_link_extended and I can get that one to work in preview as well as on my live site after clearing the cache. It must’ve happened with the new update to 6.0.6? I didn’t have this problem until then.
Here’s the problem – I do NOT want to switch my template for all 250 downloads. What can we do to fix this?
You can reproduce the issue by yourself by clicking any of the download buttons on the page I provided the link to. The same goes for any other download page and buttons. I will not make a screen recording of something you can do yourself by means of a single mouse click.
Here is the link to a package (the top one, nr. 33 on the page I linked to): https://clearskies.eu/csog-downloads/dsf-ootw-21-33download/
The lazy download plugin should lead to this waiting page: https://clearskies.eu/csog/downloads/downloading/
Instead, the download starts immediately. Has something perhaps changed in the required shortcode that is required on the waiting page?
As stated, all was well until I updated WPDM.
Hi @ccienv,
The update will be available within the next 72 hours.
However, you don’t have to change anything in the code. Simply just follow the below example shortcode and you should be able to print custom field values easily.
[wpdm_all_packages login=1 thumb=1 items_per_page="20" categories="images" jstable=1 order_by="field_name" order="ASC/DESC" cols="title,file_count,download_count|acf_manufacture|categories|update_date|download_link" colheads="Title|Manufacture|Categories|Update Date|Download::155px"]
As you can see in the cols param acf_manufacture
is the custom field name acf_field_name
.
Hope you understand.
Thank You
Hello,
Download manager plugin download link is not working.
My plugin version is 6.0.6.
Hello @ashishk,
Yes, you have to create a custom template and then use [download_link_extended]
template tags which will show the form-lock form as static, not as a popup.
You will find more details about the template tag in the blow link.
However, about the WPDM Pro version issue please, provide us with your temporary wp-admin login details and site URL in a private reply for checking the issue.
Thank You
It looks like, WPDM download link is working fine. But, not sure, how WC is handling it. It stopped worked probably due to any changes in WP updates.
Hi,
WPDM download links are working fine on your site, but not sure how you integrated them with wc. Please give me your wc product link where you added wpdm link to check the issue in detail.
Hello @ashishk,
Hope you are well.
First of all, you have to customize the individual pages with the theme settings/page builder.
After that create the form in the WP Forms or Gravity Forms. And, then it will be possible to integrate with the Form Lock add-on.
You will find the implementation procedure in the below link.
Form Lock – Ask users to fill a form to get access to download
Hope you understand now.
Thank You
Hello,
We are sorry to say that there is no option to set search by tags in WPDM directory addon.
However you can use this shortcode to show all tags:
[wpdm_tags btnstyle="link" icon="tag" showcount=1 cols=3]
More details here about all the shortcodes:
Thanks
Hello @chesayscheryl,
I see email lock and download is working fine. Please check this screencast.
Also, please check now categories are fetching properly, as the shortcode was not correct. However, please keep the parameter value items_per_page="15"
. But, if you want to set more value on that parameter then you have to increase your server memory limit or the page might not save/ will crash.
Shortcode details can be found in the below link.
[wpdm_category] – Query All Downloads From One or More Categories
Thank You
@Humayon … please help me with the following tickets:
https://www.wpdownloadmanager.com/support/topic/urgent-urgent-urgent-urgent-some-downloads-arent-showing-up/ (most important)
Nayeem is currently working on it and isn’t doing a good job.
Hi @fscedfu,
Please update your WPDM Pro to the latest version 6.0.6
first and then use the updated shortcode mentioned in the below link. As you can see template parameter should be link-template ID and make sure it exists under Downloads ► Templates
.
[wpdm_category] – Query All Downloads From One or More Categories
Please check this and it’s working fine.
Thank you
LOL, you meant tree view shortcode, we already documented it on https://www.wpdownloadmanager.com/download/wpdm-extended-short-codes/. Simply adding newwin=1
with shortcode shall open the link in a new window/tab.
Please give me an URL where the download link opens on the same tab for you. In my test ( https://flowersoapscoil.ipage.com/aitech/test/?search=p ), it is opening in a new tab.
Hello @jennafurless,
I am sorry to say that you can’t make the entire table display due to your current theme layout. If you want to change the theme in the future then you can use our “Attire” theme instead which is optimized and works well with the WPDM.
Or, you can remove a column by using the below shortcode which should look like this.
[wpdm_all_packages items_per_page="20" categories="interventions,tools,promotion,socials" jstable=1 order_by="field_name" order="ASC/DESC" cols="title,file_count,download_count|categories|download_link" colheads="Title|Categories|Download::155px"]
Yes, you need to list all of the categories in the “slug” area.
However, in order to remove the “[free_download_btn]” code for the premium page template, please activate the
Premium Packages - Sell Digital Products Securely
plugin first and then remove this free download file.
Hopefully, your problem will be solved.
Thank you
Hello @
Hope you are well and sorry for the delay.
Please you the below code in order to show the featured image in the link template.
<img src="[preview]" alt="Preview" />
You will find more details in the below docus as well.
Thank you
Filter hook wpdm_download_link
and download_link
works differently.
wpdm_download_link
accept 2 parameters 1st parameter is download link html code, 2nd parameter is an array just contaiting package ID, ['ID' ► {Package ID}]
, and inside the filter to can retrieve package date using the give ID, $packageObject = WPDM()->package->init($param2['ID']);
and download_link
filter is documented here https://www.wpdownloadmanager.com/doc/filter-reference/download_link/
However, please let me know what are you trying to do, so that I can explain your better :).