Search Results for 'download link'

Viewing 25 results - 1,126 through 1,150 (of 9,401 total)
  • Author
    Search Results

  • Desert Waters
    Participant
    This reply has been marked as private.

    Shahjada
    Keymaster

    Here it is:

    Lock Options

    Actually, too keep the link protected while still you want to allow user to download the item for free, you better use Captcha lock option.


    Paiboon Limstit
    Participant

    Hi again,

    I noticed that the download link at the end of the last pack It should change automatically every time. This is also a way to prevent theft of download links. I recommend this section if in the future you will develop a way to prevent downloads from Chrome.

    https://shop.chiistudio.com/download/psd-test0001/?wpdmdl=1867&refresh=6443c3d258f7d1682162642


    Shahjada
    Keymaster

    If you want to hide download link effectively, you need to use a lock option. In your case you may use terms lock. However, we are soon update hide download link option to keep it totally hidden from search engines and bots.


    Paiboon Limstit
    Participant

    I used to buy your plugin but it’s expired. Now deciding whether to renew or not. Because I encountered one problem that was not solved.
    Want to know if your plugin can’t hide the download link, right? I checked in Chrome, can unpack the link.

    This is a test site that used to test your Download plugin. In Chrome you can see the source link. Which shouldn’t show a URL like this. You look at the code. I use elementor as my main tool.

    webtest:
    https://shop.chiistudio.com/

    Screenshort:
    https://1drv.ms/i/s!AifVBNS8N5OIg48L3YEt2HbkomQ9JA?e=dniIfm


    Pranav Shrestha
    Participant

    I’ve seen a similar post recently but I would like to also report that I’m having this issue.

    I’ve tried multiple types of reCAPTCHAs – v2 invisible, v3, and up until recently v2 clickable was working perfectly fine. The reCAPTCHA dashboard reports that the site is no longer verifying reCAPTCHA solutions. As far as I’m aware, nothing has changed and I’ve made sure the keys are all correct.

    Passing through the CAPTCHA seems to work but after a success, it merely displays “undefined” rather than the download link/button or initiating the download.

    #186126

    In reply to: Custom URL


    Trisha Miller
    Participant

    @Shahjada, I’ve already customized the link and page templates to create new defaults, and while it’s great that I can clone and then edit templates (yay!), I can’t find a way to specify the new templates to be used as my new “defaults” nor to bulk-edit my assets to specify the new defaults, it looks like I’ll have to manually edit my hundreds of downloads to do that…..sigh…

    BUT on THIS issue of the base URL, I see that in the plugin’s main file there are lines that setup the slug variable, in download-manager.php on line 289 there is this:

     $tslug = get_option('__wpdm_purl_base', 'download');
            if(!strpos("_$tslug", "%"))
                $slug = sanitize_title($tslug);
            else
                $slug = $tslug;

    and then a few lines further down, line 304, is the rewrite argument for the CPT that uses that variable.

    I tried commenting those out but then the plugin inserted “wpdmpro” into the URL and did NOT use my category. πŸ™

    I’ve already had to hack this file to add support for post_tags, which is critical for us, we can’t do without the Post Tags applied to each asset, so as long as I’m hacking it, can you tell me if you think this part of the code is causing the problem?


    Shahjada
    Keymaster

    The download button with wpdm_my_download short-code skips all lock options with default options. However, use template="link-template-id" with short-code, that will serve your purpose.


    Rowan Stewart
    Participant
    This reply has been marked as private.
    #186107

    In reply to: Custom URL


    Shahjada
    Keymaster

    in that case, you need to use regular post/page and add wpdm package shortcode there. Package information on page is customizable through link template

    Link Template

    However, plugin actually doesn’t offer that type of feature, it is just working as standard wp feature works with custom post type, ex: woocommerce.

    However, for extended customization support, please contact our Custom Upgrade Service team.

    #186104

    In reply to: Custom URL


    Shahjada
    Keymaster

    instead of download your can use different word in wpdm settings. However, base slug also totally removable. As, it is not a built-in feature with wpdm pro, it will require some code customization.

    Try using the following code:

    function wpdm_remove_base_slug($post_link, $post) {
        if ('wpdmpro' === $post->post_type && 'publish' === $post->post_status) {
            $post_link = str_replace('/download/', '/', $post_link);
        }
        return $post_link;
    }
    add_filter('post_type_link', 'wpdm_remove_base_slug', 10, 2);
    
    function wpdm_parse_request($query) {
        if (!$query->is_main_query() || 2 != count($query->query) || !isset($query->query['page'])) {
            return;
        }
    
        if (!empty($query->query['name'])) {
            $query->set('post_type', array('post', 'wpdmpro', 'page'));
        }
    }
    add_action('pre_get_posts', 'wpdm_parse_request');
    

    For extended customization support, please contact:

    Custom Upgrade Service

    #186058

    Tanvir
    Spectator

    Hi,

    Sorry for the delay.

    1. You can not do it. As your intention is to update groups, It is better to remove existing groups or packages to avoid conflicts before importing same packages.
    2.In bulk import excerpt field is not available. Instead of that you can use description field for contents. To show it you can create link template and use template tags to show the contents.

    Link Template

    Regards
    Tanvir

    #186056

    In reply to: Custom URL


    Trisha Miller
    Participant

    Hello Shahjada,

    Once again, thank you so much for a very quick reply and solution, I can confirm that following your last instruction did get everything back working fine.

    However, sadly it does not do what we need, and what the OP needs, which is to be able to remove the /download/ (or /downloads/) from the URL.

    Perhaps it might help if I explain our situation better…..

    We have had (for many, many years) a page titled “Downloads” (in our URL, it was http://www.oursite.com/downloads) on that page we initially just listed links to certain pages (posts, actually), each that had a blurb and something to download…it might be a user guide, or a map, or whatever, and the URL was “www.oursite.com/maps/thismap.pdf” or “www.oursite.com/user-guides/myguide.pdf”. Each individual page was optimized for that asset, and our main “Downloads” page was just a listing of links to those pages by category.

    Then a few years ago my boss said “we need to track how many people download those” so we switched to using a plugin, Download Monitor, which worked great, although it was a huge amount of work to move all our assets into it and swap out the links, but it worked.

    Then recently my boss said “we need to let visitors VIEW the download first, or print it, before they decide if they want to download it”. Great. Download Monitor won’t do that, so I searched for weeks and tested many other plugins, before settling on yours – it’s truly a great plugin – BUT we discovered after installing it and migrating all our downloads from Download Monitor into yours, that it added the /downloads/ into the URL and our main Downloads page no longer worked.

    So from the WP forum for the free version I was directed to the Pro version and told the Pro version would allow me to set the URL base myself.

    I need to be able to keep ONLY the category name in the URL – that is how our downloads have been indexed for years and I really don’t want to do redirects. I like that your plugin uses custom category so it could import the categories from Download Monitor also (that process was super-simple and very smooth). πŸ™‚

    BUT we’ve also always used post_tags to associate assets with content – so if I have a post about a product, and I have a user guide for that product, they get associated to the same page by tagging them both with the same post_tag.

    Since your plugin does not support using post_tags (you’ve removed that support on line 315 of the current version 6.3.3) which I had to change that line from “false” to “true” and comment out line 369 (so that the custom tags are not registered), and I keep good notes so that if/when I update to the next version I can make those changes again (I would encourage you to consider adding that as a choice to the Settings, to enable or disable support for Post Tags and maybe even other users might like support for Post Categories).

    I deeply appreciate your ongoing help to figure out this URL base thing, I’ve already spent weeks on this project and my boss is pressuring me to get our assets back online and available because it was a significant source of our traffic and it’s dropping every day I don’t have my downloads back.

    #186028

    In reply to: Custom URL


    Shahjada
    Keymaster

    #1. Change package url base slug to download/%wpdmcategory%

    Settings%20%E2%80%B9%20Download%20Manager%20%E2%80%B9%20WPDM%20PRO%20%E2%80%94%20WordPress

    #2. Save Settings
    #3. go to WP Admin Menu β–Ί Settings β–Ί Permalinks
    #4. Click β€œSave Changes” button.

    Everything will work fine then.

    #186024

    In reply to: Custom URL


    Trisha Miller
    Participant

    WELL I SPOKE TOO SOON!

    While the solution offered worked in the BACK END, where I could see that the base URL to my downloadable items (packages) did indeed change to include only the category name, which is good…..

    NOW NONE of my Pages are accessible on the front end – ALL content other than my home page goes to the 404 error page!

    EDITED TO ADD: After deactivating the plugin WPDM pro, now all pages get redirected to my home page, not good.

    I’ve reversed everything and flushed the cache (permalinks) several times and nothing is fixing it. I’m attempting to restore from my backup last night but this is truly disastrous. πŸ™

    #186016

    In reply to: Mobile Layout


    Shahjada
    Keymaster

    Try using different link template, there are lots of link templates for various use case, you can can create your own link template.
    Please follow the docs:

    Link Template

    Creating a new template

    #185987

    Hai RONG
    Participant

    the package works correctly with direct download. However, it comes to an error”β€” Invalid download link β€””, when “sending download link to mailbox” is enabled.

    After submiting, the user will receive an email with a download link. by clicking the link, it goes to a page”Promat 2023 ( PDF )
    Expires in 2 days 5 downloads remains
    ” with a download buttonhttps://101.132.174.255/wpdm-download/szA_56s9HuUv77kZiujZ7P72lld3rNlqM1bGUiL7m__t2MV2C1ou85OVNSaTYRUHiaWnWOOXKQzKEuWE_iG2Vb09Y1y6NKxHA_Dz2bWk9_1EzrTPHU6WI-bRMt8mXwXA, so everything looks okay so far.

    However, while clicking the button, it goes to an error”β€” Invalid download link β€”” @ https://101.132.174.255/?wpdmdl=20564&_wpdmkey=643cb6db1c2f6

    Could you please help to eliminate the error? Thanks!

    I am using using [wpdm_search_result cols=1 template="sample-link-template"]
    content for sample-link-template is as follows

    <div class=”media”>

    [icon]

    <div class=”media-body”>
    <h4 class=”media-heading” style=”padding-top: 0px;border:0px;margin: 0px;”>[page_link]</h4>
    [download_link]
    <i style=”margin: 2px 0 0 5px;opacity:0.5″ class=”icon icon-th-large”></i> [file_size] <i style=”margin: 2px 0 0 5px;opacity:0.5″ class=”icon icon-download-alt”></i> </div>
    </div>

    after searching, results are shown but both the title and download button are not working. Both are not clickable. I suppose these were generated by [page_link] and [download_link]

    How do I fix this?

    #185958

    Shahjada
    Keymaster

    We have found the issue, it is actually with download page, if you email direct download link, it will work fine. However, we shall fix it with the next update.

    #185944

    Hi there,

    I’m fairly new to using Download Manager. It looks like the link template button we were using on our website stopped working as reads that it expired.

    Could anyone provide some guidance on how to get this updated? We have a pro subscription.

    #185941

    Andrew Donnan
    Participant

    How can I use the short code feature to display all packages from particular category and have the link goes directly to the piece of contact I want them to download and not a separate page?

    This is what I’m using, where “evergreen-commentary” category contains several different pdf packages.
    [wpdm_category id="evergreen-commentary" template="link-template-card"]


    Shahjada
    Keymaster

    Here it is:
    [wpdm_my_downloads login=1 template=link-template-widget cols=2 cats=1]

    You had to add cats=1

    #185806

    Jason Levandoski
    Participant

    Updated to latest version of Download Manager now I have β€” Invalid download link β€” errors.

    -Jason

    #185804

    Humayon
    Spectator

    Hello,

    Thank you for your reply,

    First, please ensure that you are using the latest version of WPDM and the Archive add-on.

    Also, please use the valid shortcode parameter from the below link.

    WPDM Directory Add-on

    I have tested with this [wpdm_archive button_style="default" template="link-template-default" cols=1 category="apk,123124" items_per_page="10" orderby="title" order="ASC" login=1 last_state=0] shortcode and it worked well.

    Regards

    #185798

    In reply to: Error 500


    Nayeem Riddhi
    Moderator

    Hello Jason Levandoski,

    For β€” Invalid download link β€”, can you please open a new topic for your issue, please? we shall check it for you.

    Thank you again and regards

Viewing 25 results - 1,126 through 1,150 (of 9,401 total)