-
AuthorSearch Results
-
May 11, 2021 at 9:51 am #152387
In reply to: Invalid File Type
HumayonSpectatorMay 10, 2021 at 8:52 pm #152362
Pierre GergiParticipantThis reply has been marked as private.May 10, 2021 at 4:20 pm #152345In reply to: Display Category Name
Nayeem RiddhiModeratorI have checked that, you are using custom archive pages link-template on your category page, please use this template tag [categories] on your link-template this should render the categories for related packages, for more template tag you can visit this doc templates, https://www.wpdownloadmanager.com/doc/templates/template-tags/
thanks
May 10, 2021 at 3:53 pm #152332In reply to: Linking to Individual
Nayeem RiddhiModeratorMay 10, 2021 at 2:55 pm #152313In reply to: wpdm_category only showing files from one category?
HumayonSpectatorHi Markus,
Hope you are well.
Please use the below shortcode instead and it should work. Don’t add thelink-template-button.phpin the shortcode.
[wpdm_category id="zip" cols="1" toolbar=0 item_per_page=10 template="link-template-button"]
More shortcode details can be found here.
Also, you can found the template ID easily by following this article.
With RegardsMay 10, 2021 at 2:41 pm #152311In reply to: Saving Settings Error
HumayonSpectatorHi Francisco C,
Please follow the below link and then try again.
If you still face the same problem then will your please share your admin login credentials in a separate topic as a private reply so that we can debug it properly and give you a better solution about it?
ThanksMay 10, 2021 at 4:54 am #152289Topic: Critical Error
in forum Download Manager Pro
Emma HarrisonParticipantHello,
We’ve been using WPDM for several years on our website, with no headaches.However, now on the front-end, when someone visits the download page it says “There has been a critical error on this website. Learn more about troubleshooting WordPress.” Below that text, it shows the header of the WPDM table, but no information.
We’re using the [wpdm_all_packages] shortcode, and that’s it.
I switched on PHP errors, and reloaded the page, and it shows the following….
Fatal error: Uncaught Error: Class ‘liveforms’ not found in /DELETED_SERVER_ADDRESS/public_html/wp-content/plugins/download-after-submit/download-after-submit.php:77 Stack trace: #0 /DELETED_SERVER_ADDRESS/public_html/wp-includes/class-wp-hook.php(292): liveform_for_wpdmpro->download_lock(”, Array) #1 /DELETED_SERVER_ADDRESS/public_html/wp-includes/plugin.php(212): WP_Hook->apply_filters(”, Array) #2 /DELETED_SERVER_ADDRESS/public_html/wp-content/plugins/download-manager/libs/class.Package.php(1000): apply_filters(‘wpdm_download_l…’, ”, Array) #3 /DELETED_SERVER_ADDRESS/public_html/wp-content/plugins/download-manager/libs/class.Package.php(1150): WPDM\Package::activeLocks(1331, Array) #4 /DELETED_SERVER_ADDRESS/public_html/wp-content/plugins/download-manager/tpls/wpdm-all-downloads.php(294): WPDM\Package::downloadLink(1331, 0, Array) #5 /DELETED_SERVER_ADDRESS/public_html/wp-content/plugins/download-manager/libs/class.ShortCodes.php(563): include(‘/DELETED_SERVER_ADDRESS…’) #6 /DELETED_SERVER_ADDRESS/public_html/wp-includes/shortc in /DELETED_SERVER_ADDRESS/public_html/wp-content/plugins/download-after-submit/download-after-submit.php on line 77
Any suggestions of how we can fix this error?
May 9, 2021 at 8:21 pm #152286
Pierre GergiParticipantThis reply has been marked as private.May 9, 2021 at 11:37 am #152275In reply to: Download button not working
HumayonSpectatorHello Chris,
This type of issue happens due to conflict with other third-party plugins, can you please enable/disable other plugins for checking, you may also switch the theme to another for checking.
However, the download worked fine whenever we have enabled Unmask Download Link Option. You can follow this as well.
Let us know if you still need further assistance regarding this matter.
Best RegardsMay 8, 2021 at 5:53 pm #152237In reply to: downloads not shown
Michael AngermeirParticipantThis reply has been marked as private.May 8, 2021 at 8:45 am #152208In reply to: Related Packages Shortcode?
Nayeem RiddhiModeratorplease edit the file from
tpls/page-templatesortpls/link-templates, you can also make backup files following this doc, https://www.wpdownloadmanager.com/doc/template-files/thanks
May 8, 2021 at 1:43 am #152191In reply to: Form Lock & Advanced Access Control Add On
Jason BarrettParticipantYes, I reviewed that webpage before posting.
How can I “Download and install the add-on” which is “now included with WordPress Download Manager Pro or upper licenses” when the only visible link is to the Cart?
May 8, 2021 at 1:21 am #152188In reply to: Modify Appearance of Form Lock Pop-up
Jason BarrettParticipantThis reply has been marked as private.May 7, 2021 at 5:22 pm #152176In reply to: WPDM archive page translation «Loading…»
Philippe BonneauParticipantThe edit are on line 59, 87 and 199
const { __, _x, _n, sprintf } = wp.i18n; function wpdmapPagination(current, last) { var delta = 2, left = current - delta, right = current + delta + 1, range = [], rangeWithDots = [], l; for (let i = 1; i <= last; i++) { if (i === 1 || i === last || i >= left && i < right) { range.push(i); } } for (let i of range) { if (l) { if (i - l === 2) { rangeWithDots.push(l + 1); } else if (i - l !== 1) { rangeWithDots.push('...'); } } rangeWithDots.push(i); l = i; } var html = "<ul class='pagination wpdm-pagination pagination-centered text-center'>"; console.log(current); if(current > 1) html += "<li><a href='#' data-page='"+(current-1)+"' class='async_page page-numbers'><i style=\"display: inline-block;width: 8px;height: 8px;border-right: 1px solid;border-top: 1px solid;transform: rotate(-135deg);margin-left: -2px;margin-top: 2px;\"></i></a></li>" for(i = 0; i < rangeWithDots.length; i++){ var cclass = parseInt(rangeWithDots[i]) === current ? 'current-page' : ''; if(rangeWithDots[i] !== '...') html += "<li><a href='#' data-page='"+rangeWithDots[i]+"' class='async_page page-numbers "+cclass+"'>"+rangeWithDots[i]+"</a></li>"; else html += "<li><a class='page-numbers dot'>"+rangeWithDots[i]+"</a></li>"; } if(current < last) html += "<li><a href='#' data-page='"+(current+1)+"' class='async_page page-numbers'><i style=\"display: inline-block;width: 8px;height: 8px;border-right: 1px solid;border-top: 1px solid;transform: rotate(45deg);margin-left: -2px;margin-top: -2px;\"></i></a></li>" html += "</ul>"; return "<div class='text-center'>"+html+"</div>"; } jQuery(function ($) { function htmlEncode(value) { return $('<div/>').text(value).html(); } var wpdmac_category = '', wpdmac_tags = ''; function getDownloads(cp, container) { WPDM.blockUI('#wpdm-archive-page'); var scode_params = typeof wpdmap_params !== 'undefined' ? wpdmap_params : ''; jQuery('#wpdm-downloads').prepend('<div class="wpdm-loading">'+wpdm_asset.spinner+' '+__('Chargement', 'wpdm-archive-pae')+'...</div>'); jQuery.post(location.href, { action: 'get_downloads', cp: cp, search: jQuery('#src').val(), category: wpdmac_category, tags: wpdmac_tags, orderby: jQuery('#order_by').val(), order: jQuery('#order').val(), sc_params: scode_params }, function (response) { if(typeof container === 'undefined') container = '#wpdm-downloads'; jQuery(container).html(response.html+wpdmapPagination(cp, response.last)); WPDM.unblockUI('#wpdm-archive-page'); }); } function setParentCat(cat_id) { jQuery.ajax({ type: "post", dataType: "json", url: wpdm_url.ajax, data: {action: "wpdm_change_cat_parent", cat_id: cat_id}, success: function (response) { console.log(response); if (response.type === "success") { if (jQuery('#src').val() !== '') jQuery('#inp').html(__('Résultat de recherche pour', 'wpdm-archive-pae')+' <b>' + htmlEncode(jQuery('#src').val()) + '</b> '+__('in category', 'wpdm-archive-pae')+' <b>' + response.parent + '</b>'); else jQuery('#inp').html(response.parent); } } }); } function selectedCats() { var _items = []; $('#wpdmcat-tree input[type=checkbox]').each(function (index, item) { if($(this).is(":checked")) _items.push($(this).val()); }); return _items; } function selectedTags() { var _items = []; $('#wpdm-tags input[type=checkbox]').each(function (index, item) { if($(this).is(":checked")) _items.push($(this).val()); }); return _items; } var $body = $('body'); /*$body.on('click', '.pagination a', function (e) { e.preventDefault(); $('#wpdm-downloads').prepend('<div class="wpdm-loading">'+wpdm_asset.spinner+' '+__('Loading', 'wpdm-archive-pae')+'...</div>').load(this.href); });*/ $('.wpdm-cat-link').click(function (e) { e.preventDefault(); $('.wpdm-cat-link').removeClass('active'); $(this).addClass('active'); var cat_id = $(this).attr('rel'); wpdmac_category = cat_id; setParentCat(cat_id); getDownloads(1); }); $('#wpdm-cats-compact').on('change', function (e) { var cat_id = $(this).val(); if (cat_id == -1) cat_id = 0; $('#initc').val(cat_id); var sfparams = $('#srcp').serialize() wpdmac_category = cat_id; setParentCat(cat_id); getDownloads(1); }); $('#wpdmcat-tree input[type=checkbox], #wpdm-tags input[type=checkbox]').on('change', function (e) { wpdmac_category = selectedCats(); wpdmac_tags = selectedTags(); $('#initc').val(wpdmac_category); var sfparams = $('#srcp').serialize() getDownloads(1); }); $body.on('click', '.async_page', function (e){ e.preventDefault(); e.stopPropagation(); getDownloads($(this).data('page')); return false; }); $body.on('click', '.wpdm-cat-link2', function (e) { e.preventDefault(); $('.wpdm-cat-link').removeClass('active'); var new_rel = $(this).attr('test_rel'); if (new_rel !== 'undefined') { $('a[rel=' + new_rel + ']').addClass('active'); } var cat_id = jQuery(this).attr('rel'); wpdmac_category = cat_id; setParentCat(cat_id); getDownloads(1); }); $body.on('click', '.w3eden a.btn-clps[data-toggle="collapse"]', function () { $(this).children('.fa').toggleClass('fa-chevron-down'); $(this).children('.fa').toggleClass('fa-chevron-up'); $(this).toggleClass('active'); }); $body.on('click', '#reset-filter', function (e) { e.preventDefault(); $('#wpdmcat-tree input[type=checkbox], #wpdm-tags input[type=checkbox]').removeAttr('checked'); $('#src').val(''); $('#srcp').resetForm(); wpdmac_category = ''; wpdmac_tags = ''; getDownloads(1); }); $('#order_by, #order').on('change', function () { getDownloads(1); }); $('#srcpss').submit(function (e) { e.preventDefault(); getDownloads(1); }); $('#srcp').submit(function (e) { e.preventDefault(); $('.wpdm-cat-link').removeClass('active'); $('#inp').html(__('Résultat de recherche pour', 'wpdm-archive-pae')+' <b>' + htmlEncode($('#src').val()) + '</b>'); getDownloads(1); }); $('#wpdm-archive-page-home').click(function (e) { e.preventDefault(); $('.wpdm-cat-link').removeClass('active'); $('#inp').html(__('All Downloads', 'wpdm-archive-pae')); wpdmac_category = ''; $('#src').val(''); getDownloads(1); }); $body.on("keyup", "#cat_src", function() { var value = $(this).val().toLowerCase(); $("#wpdmcat-tree li").filter(function() { $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1) }); }); $body.on("keyup", "#tag_src", function() { var value = $(this).val().toLowerCase(); $("#wpdm-tags .wpdm-tag").filter(function() { console.log($(this).text()); $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1) }); }); if($('#wpdm-downloads').length > 0) getDownloads(1); });May 7, 2021 at 10:46 am #152111In reply to: Issue for validate file type in version 3.1.26
HumayonSpectatorHi MASUCCI F,
We have released an update(V 3.1.27) that will solve your issue. Please update and then let us know that your reported issue has been solved or not.
You can check the below link as well.
ThanksMay 7, 2021 at 9:45 am #152093In reply to: Related Packages Shortcode?
Nayeem RiddhiModeratorCan you please check this add-on, https://www.wpdownloadmanager.com/download/linked-products/, please let me know if it helps you
thanks
May 6, 2021 at 10:06 am #152006
Nayeem RiddhiModeratorHi,
if you are using
bootstarp 4fromdownloads > settings > user interfaceplease add the below line
downloads/tpls/wpdm-all-downloads.phpfile in line number295$data['download_link'] = "<a target='_blank' class='btn btn-primary' href='".get_permalink($data['ID'])."'>"."Download"."</a>";commenting out this line
// $data['download_link'] = \WPDM\Package::downloadLink($data['ID'], 0, array('template_type' ► 'link'));I hope it should open a new tab for the related packages
thanks
May 5, 2021 at 11:32 am #151894In reply to: Memory Problem
Markus SchulteParticipantThis reply has been marked as private.May 5, 2021 at 9:12 am #151876In reply to: Form Lock – Download button not displaying
Nayeem RiddhiModeratorContact form 7 with the
download_link_extendedtag is working fine from our side, if you are still facing problem with contact form 7, can you please check this plugin too, https://wordpress.org/plugins/liveforms/, it has a more extended featurethanks
May 5, 2021 at 8:49 am #151867In reply to: Latest version?
Senict BeanieParticipantNayeem. The file from the link you gave has the file name ‘download-manager-5.3.8’ which is the filename of the previous version. If the file is version 5.3.9 then please rename the file to 5.3.9 and put an end to this confusion.
May 5, 2021 at 8:47 am #151865In reply to: ERP support?
HumayonSpectatorHello Stefano,
Thank you for contacting the support centre.
We are sorry to say that currently, we are not providing any ERP integration/support. But you can contact our custom upgrade team if you want to implement an integration add-on by following the below link.
With RegardsMay 5, 2021 at 8:16 am #151859In reply to: Form Lock – Download button not displaying
Rowan GriffithsMemberThis reply has been marked as private.May 5, 2021 at 8:13 am #151858In reply to: Form Lock – Download button not displaying
Rowan GriffithsMemberHi,
Nothing has changed – the plugins were all still active before and it worked.
Only deactivating the Form Lock plugin did anything…
There is no download button / link when the form is filled in, surely that is a Form lock issue?
Can you look at this again please asap?
Thanks
May 4, 2021 at 10:11 pm #151843In reply to: Document Preview for Remote File URL
Victoria ChuParticipantThat option doesn’t work, can you please show how to get a file link from Dropbox and paste in the ‘Insert URL’ field for a package using Single Column Document Preview page template?
That is the part I’m stuck on because Dropbox is still forcing the download since their preview mode cannot be embedded in an iFrame
May 4, 2021 at 9:49 am #151770
Nayeem RiddhiModeratorAre you trying to open a new tab, for this shortcode download package,
[wpdm_all_packages items_per_page=15 jstable=1 thumb=1 categories="dump-files" order_by="publish_date" order="DESC" cols="title,download_count,package_size|publish_date|download_link" colheads="File Name|Update Date|Download::155px"]please let me know
thanks
-
AuthorSearch Results
Search Results for 'download link'
-
Search Results
-
Topic: Critical Error
Hello,
We’ve been using WPDM for several years on our website, with no headaches.However, now on the front-end, when someone visits the download page it says “There has been a critical error on this website. Learn more about troubleshooting WordPress.” Below that text, it shows the header of the WPDM table, but no information.
We’re using the [wpdm_all_packages] shortcode, and that’s it.
I switched on PHP errors, and reloaded the page, and it shows the following….
Fatal error: Uncaught Error: Class ‘liveforms’ not found in /DELETED_SERVER_ADDRESS/public_html/wp-content/plugins/download-after-submit/download-after-submit.php:77 Stack trace: #0 /DELETED_SERVER_ADDRESS/public_html/wp-includes/class-wp-hook.php(292): liveform_for_wpdmpro->download_lock(”, Array) #1 /DELETED_SERVER_ADDRESS/public_html/wp-includes/plugin.php(212): WP_Hook->apply_filters(”, Array) #2 /DELETED_SERVER_ADDRESS/public_html/wp-content/plugins/download-manager/libs/class.Package.php(1000): apply_filters(‘wpdm_download_l…’, ”, Array) #3 /DELETED_SERVER_ADDRESS/public_html/wp-content/plugins/download-manager/libs/class.Package.php(1150): WPDM\Package::activeLocks(1331, Array) #4 /DELETED_SERVER_ADDRESS/public_html/wp-content/plugins/download-manager/tpls/wpdm-all-downloads.php(294): WPDM\Package::downloadLink(1331, 0, Array) #5 /DELETED_SERVER_ADDRESS/public_html/wp-content/plugins/download-manager/libs/class.ShortCodes.php(563): include(‘/DELETED_SERVER_ADDRESS…’) #6 /DELETED_SERVER_ADDRESS/public_html/wp-includes/shortc in /DELETED_SERVER_ADDRESS/public_html/wp-content/plugins/download-after-submit/download-after-submit.php on line 77
Any suggestions of how we can fix this error?
