Josh Rudzek

Forum Replies Created

Viewing 24 posts - 1 through 24 (of 24 total)
Nov 27, 2024 at 4:18 pm
#201705
Participant
Josh Rudzek
OP

I have to do it this way. The file is generated daily by a different system and placed into the WP system daily. I know that I can have the file served by php easily and mask the URL. I just don’t know how to add the captcha which is why i needed your plugin.

I’ve tried 2x to get your custom team to make this work and no response. I shouldn’t have to pay extra though as this is the WHOLE point of your plugin. If the system doesn’t hide the url, than anyone can see it and continue downloading it outside of my system. Why would they continue to pay or how can I track download counts.

This seems like a bug that needs to be fixed.

Nov 27, 2024 at 6:25 am
#201654
Participant
Josh Rudzek
OP

The file is being auto generated to the wordpress environment. I used the url which is at example.com/autogenerated/EOD/file.pdf. The file is being stored in the WordPress root (autogenerated directory is in the same directory as the wp-content directory)

Nov 26, 2024 at 4:56 pm
#201646
Participant
Josh Rudzek
OP
This reply has been marked as private.
Nov 26, 2024 at 5:24 am
#201638
Participant
Josh Rudzek
OP

I have both settings off here. The user can still if their own browser is set to open in browser, see the actual pdf uRL. How do I fix this?

Nov 21, 2024 at 4:10 pm
#201593
Participant
Josh Rudzek
OP

no picture is attached, where do i go?

Nov 20, 2024 at 8:06 pm
#201567
Participant
Josh Rudzek
OP

Thank you for your reply. The image you posted isn’t loading.

I have package that uses a url for the file. I don’t want that file URL public.

I don’t want to need to change the download the slug necessarily, I want to change the link:

My file is blocked behind a captcha. when someone passes the captcha they get a new link to dl the file:

https://www.nodal.com/download/eod/?wpdmdl=29683&_wpdmkey=673e3e75b9213
the wpdmkey changes though sometimes:
https://www.nodal.com/download/eod/?wpdmdl=29683&_wpdmkey=673e1232636ce

Whats strange is that even after it changeds, both those links still download the file. (and all the other links with different wpdmkeys for that matter)

I want to make it so that the link changes and none of the others pull the file.

What is the wpdmkey by the way??

Jan 17, 2024 at 10:00 pm
#192517
Participant
Josh Rudzek
OP

has this update been released? I would love to not have to click 2x on mobile. Is there any way to get this request expedited?

Dec 13, 2023 at 8:16 pm
#191976
Participant
Josh Rudzek
OP

ack, I can’t wait that long…any chance you could tell me where to look to fix it temporarily, or just provide that code? PLEASE?

Dec 13, 2023 at 4:44 pm
#191972
Participant
Josh Rudzek
OP

When could I expect that update for the formatting. I was hoping to go live soon.

Also, I’m not sure what you mean by the 2x download not being an issue. could you explain?

Dec 13, 2023 at 4:28 pm
#191969
Participant
Josh Rudzek
OP

Hello?

Dec 12, 2023 at 4:04 pm
#191950
Participant
Josh Rudzek
OP

Thank you, I appreciate it.

Dec 11, 2023 at 10:54 pm
#191920
Participant
Josh Rudzek
OP
This reply has been marked as private.
Dec 2, 2023 at 8:38 pm
#191756
Participant
Josh Rudzek
OP

this is great. Thank you very much. Could you tell me what you did to fix it or what I had wrong?

Dec 2, 2023 at 5:50 am
#191737
Participant
Josh Rudzek
OP

nope. same actions.

Dec 2, 2023 at 4:39 am
#191724
Participant
Josh Rudzek
OP

Any luck on this fix?

Dec 1, 2023 at 7:14 am
#191708
Participant
Josh Rudzek
OP
This reply has been marked as private.
Nov 30, 2023 at 10:05 pm
#191703
Participant
Josh Rudzek
OP

Hi Humayon,
I have purchased and installed the pro plugin. I’m still not seeing the function working. I have clicked “open in new window”, unchecked “open in browser” and I have also additionally checked “Disable Auto Download”. Still though, when I check the captcha it automatically downloads in the same window.

Nov 21, 2023 at 4:37 pm
#191522
Participant
Josh Rudzek
OP

any luck?

Nov 21, 2023 at 5:05 am
#191507
Participant
Josh Rudzek
OP
This reply has been marked as private.
Nov 20, 2023 at 6:37 pm
#191495
Participant
Josh Rudzek
OP
This reply has been marked as private.
Nov 16, 2023 at 5:48 pm
#191397
Participant
Josh Rudzek
OP

Is there also a way to change the color/design of the loading icon that happens just before the captcha request appears?

Nov 16, 2023 at 3:55 pm
#191394
Participant
Josh Rudzek
OP
This reply has been marked as private.
Nov 15, 2023 at 11:18 pm
#191363
Participant
Josh Rudzek
OP

That worked. Thank you so much.

Nov 15, 2023 at 4:19 pm
#191358
Participant
Josh Rudzek
OP

Thank you for your help!

When I use this code:

<!– WPDM Link Template: Default Template –>

<div class="link-template-default card mb-2">
    <div class="card-body">
        <div class="media">
            <div class="mr-3 img-48">[icon]</div>
            <div class="media-body">
                <h3 class="package-title">[page_link]</h3>
                <div class="text-muted text-small"><i class="fas fa-copy"></i> [file_count] [txt=file(s)] <i class="fas fa-hdd ml-3"></i> [file_size]</div>
            </div>
            <div class="ml-3">
                [download_link]
            </div>
        </div>
    </div>
</div>

everything works.

When I try this code:

<!– WPDM Link Template: Default Template –>

<ul class="nodaljump docs">
  <li>
    <a href="[download_url]"><i class="red far fa-file"></i>[title]</a>
  </li>
</ul>

It loads visually but it doesn’t seem like the JS works.

it just refreshes the page.

Here is the displayed code:

<ul class="nodaljump docs">
  <li>
    <a href="#"><i class="red far fa-file"></i>Test File Upload</a>
  </li>
</ul>

The page you referenced said that shortcode [download_url] will only work if no lock is applied. I’m using the captcha lock…which is the whole point of for me of using the plugin.

Viewing 24 posts - 1 through 24 (of 24 total)