-
AuthorSearch Results
-
May 15, 2021 at 2:00 pm #152679
In reply to: Error 403 Cloud Drive
Nayeem RiddhiModeratorAre you talking about the google drive add-on, please share your related package URL, if possible, please, give your temporary wp-admin login details in a private reply for checking the issue
Thanks
May 14, 2021 at 12:41 am #152629In reply to: search result page
Mahmoud AbdelbasetParticipantThis reply has been marked as private.May 13, 2021 at 6:29 am #152574In reply to: pdf_thumb image alt text
ShahjadaKeymasterHi,
From WPDM 6.0 ( Coming Soon ), we shall add a new tag[pdf_thumb_url]which will return the only pdf thumbnail URL instead of image tag HTML, and[pdf_name]will return the pdf file name without.pdfext, so that you can customize the thumbnail and attributes as you want :).May 12, 2021 at 9:44 am #152517
HumayonSpectatorHi Scott K,
We are sorry to hear that you are facing an issue with the WPDM add-on for Elementor.
Will you please share the related page/file/package URL with us where the issue is occurring?
However, it will very cooperative if you record me reproducing your issue using a tool like this?
It helps me to quickly figure out the issue and squash it immediately.
If possible, please, provide us with your temporary wp-admin login details in a private reply for checking the issue.
Thank youMay 10, 2021 at 12:57 pm #152299
Mahmoud AbdelbasetParticipantThis reply has been marked as private.May 10, 2021 at 12:53 pm #152298In reply to: Related Packages Shortcode?
Mahmoud AbdelbasetParticipantThis 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 6, 2021 at 4:36 pm #152057In reply to: live preview text
Nayeem RiddhiModeratorWhich add-on you are using, please share your related page URL, it will more clear after watching this
thanks
May 5, 2021 at 6:03 pm #151965In reply to: Document Preview for Remote File URL
Nayeem RiddhiModeratorFor document preview, the remote URL file is working fine here, https://wpdmpro.w3eden.com/download/wpdm-remote-url/, but dropbox may have some restriction directly putting the dropbox file URL, you can use wpdm dropbox add-on too
thanks
May 5, 2021 at 7:45 am #151853
Harsheena MajeedMemberThis reply has been marked as private.May 3, 2021 at 9:54 am #151692In reply to: [wpdm-archive] not showing documents when page loads
Krys PetersenParticipantThis reply has been marked as private.May 3, 2021 at 7:07 am #151675
Sidratul SohratSpectatorThe
.exeextension is included in the allowed file type and working perfectly from our side. Please make sure you add the.exeextension on the allowed file type and clickSave Settings. If you still face the problem give me your site URL and temporary admin login details in a private reply for checking the issue.Thanks
May 2, 2021 at 9:15 pm #151663
Ikram DirujiiParticipantThis reply has been marked as private.May 1, 2021 at 5:13 pm #151627
Ikram DirujiiParticipantRespected Sir both are Ok for me i can handle about design no problem, but the bootstrap3 performance is good than the 4. sir please solve my second request. I am requesting that for a long time. as you know my ads not working due to lazy download addon, so it will help me regarding my Adsense ads click. I am redirecting all of my downloadable links to the page and then the user can download them. i can manage redirecting anywhere, but i can’t do on wpdm_all package responsive table. please let do this for me when the user clicks on the download button in a responsive table, so the page URL shall open not the file download. i love that responsive table because of the great feature of search filter but i am not using it because of that thing, please sir it is a humble request. if my second problem will solve then I do not need the first problem solution. because i will use this responsive table
Apr 30, 2021 at 2:59 pm #151571In reply to: Document Preview for Remote File URL
Nayeem RiddhiModeratorYou can add remote files as a downloadable file from the insert URL option or for previewing you can add as the file URL now
thanks
Apr 29, 2021 at 3:55 pm #151489In reply to: Guest Purchasers can’t Download
Nayeem RiddhiModeratorWhich plugins/add-ons you are using, please let me know, if possible, please share related URL and if possible, please, give your temporary wp-admin login details in a private reply for checking the issue
Thanks
Apr 28, 2021 at 6:59 pm #151411In reply to: Document Preview for Remote File URL
Victoria ChuParticipantWhen I paste in the URL into Insert URL it doesn’t show document preview and it’s not fetching the correct file type either.
It’s fetching .aspx instead of .xlsx
The OneDrive addon instructions are out of date, when I tried to follow it but cannot get the final redirect URL to put in the settings
Apr 28, 2021 at 6:22 pm #151405In reply to: Document Preview for Remote File URL
Nayeem RiddhiModeratorYou may use this one-drive add-on, https://www.wpdownloadmanager.com/download/wpdm-onedrive/ or you can use the
Insert URLas well for your purposes. It should work fine thenthanks
Apr 28, 2021 at 5:40 pm #151399
ShahjadaKeymasterI just fetched the CRON URL, it showing the email sent successfully. Now, I’ve added your corn URL in https://www.easycron.com with 1 hour interval.
Apr 26, 2021 at 3:22 pm #151213Topic: Password Protected Pages
in forum Download Manager Pro
Claire NegriParticipantHello,
We have a “home page” on our website that we only want visible to people who have created an account and are signed in. Currently, it is visible to anyone who goes onto the website.
How can we add a login page to appear before anyone can access the page itself?
Currently, the dashboard button works in this way, where if a user isn’t logged in, it prompts them to log into their account or register and this is how we want the home page to operate.
Login details: email: marketing@durable-uk.com – Password: 10Nimrod!
URL: http://www.durableportal.co.uk/Apr 26, 2021 at 9:37 am #151184In reply to: All Packages View
Nayeem RiddhiModeratorHello,
please, can you check this add-on, https://www.wpdownloadmanager.com/download/wpdm-directory-add-on/, and the shortcodes demo URL, please, I hope it may help you
thanks
Apr 23, 2021 at 3:48 pm #151034
Tiffany RichardsParticipantSo on my order I found where the License key is and I clicked “remove” on the url. I was thinking it would certainly give me the option to add a new URL. But it didn’t. Now I can’t find anywhere to enter my new URL.
PLEASE HELP.Apr 19, 2021 at 12:32 am #150692In reply to: Open PDF in a new tab
Simon FrostParticipantHi Nayeem, I am working on this project with Arianna and am trying to make these changes. I understand what you’ve written, but as we’re using the WPDM Button Templates add-on I think the template file is located elsewhere – it’s probably coming from plugins/wpdm-button-templates/wpdm-button-templates.php
The trouble I have now is that the
[download_link]text is in code like this:if(!wpdm_is_locked($id) && wpdm_user_has_access($id)){ return "<a href='".wpdm_download_url($package)."'>{$html}</a>"; } else return FetchTemplate("[download_link]", $package);I’m not sure how to replace or modify this without breaking the code – I’m not a PHP developer so I’m just using educated guesses here.
Apr 18, 2021 at 7:50 am #150676In reply to: Sir Shahjada Please Read this
ShahjadaKeymasterHi,
Here is the issue, the old version of the lazy download add-on was using session instead of URL parameter to handle package ID and add-on settings, but due to various caching plugin, the session was not functioning properly, like when you trying to download a package, it was downloading another one from the old cache. So, we had to resolve the issue by excluding session use and adding encrypted URL parameters to transfer the data. But there is no error with the plugin.Apr 16, 2021 at 4:33 pm #150618In reply to: Changelog for Add-ons
Nayeem RiddhiModeratorFor PRO WPDM, you shall find the changelog here, https://www.wpdownloadmanager.com/wordpress-download-manager-change-log/ and for the add-on changelog you shall find the corresponded add-on URL
thanks
-
AuthorSearch Results
Search Results for 'Add Url'
-
Search Results
-
Topic: Password Protected Pages
Hello,
We have a “home page” on our website that we only want visible to people who have created an account and are signed in. Currently, it is visible to anyone who goes onto the website.
How can we add a login page to appear before anyone can access the page itself?
Currently, the dashboard button works in this way, where if a user isn’t logged in, it prompts them to log into their account or register and this is how we want the home page to operate.
Login details: email: marketing@durable-uk.com – Password: 10Nimrod!
URL: http://www.durableportal.co.uk/