Does footer issue still exist? Send an url to check black/white issue.
Is this issue happening in your blog page? Please send an url to check.
Always edit email template from Downloads Subscribers Email template page. Otherwise you will lose your custom template after plugin update.
If mail was sent for default template, it should work for modified template version too. Email issue must be related to your server, if it is not sent. Also ,You should check you spam folder too, in case it sent to spam.
I couldn’t reach your link. It shows 404.
Password incorrect, can’t login Please check the pass again.
Add following code in /wpdm-archive-page/tpls/archive-page-with-sidebar.php file ( At the bottom inside script tag),
var cat_id_for_autoload = $('.apc-item:first').data('item-id'); if(cat_id_for_autoload){ $('.wpdm-loading').fadeIn(); $('#ap-content').load("<?php echo admin_url('admin-ajax.php'); ?>", {action:'load_ap_content', cid: cat_id_for_autoload}, function(){ $('.wpdm-loading').fadeOut(); }); return false; }
https://www.evernote.com/l/AUfUq-m9yeJJ9KGZ7vhqQS1FELXAUqgJWXQB/image.png
1. Use tinymce addon to insert shortcode. You will have option to choose Link Template when available in a shortcode.
2. You have to modify /download-manager/tpls/wpdm-all-downloads.php file for that. That template is used for all packages shortcode.
Hi, Send me an url to check. Maybe a minor css fix required.
Unlocked your key. Please try now.
Hi,
In WPDM Archive page there was an error in meta query parameter ( WP_Query for filtering posts ) which is not related to any user settings. Fixing that parameter fixed the search bug. We also updated our side of code for next release. So, don’t have to worry about the addon update too.
Thanks.
It won’t work in all package table, suggested code was for Link Template.
To open details page in new from All Packages table you have to edit /download-manager/tpls/wpdm-all-packages.php file. Find marked line in that file and add target="_blank"
attribute in that link tag.
https://www.evernote.com/l/AUedb6WGQoFEw54HeMd04M_tkuo1UZNPi88B/image.png
Note: Follow step 3 here to use your own template file.
If you are using category shortcode, you have to add this code in /download-manager/wpdm-functions.php file’s wpdm_embed_category function. Find $thtml = FetchTemplate($template, $pack);
in that function and the code as i suggested in previous reply.
Did you create new template from Downloads Templates page or modified WPDM files?
Please send login info in private reply, if you want me to check it there.
Yes, it is correct.
Working now. You were using old version of Crypton there. A deprecated function cased this issue.
Sorry for delayed reply.
Form Lock captures all information you want through your form plugin. But it doesn’t handle other tasks like mailing the captured data to a CRM. Your form plugin might have some addons, which performs this task.
We have mailchimp addon which adds emails (captured by email lock) to a mailchimp list.
Hi,
You can read detailed documentation here http://www.wpdownloadmanager.com/docsfor/download-manager-pro/
There are multiple ways to show downloads in frontend. It depends on your requirement, please check all shortcodes here http://www.wpdownloadmanager.com/doc/short-codes/ and use the one you need.
For example, [wpdm_all_packages]
shows all your downloads in a table.
Fixed a minor issue in query.
Subscriber list won’t show users who just registers in your site. You can see those users from Dashboard Users Page. Download Manager subscriber page is for users who provides their email address in email lock ( the one in your screenshot ).
About Email Lock: You can lock a download using this lock. User must provide an email address to download email locked package. This is a useful lead collection feature.
Hi Christian,
Did you apply email lock in your downloads? Subscribers list show all emails captured by email lock feature. It doesn’t show your WordPress users with subscriber role.
Thanks.
Looks like form loaded, but your form is missing submit button.
Also did you complete the extra step required for Gravity Form,
Add a hidden field and use this tag [wpdm_package_id]
as default value, the tag will be replaced by package ID automatically when rendering form. (From Addon Page)
Working now. Please try yourself. Thanks.
Add following code after $thtml = FetchTemplate($template, $pack);
, that should skip expired and unpublished packages,
if(strpos($thtml, 'Download will be available') !== false) continue; if(strpos($thtml, 'Download was expired') !== false) continue;
I tested your template code. It is working for me. Explain little more, any specific issue you faced?