Search Results for 'download link'

Viewing 25 results - 1,951 through 1,975 (of 9,508 total)
  • Author
    Search Results
  • #169954

    Callum
    Member
    This reply has been marked as private.
    #169945

    Humayon
    Spectator

    Hi there,

    Please add the below CSS based on your previous reply.

    th#post_content,
    th#acf_ProductInfo_Resolution {
      width: 60px !important;
      max-width: 60px !important;
      min-width: 60px !important;
    }
    
    th#acf_ProductInfo_Artist,
    th#acf_ProductInfo_Title {
      width: 300px !important;
      max-width: 300px !important;
      min-width: 300px !important;
    }
    
    th#acf_ProductInfo_Version {
      width: 400px !important;
      max-width: 400px !important;
      min-width: 400px !important;
    }
    
    th#acf_ProductInfo_BPM,
    th#acf_ProductInfo_Year,
    th#acf_ProductInfo_Credits {
      width: 50px !important;
      max-width: 50px !important;
      min-width: 50px !important;
    }
    th#acf_ProductInfo_genre {
      width: 130px !important;
      max-width: 130px !important;
      min-width: 130px !important;
    }
    
    th#download_link {
      width: 100px !important;
      max-width: 100px !important;
      min-width: 100px !important;
    }

    Thanks.

    #169944

    Andrew Beniams
    Participant

    Hi Nayeem – thanks for your reply.
    I have made some progress – the CVS file seems to be working, with the exception of the following:

    NB. https://imgbb.com/ doesn’t allow me to upload the CSV File?!
    Downloads-Manager-Media-Image
    Downloads-Manager-Title-Description-not-correct
    Downloads-Manager-All-Packages
    Downloads-Manager-Download-OK

    1. Most important: the ‘Download File’ whilst the file is identified on the CSV the problem is to ‘link’ the actual image file. I upload the image file as a ‘bulk import’ (files are in a Folder ‘Downloads Test _ CSV 16_3_22’ in the ‘Digital Assets Manager – download-manager-files’ – but this then alters the Title / Description to change to the file name (with no spaces)?
    It also removes the Categories and other settings. It does add an ID.

    Please see screenshots:-
    a) Screenshot: Downloads Manager – All Packages – the first 4 are incorrect as they are using the image file name!
    see: Screenshot: Downloads Manager – Title / Description not correct / https://nfpsoccer.co.uk/download/u12-ya_test_1a_copy-png/

    b) Screenshot: Downloads Manager – Download OK
    https://nfpsoccer.co.uk/download/practice-skills-x/
    This show the Package which is fine except that the image file is not linked – so we get “Sorry! File not found!”
    There is no ID? Categories are OK.

    2. I would like the CSV to ‘remove’ the (Discussion) ‘Allow Comments’ option.

    3. Can the CSV include a ‘Media’ image with the ‘Description’ – see screenshot: Downloads Manager – ‘Media’ Image
    https://nfpsoccer.co.uk/download/session-1-skill-practice-game/

    #169934

    Albert Trevino
    Participant

    The page is called “Test Table 2”

    I need every column with custom width.

    post_content 60px
    acf_ProductInfo_Artist 300px
    acf_ProductInfo_Title 300px
    acf_ProductInfo_Version 400px
    acf_ProductInfo_BPM 50px
    acf_ProductInfo_genre 130px
    acf_ProductInfo_Year 50px
    acf_ProductInfo_Resolution 60px
    acf_ProductInfo_Credits 50px
    download_link 100px (as wide as the download button)

    Thank you.

    #169923

    Tanvir
    Spectator

    Hello,
    Hope you are well.
    To enable to preview feature of pdf, you have to use the below addon with wpdm.

    WordPress PDF Viewer

    And then you can remove the download button by editing link template or page template so only preview will be available.

    Thanks

    #169911

    Erik Turesson
    Participant

    In the file download-manager\src\Admin\Menu\Packages.php
    Change this code:
    if(file_exists(UPLOAD_DIR.$name) && get_option(‘__wpdm_overwrrite_file’,0)==1){
    @unlink(UPLOAD_DIR.$name);
    }
    if(file_exists(UPLOAD_DIR.$name) && !isset($_REQUEST[“chunks”]))
    $filename = time().’wpdm_’.$name;
    else
    $filename = $name;

    /$filename = esc_html($filename);

    if(get_option(‘__wpdm_sanitize_filename’, 0) == 1)
    $filename = sanitize_file_name($filename);
    else {
    $filename = str_replace([“/”, “\\”], “_”, $filename);
    }

    To this:
    if(get_option(‘__wpdm_sanitize_filename’, 0) == 1){
    $filename = sanitize_file_name($name);
    }else {
    $filename = str_replace([“/”, “\\”], “_”, $name);
    }

    if(file_exists(UPLOAD_DIR.$filename) && get_option(‘__wpdm_overwrrite_file’,0)==1){
    @unlink(UPLOAD_DIR.$filename);
    }
    if(file_exists(UPLOAD_DIR.$filename) && !isset($_REQUEST[“chunks”])){
    $filename = time().’wpdm_’.$filename;
    }

    #169859

    Nayeem Riddhi
    Moderator

    Hello Adams,

    You can use custom link-template within these pages for download packages and remove the download count and file size section. Thus, It may help you. please check and let me know.

    Thank you and regards

    #169834

    In reply to: Template Question


    Michael K.
    Participant

    Hello Nayeem,

    thank you. So it is good.

    From my first Post is one thing open.

    “– On my Linkpage the Downloads were smaller and smaller. Where can I change it.”

    See the first Post please…

    #169824

    Nayeem Riddhi
    Moderator

    Hello Adams,

    please try with the below code in your theme Customizer > Additional CSS

    .post-22933 .wpdm-download-link.btn {
        width: 115px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    .post-22937 .wpdm-download-link.btn {
        width: 115px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    .post-22935 .wpdm-download-link.btn {
        width: 115px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    I hope it will be worked properly then. please let me know

    Thank you and regards

    #169816

    Tanvir
    Spectator

    Hello,

    For this you have to edit the link template you are using.
    Please follow the below doc:
    https://www.wpdownloadmanager.com/doc/templates/link-template/

    If still the problem persists, please also share related page url and admin access in a private reply.

    Thanks

    #169813

    Gregory Dietrich
    Participant

    I’m using the plugin to simply display downloads, https://pghw.org/document-downloads/.

    How can I unlink the document title and force everyone to use the download button? https://s.grcwk.co/bLuKrXWD


    Humayon
    Spectator

    Hello @bijdageraad,

    Greetings and welcome.

    You can change it easily from the page template option in the pro version of WPDM.

    For the free version, you have to modify the relevant template.

    In this case, you can follow the below documentation,

    Template Files

    By default, you are using link-template-default.php for the link template and page-template-default.php for the page template.

    Now copy the files you want to modify from /src/{ComponentDir}/views dir to /{active-theme}/download-manager/ dir.

    And you have to replace [download_link] with <a href="[download_url]" class="btn btn-primary" target=_blank>[link_label]</a> in related php file.

    Thanks.


    brett polakowski
    Participant
    This reply has been marked as private.

    brett polakowski
    Participant

    Hello,
    We completely re-worked our website with a new theme, look, feel and functionality. We went live yesterday with the site with the intent of making our Downloads page live after the site changed over.

    When I go to import the csv file from the old site, it shows the ‘Uploading’ progress bar, then ‘Importing 1%’ and never progresses any further.

    I’m using Divi theme if that makes a difference. I’ll follow up with a reply with credentials and a link to the csv file in a private message.

    Thanks,
    Brett

    #169727

    Michael K.
    Participant

    Good Morning,


    https://www.dxf-downloads.de/downloads/neueste-uploads/

    – On my Linkpage the Downloads were smaller and smaller. Where can I change it.
    – And the Thumbs show not correctly. I want to show the width 100%.

    – On my Page Template. How can I change the Background to transparent btw. white. Not grey. For example after Uploader “Wolfgang968”

    Hope anybody can help me. Thanks a lot.

    Regards

    #169714

    In reply to: A few questions..


    Lethal Clarke
    Participant

    Hi @Nayeem Riddhi,

    I noticed my mistake, I forgot the link/templates folder.

    Everything is now more or less how I’d like it (other than the fact downloads still don’t open in a new tab/pop-up and redirect my visitor away from my site to mega.nz).

    Final question: How do I use full width on the page-template-default template? It seems to have an empty sidebar “Hot Topics” on the right, I wish to remove this and use full-width so the download’s description isn’t so compact/limited.

    I’ve tried WPDM Page Templates but doesn’t work with my theme OceanWP I only have default template (page.php) and Landing Page… my template/theme is set to “Full Width” in settings but Download Manager ignores this as the page isn’t manage by WP (it’s created by Download Manager*).

    * If a download “Sample Download” is created via Dashboard > Downloads > Add File the page it creates is mywebsite.com/download/sample-download. The page is handled by Download Manager so isn’t under Dashboard > Pages so i’m unable to set full-width. When I preview the page is Dashboard > Appearance > Customise there is NO sidebar which is telling me Download Manager is adding the sidebar (Hot Topics) itself?

    Thanks.

    #169711

    Albert Trevino
    Participant

    That works for the most part. I do have questions.

    How do I do this for the other fields? I just added one called year from a custom field. I couldn’t do it before because nothing was spacing right.

    What about the fields that are not from the custom fields? The first and last column for example are directly from the package details. One is the “post_content” and the other is the “download_link”

    #169687

    Ikram Dirujii
    Participant
    This reply has been marked as private.

    Nayeem Riddhi
    Moderator

    Hello Fredrick,

    I have adjusted the font size for your Image Hover Split link-template, from Downloads > Templates > Link-templates > Image Hover Split CSS section. However, for changing the spinner loading image, you can check the loader.svg image from

    wp-content\plugins\download-manager\assets\images\loader.svg directory and replace it as your requirements. please check and let me know.

    Thank you and regards

    #169651

    Archifibe Inc
    Participant

    I installed extended shortcode add-on for caruosel shortcode, to be able to use this shortcode:

    [wpdm_carousel items_per_page=4 template=”fresh_card” wrap=0 items_total=12]

    But when I try it, i don´t get the fresh_card template like the example who show the featured image of the package.

    Do i have to do something more?

    Thks
    This is your example where it´s aparently working:
    https://try.wpdownloadmanager.com/carousels/
    (Also note that in this link, there is an error of spelling in caruosel, instead of carousel…)


    acason
    Participant
    This reply has been marked as private.

    acason
    Participant
    This reply has been marked as private.
    #169567

    Albert Trevino
    Participant

    I have tried so many different way to get this to work and it doesn’t.

    My shortcode:

    [wpdm_all_packages

    thumb=0

    items_per_page="20"

    categories="test"

    jstable=1

    order_by="title"

    order="ASC"

    cols="post_content|acf_ProductInfo_Artist|acf_ProductInfo_Title|acf_ProductInfo_Version|acf_ProductInfo_BPM|acf_ProductInfo_genre|acf_ProductInfo_Credits|download_link"

    colheads="|Artist::5px|Title::10px|Version::500px|BPM::1px|Genre::1px|Credits::1px|Download::1px"]

    I tried so many different values and it seems to not work in adjusting any of the column widths. This is why I put a 1px on some of them to see if it would even adjust to that, it doesn’t.

    All the columns are evenly spaced.

    How do you get this to work properly.

    #169558

    Nayeem Riddhi
    Moderator

    Hello Adams,

    I have checked that, it is not wrapped by any other div for the download link. However, please try with the below code in your theme Customizer > Additional CSS

    .wpdm-download-link.btn.btn-primary {
        width: 40%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    I hope it will be worked properly then. please let me know

    Thank you and regards

    #169544

    In reply to: Paypal not working


    Juan Gordo
    Participant

    yes, same link really, try to purchase the test item https://members.ateb-group.co.uk/download/wpdm-test-3/ and check out still has the dissapearing Paypal window for me in both safari and chrome.

    So what solution is suggested then? can you solve whatever conflict is happening? I need both systems to be able to use Paypal if WPDM cant integrate TutorLMS

Viewing 25 results - 1,951 through 1,975 (of 9,508 total)