Search Results for 'download link'

Viewing 25 results - 5,476 through 5,500 (of 9,382 total)
  • Author
    Search Results
  • #70690

    Scott Kolbe
    Member
    This reply has been marked as private.
    #70680

    In reply to: CSS Change Template


    Shahriar
    Moderator

    1 ) Not possible to link to your post category archive

    2 ) Select Author for Autor Those are core WP roles, you shouldn’t delete those.

    3 ) You can edit the Download Limit Exceeded text from /wp-content/plugins/wpdm-daily-download/wpdm-daily-download.php file ( line 180 ).

    4 ) Building custom template is out of support scope. We can provide custom upgrade service in such cases.

    5 ) You need User Review add-on to add rating feature.

    6 ) To put ads between downloads, Requires code customization. Have to modify theme archive template for that.

    #70678

    Shahriar
    Moderator

    single-wpdmpro.php is different then WPDM page/link templates. WPDM page/link templates contains WPDM template tags. single-wpdmpro.php should only contain PHP code.

    If you have a working solution by editing default WPDM page template then you can just place this modified copy in /active-theme/download-manager/page-templates/ dir ( this is the correct way of adding new page template without cloning builtin templates )

    #70670

    Hi,

    Sorry, Google API does not provide the direct link to download a large file without virus scan. This is a security feature of google so you do not inveterately become responsible for infecting another computer.

    Thanks

    #70605

    In reply to: file-not-found.txt

    Hi,

    I have created test package which is working fine. https://h2020robox.eu/download/test/

    You may re-export the downloads post type from Tools Export and then upload it in Tool Import in new domain site.

    Or there might be subdomain link still exist in the database. So you may try the search and replace plugin to find out the link with subdomain and replace with the main domain.

    Thanks

    #70593

    In reply to: No download link sent


    The Dots
    Member

    Dear Hasibul, thank you for replying. Strangely the pop-up’s are visible now, but an email is not sent, I checked several times. So I select to instandly download the file instead. If you are able to solve this email problem I would be grateful.

    http://www.dutchdesignpressdesk.nl/edward-van-vliet-bn-m18/ (this is one example, but we use many download links like this)

    Thank you, David

    #70556

    In reply to: CSS Change Template


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

    lmobile
    Member

    Dear support

    we use at several pages the Downloadlink-Button. As example there: https://www.l-mobile.com/referenz/ms-schramberg-gmbh-und-co-kg/ Iy Button is used, it should refresh the page new. But if Button is used Download starts and page is going to be refreshed, but ends within the loading icon and freeze. Page is not reloaded. You can test on several pages here also https://www.l-mobile.com/referenzen/

    Downloadbutton within archiv pages in our downloadcenter works https://www.l-mobile.com/interaktiv/downloadcenter/ without issues. What could be the root of this behaviour.

    First time it is loading, if you hit Button a second time, site is not reloading.

    Best Regards Marc

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

Viewing 25 results - 5,476 through 5,500 (of 9,382 total)