Search Results for 'download link'

Viewing 25 results - 4,276 through 4,300 (of 9,523 total)
  • Author
    Search Results
  • #114971

    Johann Ruff
    Participant

    Hi, thanks for fast answer, so for the moment what I can understand:

    1.) This is not working for now? Or this will not work?
    =► https://prnt.sc/pxuqg5
    =► https://prnt.sc/pxura0
    There can be different files, not only pdf which I need with password protect.
    What I want is, I wanted directly send email link and after click on mail download button I wanted to be asked for password before downloading.

    2.) “When you create the package and set 2 lock options, the file will be downloaded when the user completes one of the options.”
    ► Which two lock options? Where and how to set?

    Thanks!

    #114966

    Abdus Sattar
    Member

    hi,

    When you create the package and set 2 lock options, the file will be downloaded when the user completes one of the options. So, an emailed download link won’t ask for a password.

    However, if your file is a PDF, you can Password Protect the file using PDF Stamper ( https://www.wpdownloadmanager.com/download/wordpress-pdf-stamper-plugin/ ) add-on.

    Thanks

    #114963

    Johann Ruff
    Participant

    Hi, after I have created a dwonload file with password protect and send via email, ….
    There will be no question for password before download?
    What I am doing wrong?

    I need that the email download link file will be also password protected?
    Thanks!

    #114935

    Shahriar
    Moderator

    You can use the wpdm_after_upload_file hook to email the uploaded file. This hook provides you path to the uploaded file. Please check the related documentation in the following link,

    https://www.wpdownloadmanager.com/doc/filter-reference/wpdm_after_upload_file-filters-applied-uploaded-file-name/

    #114871

    Colin Hart
    Member

    I have Download Manager Pro and I bought a bundle at the time which included the Stripe payment gateway which I use, my WordPress plugins panel is telling me there is an update to 1.4.0 for that, I click on the update link which takes me to the Download Manager plugins panel, I click the update button there, it blinks, then says success, when I reload the screen it goes back to saying update. If I click on the link to the plugin it takes me to the sales page for it, I have an up to date subscription, where can I either get the .zip file to manually update it or get the update panel to work, I think the update panel failure may be to do with the fact I am using the SSH SFTP Updater Support plugin in my WordPress installation.


    Shahriar
    Moderator

    Hi,

    Masterkey is meant to override the permission settings. If you want to share the download only restricted roles then use just a simple download link without the masterkey.

    Thanks.

    #114834

    In reply to: change template


    Shahriar
    Moderator

    Hi,
    If you want to make any change to the template then clone it and edit the cloned copy. Here is a detailed tutorial on that https://www.wpdownloadmanager.com/building-a-wordpress-download-manager-link-template-from-scratch/
    Thanks.


    Jan Kasten
    Participant

    Hello,

    We use the short code below to create a table of downloadable files on a page that are private. One has to be signed into our website to view the page and the downloads. When the table lists the Title, it also shows the word “Private:” next to each download title. We would like to remove that text in both the TITLE and the PAGE LINK listed in the table. Please advise where we can manage and change this output of text. Thanks!

    Example
    Title of actual Download “Co-Extruder – English”
    Title shown in the table “Private: Co-Extruder – English”

    Shortcode
    [wpdm_all_packages items_per_page="30" categories="English" jstable=0 order_by="field_name" order="ASC/DESC" cols="title,download_count|categories|update_date|page_link" colheads="Title|Language|Update Date|File link::355px"]


    Philippe Bonneau
    Participant
    This reply has been marked as private.
    #114750

    Eugenie Bulten
    Participant
    This reply has been marked as private.
    #114716

    Shahriar
    Moderator

    I have to check your CSV to find what went wrong. Also, could you please send the CSV download link in a new ticket? We will continue the discussion there. As you are not the author of this ticket you won’t be able to see any private reply from me.

    #114687
    This reply has been marked as private.
    #114670

    It seems to be working again now…

    Can we hide the download part on certain Form Locked packages so there is just an email to the user with a external link (YouTube)?

    Thanks

    #114671

    It seems to be working again now…

    Can we hide the download part on certain Form Locked packages so there is just an email to the user with a external link (YouTube)?

    Thanks

    #114646

    Paulo Frade
    Participant
    This reply has been marked as private.
    #114580

    Samantha Nystrom
    Participant

    We have only one file per package. Here is a link -> https://ninjatraderecosystem.com/user-app-share-download/pricevoice/

    I was able to modify it from code previously sent like this:

    $filepath = str_replace(‘\\’,’/’, $filepath );
    $filename = wpdm_basename($filepath);

    //modified to get the file name instead of random number
    $tmparr = explode(‘.’, $filename );
    $filename = get_the_title( $package[‘ID’] ) . “.” . end($tmparr);
    wpdm_download_file($filepath, $filename, $speed, 1, $package);

    Is there a better way to do this? Also, you had previously said a filter with the ability to use the download file name would be added to the front end, is that still a possibility?

    #114578

    Shahriar
    Moderator

    Do you have only one file per package? Please send me a sample download page link. Depending on the number of files the code location will vary.

    #114573

    Shahriar
    Moderator

    To fix the first 2 warnings go to Downloads > Settings > Default Values. Then set “Page Template” and “Link Template” options.

    And to fix the other 3, please download this file https://www.dropbox.com/s/nkzpvrq5osgyu3m/wpdm-login-form.php?dl=1 and place it in /active-theme/download-manager/wpdm-login-form.php path. I have added patch here to fix those warnings and this template will override the default one.

    #114562

    Samantha Nystrom
    Participant

    This code no longer works in the latest update. The code block is now:
    //$plock = get_wpdm_meta($file[‘id’],’password_lock’,true);
    //$fileinfo = get_wpdm_meta($package[‘id’],’fileinfo’);

    $filepath = str_replace(‘\\’,’/’, $filepath );
    $filename = wpdm_basename($filepath);
    $filename = preg_replace(“/([0-9]+)[wpdm]+_/”, “”, $filename);

    wpdm_download_file($filepath, $filename, $speed, 1, $package);
    //@unlink($filepath);

    What do I modify to use the file name instead of the string of numbers as before?

    #114462

    Shahriar
    Moderator

    It is not possible to use the embedded form in all packages table.

    Use a custom link template with [download_link_dynamic] template tag to render the download button based on lock status. Here is the code to implement this tag.

    function wpdm_download_link_dynamic($vars){
        if ( wpdm_is_locked( $vars['ID'] ) )
            $vars['download_link_dynamic'] = $vars['download_link_extended'];
        else
            $vars['download_link_dynamic'] = "<a class='btn btn-success' href='".$vars['download_url']."' target='_blank'>".$vars['link_label']."</a>";
    
        return $vars;
    }
    add_filter( 'wdm_before_fetch_template', 'wpdm_download_link_dynamic', 10, 1 );

    Shahriar
    Moderator

    Hi,

    It is not possible to send the guest a download link with the email as the link requires the form submission. But the feature is noted for implementation.

    For now, you can add a message on the guest order download page to let the user know they can copy the order ID from the email you sent.

    Use a custom template for /wpdm-premium-packages/templates/partials/guest-order-search-form.php to add the message. This template can be overridden by copying it to /active-theme/download-manager/partials/guest-order-search-form.php

    Thanks.

    #114456

    In reply to: Bulk import via FTP


    Shahriar
    Moderator

    Hi,

    Are you referring to the Directory Import option in Downloads > Bulk Import page? In this method, one package is created for each file. Download Manager doesn’t move the files, it just links each file’s location to the package.

    Thanks.

    #114453

    Shahriar
    Moderator
    This reply has been marked as private.
    #114432

    gmo
    Participant

    We’re approaching the solution. Many thanks for that. wpdm-all-downloads.php works so far. Only I don’t want a popup for the password input, but the solution like download_link_extended. Is that possible?

    In the same way I would like to achieve the following with link-template-default.php:

    If password protected show [download_link_extended] otherwise show “[link_label]“.

    Can you rebuild this for me? I am not good at php. 🙂


    Peter Kong
    Participant

    I need urgent help. Please visit this page -https://ps-cardiagnostics.com/download/scania-multi-language-epc-electronic-parts-catalog-2019-03/
    If I click on Paypal button link it takes me straight to the official paypal page and checkout from there. After payment, where does it go. The customer has not entered his email address so where does he gets his order ID.

    For example, this page – http://ps-cardiagnostics.com/guest-orders/ you have to enter order ID and email address.

    Seems like you have to enter these 2 pieces of information before you can get the PDF download link. So if a customer checks out immediately by clicking on paypal how does it work?

Viewing 25 results - 4,276 through 4,300 (of 9,523 total)