Search Results for 'all+downloads'

Viewing 25 results - 226 through 250 (of 4,372 total)
  • Author
    Search Results

  • Kate
    Participant

    Hi everyone,

    I’m currently using the WP Download Manager plugin for managing downloads on my WordPress site. Whenever I upload some files through the admin panel, a random value is automatically prefixed to the filename. I would like to disable this behavior so that the file names remain as they are when uploaded.

    I have looked through the plugin settings but couldn’t find an option to turn this off. Could someone guide me on how to prevent these random prefixes from being added to the file names?


    Nayeem Riddhi
    Moderator

    For #1, For download showcase, you have use shortcode in your page or post, you can check this shortcode too, https://www.wpdownloadmanager.com/doc/short-codes/wpdm_all_packages-list-all-downloads-in-tabular-format-in-a-page/

    For #2, For this requirement, you may need a custom code solution, you can knock here for that, https://www.wpdownloadmanager.com/download/custom-upgrade-service/

    For #3, For this requirement, you may need also custom upgrade solution, you can knock here for that, https://www.wpdownloadmanager.com/download/custom-upgrade-service/

    Please kindly check and let me know.

    Thank you and regards


    SHIV SINGH
    Participant

    For #1 I have created a page named downloads and add all downloads short code on that page
    and I have a question about this
    can I make a page where my all download will be listed without manually adding the short code in the same design as I am sharing URL with you

    Downloads

    For #2 Yes It looks same,
    you can check this in below link

    Downloads

    What I want is when I click on download button and downloading stated this popup should be closed automatically, for now I need to close this manually

    for #3
    Can we show some progress bar over the page when it is downloading
    like when I upload a file there is a progress bar that shows the downloading percentage


    Ilze Ievina
    Participant

    We are experiencing a strange error with multiple files that were uploaded yesterday.

    In total, 6 files were uploaded: 3 Software versions in German (package names starting with 2025, 2024, 2023) and 3 in English (also 2025, 2024, 2023). Each of these packages has an individual permalink that is correctly defined in the package settings. However, when one clicks on that link, the URLs for 2023 and 2024 are forwarded to version 2025 of the respective language.

    When using the embed shortcode, the download button works correctly and the correct file begins downloading. However, when one clicks on the file name link next to it, the same error happens.

    All of the older downloads are not affected by this error.

    Download Manager Pro Version 6.5.5
    Wordpress Version 6.5.5.


    SHIV SINGH
    Participant

    Dear Support Team,

    I hope this message finds you well. I am currently using the “Download Manager Free” plugin on my WordPress site and have a few customization requirements that I need assistance with. Could you please guide me on how to achieve the following functionalities?

    1. Login Screen Display:
    I would like the login screen to appear before the downloads list is displayed to users. Currently, the login screen only appears after a download is selected. How can I modify the plugin settings or code to ensure the login screen is shown prior to displaying the downloads list?

    2. Handling “Must Accept Terms” Pop-up:
    When the “Must Accept Terms” pop-up appears and the user accepts the terms, the download button creates another pop-up. However, the “Must Accept Terms” window does not close automatically when the download starts and has to be closed manually. Is there a way to automatically close the “Must Accept Terms” window once the download begins?

    3. Download Completion Indication:
    There is currently no indication that the download has completed in the background. Is it possible to provide some form of notification or visual indicator to users once the download is finished?

    Your guidance on these points would be greatly appreciated. Thank you in advance for your support and assistance.

    All downloads on our site based on short-codes have stopped working with recent Download Manager updates and are producing a 404-error message.
    This is affecting all of our datasheets, user manuals downloads on our website: https://hsierra.com/support/library/

    This had been working fine until the most recent Download Manager updates.

    #197038

    Chelsea Sandberg
    Participant

    Hi, I activated from lock for and package and set the Gravity Form.
    When I click the download button on the front end the spinner shows up and never goes to the form for the download.
    If I disable the form lock the download work as normal. When I re-add the form lock and select the form and save. Then dgo tot he front end to attempt a download, It then goes back to just loading the spinner.
    I have tried all kind of trouble shooting but nothing is working.
    Example here: https://noraxon.sitebuilderhub.com/our-products/medilogic-insoles/
    Click on Downloads next to the big arrow close to the bottom of the page, then attempt to download the PDF.

    Please help.
    Thanks

    #197017

    Ryan Stueve
    Participant

    So, it is changing everywhere on the admin side, but on the frontend where I am trying to call that post type in my filters, it still auto-displays that post type name as “Downloads” instead of “Resources.” You can see in this screenshot: https://dbr2.flywheelsites.com/wp-content/uploads/2024/07/downloads-filter.png

    I did the same method to turn the “Posts” post type to “News” and that worked, as you can see.


    James LaVelle
    Participant

    Hello Tahasin,

    It is still not working correctly, please note not all thumbnails are wrong, and sometimes clearing the cache will fix some thumbnails, but then others are not correctly working again.

    The first test I did the thumbnail was already incorrect. I tried on /wpdmpackages/ramada-hotels-suites-marina-del-sol-downloads/Images/Bedroom 2.jpg

    I feel it has to do with that the images have same filenames, and that your plugin creates a cached version of the image in your own wpdm folder and once it has done it, it does not re-generate if a user goes from 1 download package to another and then the thumbnail image is incorrect. Any way we can disable to wpdm caching of the images?

    EDIT: Did some more testing and does look like the issue is coming from the URL used for cached images: https://projects.idiliqdevelopments.com/wp-content/uploads/wpdm-cache/Bedroom%202-150×150.jpg
    When clearing the cache from Privacy, and opening image “Bedroom 2.jpg” from “Package 1” it works fine, if I then go to “Package 2” to open “Bedroom 2.jpg” it is showing a thumbnail of “Package 1” and not “Package 2”.


    Ryan Stueve
    Participant

    I’m trying to update the “Downloads” custom post type so when I filter by post type using FacetWP, users will see “Resources” as the option instead of “Downloads.” I used the following code which has updated the name everywhere on the site, but am still seeing “Downloads” in my post type filter. Is there a way to change that?

    function nc_ascend_change_download_labels()
    {
        $p_object = get_post_type_object( 'wpdmpro' );
    
        if ( ! $p_object )
            return FALSE;
    
        // see get_post_type_labels()
        $p_object->labels->name               = 'Resources';
        $p_object->labels->singular_name      = 'Resource';
        $p_object->labels->add_new            = 'Add Resource';
        $p_object->labels->add_new_item       = 'Add New Resource';
        $p_object->labels->all_items          = 'All Resources';
        $p_object->labels->edit_item          = 'Edit Resource';
        $p_object->labels->name_admin_bar     = 'Resources';
        $p_object->labels->menu_name          = 'Resources';
        $p_object->labels->new_item           = 'New Resource';
        $p_object->labels->not_found          = 'No Resources Found';
        $p_object->labels->not_found_in_trash = 'No Resources Found in Trash';
        $p_object->labels->search_items       = 'Search Resources';
        $p_object->labels->view_item          = 'View Resource';
    
        return TRUE;
    }
    
    add_action( 'wp_loaded', 'nc_ascend_change_download_labels', 20 );

    Ronel Urquhart
    Participant

    Hi there

    What is the CSS to enlarge the font size for download titles etc in tabular format?

    Much appreciated 🙂

    #196975

    In reply to: Initial parent page


    Nayeem Riddhi
    Moderator

    With call to action 4 link template and category slugs with this shortcode, https://www.wpdownloadmanager.com/doc/short-codes/wpdm_category-query-all-downloads-from-one-or-more-categories/, the appearance you can get like this, https://wpdmpro.w3eden.com/category-shortcode/. Please kindly check and let me know.

    Thank you and regards

    #196973

    In reply to: Initial parent page


    Geoff Cox
    Participant

    So lets say I would like to use the link template “call to action 4” so that my downloads page listing looks like the “Call To Action 4” example on https://try.wpdownloadmanager.com/ready-to-use-templates/

    and I would like to show downloads from category slugs “category-1” and “category-2” and show them in a grid totalling no more than 12 at a timer with pagination.

    What would that shortcode look like?

    Geoff

    #196967

    Tommaso Ulivieri
    Participant

    Hi,
    Is it possible to set a manual sorting in a table with a list of downloads? At the moment I have set the sorting based on the title, but I would like to manage the sorting manually. How can I do this?

    Thank you

    #196958

    Andy Zippert
    Participant

    The fault was mine.

    I had forgotten that we had installed the “Post Type Order” plugin. This then apparently also takes over the sorting of the downloads.

    Now the sorting works as it should. Sorry.

    #196956

    In reply to: Initial parent page


    Nayeem Riddhi
    Moderator

    You can use template in parameter and appearance with these shortcodes,

    [wpdm_packages] – WP_Query in a shortcode for download manager packages

    [wpdm_category] – Query All Downloads From One or More Categories

    Please kindly check and let me know.

    Thank you and regards

    #196951

    In reply to: Initial parent page


    Geoff Cox
    Participant

    Thank you so much for your support, I really appreciate it.
    So if the short code you mention above is the only one available for listing downloads, even with a pro version how would I show your “Call to action 4” example on https://try.wpdownloadmanager.com/ready-to-use-templates/ ?

    I need to know how I can show different download listings before I decide to upgrade to pro.

    Geoff

    #196945

    In reply to: Initial parent page


    Nayeem Riddhi
    Moderator

    [wpdm_all_packages] shows a list of all downloads in tabular format in a page, you can’t define any template in this shortcode parameter. However, you can check other shortcodes here too, https://www.wpdownloadmanager.com/doc/short-codes/. Please kindly check and let me know.

    Thank you and regards

    #196943

    In reply to: Initial parent page


    Geoff Cox
    Participant

    The template type is fine – I understand.
    However how do I define what template I am going to use to list all my downloads?
    For example I am currently using the following on my listing screen but it doesnt mention the listing layout template anywhere:

    [wpdm_all_packages login=0 thumb=1 items_per_page="20" jstable=1 order_by="field_name" order="ASC/DESC" cols="title,file_count,download_count|categories|update_date|download_link" colheads="Title|Categories|Update Date|Download::155px"]

    #196938

    Geoff Cox
    Participant

    My apologies as I think I am being extremely stupid.
    On the main page that shows all of my available downloads I would like to show all downloads as per your template “Call to action 4” with 3 columns. So I have set the “Link template” for each download to “Call to action 4” However how do I setup the main view of these downloads to be as per your “Call to action 4” example on https://try.wpdownloadmanager.com/ready-to-use-templates/ ?

    My page currently look like this: https://showersave.previewlab.co.uk/library/

    Also how do I add a search facility?

    Thank you.

    Geoff

    #196849

    Nayeem Riddhi
    Moderator

    Hello Edukid,

    Hope you are well. Thanks for writing to us.

    For updating the WPDM PRO plugin, Please simply click the Save Settings again for the license key option from Downloads > Settings > License, and then please update the plugin from the wp-admin > plugins panel.

    For saving settings again for the license key option from Downloads -> Settings -> License, that will regenerate the access token. Thus the plugin will be updated,

    For updating WPDM add-ons, please download your plugin from here, https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases,
    And update manually from the wp-admin dashboard Plugins > Add New option. I hope, thus it will resolve your issue. For the Download > Settings > Updates option will not work properly for some server settings. please check and let me know, if you have any queries.

    Thank you and regards


    Edukid
    Participant

    Automatic updates of wpdownloadmanager are not working.

    In help I found this page that shows how to allow the plugin to login to my wpdownloadmanager account:

    Updating download manager to the latest version

    However when I go to Admin Menu Downloads Settings Updates on our website I see a empty list of “Purchased add-ons” below “Check for updates” and “Logout” buttons. I have recently changed the wpdownloadmanager account password so I click “LOGOUT” but the page just reloads the same as it was; there’s no login page to enter the new password.

    I performed a manual update by downloading the zip of 6.5.4 and updating via the “Upload plugin” interface, but this didn’t fix the problem.

    #196837

    Pierre Gergi
    Participant
    This reply has been marked as private.

    David Tanguay
    Participant

    We recently redesigned our website and are trying to export the downloads from the old site to the new one using Download > Import & Export > Create Export File.

    The Export to a CSV file works but when I try to Import it from into the new website it gets stuck on 1%

    I’ve setup a test install I can give you access to troubleshoot.

    I’ve turned off Mod Security on the hosting account to rule that out.

    I also disabled all plugins other than WP Download Manager.

    Both sites use the newest version of WordPress and Download Manager Pro 6.5.4

    I see this problem happens a lot for people on this forum but there was no solution other than to get support through a private message.

    Please contact me so I can give you the WordPress login details.

    -Dave

    Screenshot

    #196753

    79DESIGN
    Participant

    Sure, but the search reveals ALL docs to ALL users – this is bad.
    We are using this plugin because it allows us to assign downloads to users.
    Search will bypass that… which is very very bad.

Viewing 25 results - 226 through 250 (of 4,372 total)