Search Results for 'download link'

Viewing 25 results - 5,451 through 5,475 (of 9,351 total)
  • Author
    Search Results
  • #70539

    In reply to: CSS Change Template


    Shahriar
    Moderator

    1 ) Save only the image URL in the custom field. Then use this URL in your custom template to show the image via the img tag.

    2 ) Sory, Not sure what you meant. If you want you can activate the download archive ( from the option in your screenshot 1 ).
    Yes, you can show only the category. Add following code in your theme’s functions.php to add a custom template tag for categories with no link,

    function wpdm_comma_separated_tax_terms($post_id){
        $args = array('orderby' ► 'name', 'order' ► 'ASC', 'fields' ► 'all');
        $terms = wp_get_post_terms( $post_id, 'wpdmcategory', $args );
    
        $terms_array = array();
        foreach ($terms as $term):
            $terms_array[] = $term->name;
        endforeach;
    
        return implode(', ', $terms_array);
    }
    function wpdm_custom_tags($vars){
    
        $vars['categories_nolink'] = wpdm_comma_separated_tax_terms($vars['ID']);
    
        return $vars;
    }
    add_filter( 'wdm_before_fetch_template', 'wpdm_custom_tags', 10, 1 );

    3 ) If you use the custom categories tag then there will be no link to category archive.

    4 ) Great

    5 ) Multiple downloads of the same file in single session is counted as one. The limit will apply only when the user tries to download another file.

    6 ) Select ‘Subscriber’ in package settings to allow Abonnent

    https://www.evernote.com/l/AUdCkW2j-_dGv7sYlVYXE_zobM6kUFQnXVcB/image.png

    7 ) You can modify the message from /wpdm-daily-download/wpdm-daily-download.php file. There is no filter yet to modfiy it from outside.

    #70531

    Shahriar
    Moderator

    When a field is empty you can hide that by adding a class in the template code. example: adding this [hide_empty:version] class in the wrapping element/div of version will hide the element if the version is empty. Please check the “Single Column, Flat ” page template code for reference.

    Or you can just all of you files ( the main download and other supporting files like EULA, old versions etc ) in the same package. Pro version has the support for multiple files in the single package. Then you can use [file_list] template tag to show all files with individual download links.

    Here is the demo of multi-file package https://demo.wpdownloadmanager.com/wpdmpro/download/multi-file-package/

    #70492

    Michael
    Participant

    I’m not sure what’s wrong with my install, but the only way I can do this is to edit the template files directly.

    I altered the page-default template (making a backup of the original first). Got the functionality I wanted, but when I follow the instructions in your link, doesn’t seem to work if I create a single-wpdmpro.php file in a subfolder of my theme called download-manager? Should it be in a sub folder of the download-manager folder?

    #70474

    In reply to: CSS Change Template


    Michael K.
    Participant
    This reply has been marked as private.
    #70466

    Shahriar
    Moderator

    Hi,

    You have to add the [download_link] template tag in your custom link template. Because this tag is used to replace the download link with lock feature.

    Best regards.

    #70465

    In reply to: CSS Change Template


    Shahriar
    Moderator

    – Category archive page URLs look like https://www.site.com/downloads/package-category/ Here downloads is category URL base. I meant before you can change this URL base if you want from Dashboard Settings Basic URL Structure Panel.

    -You can set login required or permission denied message ( when the user can’t access the package ) from settings. But your link/page template should have [download_link] tag for that.

    https://www.evernote.com/l/AUdDu_AO60dA8K3RJab03IANkt0XK3o5e0UB/image.png

    – You need Download Limit add-on to apply download limit based on user role

    – Just update the package where you see the empty author. That should hide the author when it is empty.

    #70455

    In reply to: Open PDFs in Browser


    Shahriar
    Moderator

    You should use the custom link/page template ( the one that opens pdf in new tab ) with the package where you have only pdf file. In other packages use default download_link tag instead.

    If you can’t figure it out, Please send me the package URL and wp-admin login info in private reply to check the dialog issue.

    Hello, I’ve been trying to set up my downloads so that only subscribers can download them. I set up a login page and a register page, however my downloads won’t create a link to login/registration page, they just say “Please log in to download” (see attachment.) Can you please advice on how to redirect my users to the registration/login page?

    Thank you.

    #70420

    In reply to: CSS Change Template


    Shahriar
    Moderator

    – Added new custom field Author and edited your custom link template dxf to show that author when available

    – added the background in custom template

    – changed the button color

    – access is not working because from your download manager category settings you are allowing all visitors to access the download

    https://www.evernote.com/l/AUfFZKpfwA9L07cyF62_63MrWblmgS7fLpMB/image.png

    https://www.dxf-downloads.de/category/downloads/3d-drucker-stl/ is the archive for your post category 3D Drucker .stl It is not download category archive. Download category archive url will look like this https://www.dxf-downloads.de/downloads/download-category

    you can change the url slug downloads from WPDM Basic settings.

    #70399

    Hi,

    The package permalink doesn’t require the query parameter, the query parameter is used only in download button/link. You can use that direct link anywhere for package parmalink.

    Thanks

    #70391

    Michael
    Participant
    This reply has been marked as private.
    #70378

    In reply to: CSS Change Template


    Michael K.
    Participant
    This reply has been marked as private.
    #70351

    Michael
    Participant

    How do I do this?

    Say I have 200 downloads in the “oranges” category and before the download template, I want to add some text that only gets displayed if it’s the “oranges” category like “here are the oranges downloads”

    I can’t create a new template, as I’d have to set it manually on 200 downloads.

    So in my real world example I have 200 or so downloads, and I have a page of instructions on how to use the downloads of a certain type.

    What I’d like is to be able to add that link above the downloads, or in the text description to show people where to get help with them.

    Hope this makes sense, and hope it can be done in some way. I’ve looked at conditional tags, but I wouldn’t know where to begin using them with WPDM.

    #70336

    LinPing
    Member

    Two quetions:

    1. The CSV Importer menu link disappear when login using Editor role,
    how can I make Editor role be able to access to CSV importer?

    2. I have put the files to “uploads/download-manager-files” directory, and imported the CSV file. After CSV imported, I noticed that from the backend I can see the file is attached but
    the front-end shows file not found

    #70332

    In reply to: CSS Change Template


    Michael K.
    Participant

    ok, now it looks like the Screenshot.

    – How can I make the whole Background in a light Grey?

    – And how can I change the Green Download Button? With this Code nothing change

    .w3eden .btn .btn-primary{
           background-color: #455a56;
           border-color: #1abc9c;
    }
    

    – I want to change the links to the Category to the category Page, not to the Blog Archives. Where can I change it.

    – Can I make the “advanced Field” with Premium User make with a IF Rule. So when the File is for “Author”(Premium User) then show the Field. If not then not show the field.

    #70304

    Hi, you can use custom template with direct download link shortcode with link tag and target _blank to open download in new tab.

    Thanks

    #70280

    Matthew Lux
    Member

    Right now If a user is not logged in they have no link at all where normally the download link is when someone is logged in. Is there a way to put a login link in place of nothing so someone knows to login?

    #70266

    Hi,

    Please create a new page/link template and use <a target="_blank" href="[download_url]">Download</a> for the download button.

    First, Enable the Open File in Browser option from Downloads Settings Basic File Download Panel.

    That will open the file in a new tab.

    Thanks

    #70254

    Lend brand
    Member
    This reply has been marked as private.
    #70243

    Is ther anyway to make the package perma link such as : /download/my-file-title/ go directly to the actual package? Instead of having to use:

    /download/my-file-title/?wpdmdl=1234

    #70229

    Hi,

    Create a dir named download-manager inside your active theme dir, copy wpdm-all-downloads.php from /plugins/download-manager/tpls/ to{active theme dir}/download-manager/, now open and edit the file.

    And remove the link tag from 251 to remove the link from the title.and for category 222 no line.

    Thanks

    #70208

    Shahriar
    Moderator

    Hi,

    If you added PHP file in /active-theme/download-manager/link-templates/ dir then switching theme will remove those templates until you copy those templates file under the active theme.

    If you used Downloads Templates Template Editor to create custom templates then those should be there even after theme switch.

    How did you create those custom templates? Did you add PHP files or template editor?

    Best regards.

    #70198

    In reply to: Open PDFs in Browser


    Shahriar
    Moderator

    Clone the page/link template you are using now and replace [download_link] with <a target="_blank" href="[download_url]">[link_label]</a>

    #70179

    Hi,

    You can use the shortcode search feature to achieve that [wpdm_search_result init=1 template="link-template-default" cols=1]. You need to put link template which has download button with [download_link] template tag which enables direct download.

    Sorry to do with default search it needs code customization.

    Thanks


    Janet Sowell
    Participant

    I am having trouble with the Guest Download feature.

    When the customer finishes her purchase on PayPal Pro, a login screen appears with no provision to go to guest download. If the customer selects to register, an error message appears saying “User registration is disabled”.

    If the customer hits the link on the order confirmation email, it does offer guest download if they use their email address and order number. I tried to have the PayPal Pro bring the customer back to a page explaining this procedure, and the customer is still brought back to the login / registration page.

    Help!

Viewing 25 results - 5,451 through 5,475 (of 9,351 total)