Search Results for 'download link'

Viewing 25 results - 2,651 through 2,675 (of 9,349 total)
  • Author
    Search Results

  • Pierre Gergi
    Participant
    This reply has been marked as private.
    #152345

    In reply to: Display Category Name


    Nayeem Riddhi
    Moderator

    I 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

    #152332

    In reply to: Linking to Individual


    Nayeem Riddhi
    Moderator

    Can you please check the both settings from Download > Basic as I image attached,

    Image 2021-05-10 at 9.50.03 PM

    the unmask download link is preferrable and Activate flat download url is on beta testing

    please check

    thanks

    #152313

    Humayon
    Spectator

    Hi Markus,
    Hope you are well.
    Please use the below shortcode instead and it should work. Don’t add the link-template-button.php in 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 Regards

    #152311

    In reply to: Saving Settings Error


    Humayon
    Spectator

    Hi Francisco C,
    Please follow the below link and then try again.

    Upload and download is not working


    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?
    Thanks

    #152289

    Emma Harrison
    Participant

    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?


    Pierre Gergi
    Participant
    This reply has been marked as private.
    #152275

    Humayon
    Spectator

    Hello 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 Regards

    #152237

    In reply to: downloads not shown


    Michael Angermeir
    Participant
    This reply has been marked as private.
    #152208

    Nayeem Riddhi
    Moderator

    please edit the file from tpls/page-templates or tpls/link-templates, you can also make backup files following this doc, https://www.wpdownloadmanager.com/doc/template-files/

    thanks

    #152191

    Jason Barrett
    Participant

    Yes, 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?

    #152188

    Jason Barrett
    Participant
    This reply has been marked as private.
    #152176

    Philippe Bonneau
    Participant

    The 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&eacute;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&eacute;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);
    
    });
    #152111

    Humayon
    Spectator

    Hi 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.

    Upload and download is not working


    Thanks

    #152093

    Nayeem Riddhi
    Moderator

    Can you please check this add-on, https://www.wpdownloadmanager.com/download/linked-products/, please let me know if it helps you

    thanks


    Nayeem Riddhi
    Moderator

    Hi,

    if you are using bootstarp 4 from downloads > settings > user interface

    please add the below linedownloads/tpls/wpdm-all-downloads.php file in line number 295

    $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

    #151894

    In reply to: Memory Problem


    Markus Schulte
    Participant
    This reply has been marked as private.
    #151876

    Nayeem Riddhi
    Moderator

    Contact form 7 with the download_link_extended tag 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 feature

    thanks

    #151867

    In reply to: Latest version?


    Senict Beanie
    Participant

    Nayeem. 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.

    View post on imgur.com

    #151865

    In reply to: ERP support?


    Humayon
    Spectator

    Hello 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.

    Custom Upgrade Service


    With Regards

    #151859
    This reply has been marked as private.
    #151858

    Hi,

    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

    #151843

    Victoria Chu
    Participant

    That 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


    Nayeem Riddhi
    Moderator

    Are 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

    #151754

    Ricardo Jimenez
    Participant

    Hello there.

    I am creating downloads that are for specific users in my website. I am restricting access to them via the Advanced Access Control add-on.

    Here is the issue: the download itself (the title, the description, the excerpt) might have confidential information, so I need to make sure other people can’t download the file (already via de Advanced Access Control add-on) but I also need that they can’t access the download page even if they know the direct link to it.

    Now, people won’t access their private downloads via the page, only through the link, so I was thinking on creating a special download page template that ONLY shows a block alert.

    Is this possible? Is there any other way?

    I do have a subscription membership plugin that can prevent people from seeing specified pages, but this works for groups of people, not individuals.

Viewing 25 results - 2,651 through 2,675 (of 9,349 total)