Search Results for 'all+downloads'

Viewing 25 results - 626 through 650 (of 4,422 total)
  • Author
    Search Results

  • jdh1178
    Participant

    Yeh, actually just testing this now and using the getOrder filter won’t work at all for this case unfortunately. The order page is set to Complete because get order runs when loading the page which I didn’t notice at first try.

    The page should be expired and all the messaging / logic should remain expired (for renewal actions, upsell etc.). However, it should allow for downloads instead of blocking them in the wpdmpp download() function validity checks. So, unintended consequences using a general filter on order seem unavoidable.

    For example (with filter in ‘download()’):
    – User goes to order details
    – User sees ‘account expired’
    – User sees prompts to ‘renew’
    – User sees download buttons
    – Clicks on them and gets a list of all downloads available up until the expiration.
    – User clicks download, the download() apply filter on the order data kicks in
    – $odata gets set to ‘complete’ and ‘expire date’ is in future so user is allowed to download
    – $odata isn’t’ passed anywhere from that function so it dies there (I think).

    With filter using getOrder:
    – User goes to order details
    – Page is set to Complete (not expired), so they are served everything as if they ‘completed order’
    – User doesn’t see renewal instructions etc.

    Also it becomes impossible to work around with other solutions like store a global and ‘reset back on before download’ because you can’t ‘getOrder’ again without running the filter again so you end up in a loop.

    #184797

    Rita
    Member

    Hi there,
    I would like to add an no index tag to specific download packages. Since I’m not sure if this is possible I got to the second best option: to avoid indexing in the first place.
    I added a section at the very end of the functions.php of my Attire-Theme (below). Moreover I chose “Mask Download LinK” in Downloads > Settings > Basic.

    1. Did I do this right? If so, is there a way to test it before waiting for the google bots?
    2. Generally is there a smarter way?

    Thanks and Regards!

    // 404 page
    echo ‘

  • ‘ . ‘Error 404’ . ‘
  • ‘;
    }

    echo ‘‘;

    }
    }
    }

    new AttireBase();

    function noindex_for_wpdm()
    {
    if ( is_singular( ‘wpdmpro’ ) ) {
    echo ‘<meta name=”robots” content=”noindex, nofollow”>’;
    }
    }


Shahjada
Keymaster

You’re welcome.

BTW, in case you missed it, wpdm premium packages plugin has an interesting feature, we added recently, you can create payment link even without creating new product, we call it dynamic product. It was added recently. It may come handy in your any future project :).

Cursor%20and%20Downloads%20%E2%80%B9%20WPDM%20PRO%20%E2%80%94%20WordPress

However, let us know if you need any other assistance :).


Casper Bjerg
Participant

Hi WPDM

We often get requests from clients, who cannot see the preview of our PDF-files, but instead just sees the source code in a frame.

We just had a new incident on this page: https://lyngdorf.steinwaylyngdorf.com/downloads/lyngdorf-catalogue-2022/ – when I view it the PDF file shows nicely with a preview, where I can scroll through the PDF without having to download it.

But often the visitors see it as this https://www.itchmarketing.dk/hubfs/Skrald/image002.png

We’ve been troubleshooting it internally. It happens across all browsers, both Chrome, Edge and Safari (100% updated).

Could you help us solve this problem?


Shahjada
Keymaster

Sorry, actually my fault, I thought you were trying to expire order as soon as user downloads an item.
However, please use this:
Cursor%20and%20wpdmpro%20%E2%80%93%20Order.php

We have added the hook for the next update.


John Gwinner
Participant

We just went through a mess of an update, our website was down briefly, but everything – and I mean everything – is now up to date.

PHP64 version 7.4
Download Manager version 6.3.1
WordPress Amazon S3 Storage Plugin version 3.1.1 (in the list it’s the WPDM – Amazon S3)
WPDM – Elementor version 1.2.2
WPDM – OneDrive version 1.0.1
Wordpress 5.7.8 – ok, that’s not updated. Does WPDM need 6.1.1?

Note that the first two are paid for and licensed, in my current account. However, the S3 Storage Plugin doesn’t show up as registered on this page: Downloads->Add Ons. This happened when I removed it while upgrading and added it again.

Downloads -> Settings -> Updates shows wpdm-amazon-s3.zip shows version 3.1.1 activated.

However, if I go to “All Packages” or “Add New” and then click on “Select from Amazon S3” an initial screen comes up, but then just hangs.

So, we can’t post our update, and the media is upset with us 🙁

Other stuff:
Elementor / plugins all updated
Elementor Pro (I just purchased it, a previous website dev had installed it)

Site used to work fine a year ago when we made a download link.

The site is https://www.dworldvr.com

Please help! Thank you.

== John ==

#184689

mark wright
Participant

Downloads work for logged in users but non logged in users get file expired message to public ie available all files

#184591

Tanvir
Spectator

Hello,

Thanks for your reply.

1. You are welcome.
2. If any user is assigned to any file, then he will automatically visit the downloads from frontend
3. You can view it from front end. You can set the allowed users to manage files from the below setting. So, user will be able to view/manage pending files from the page that is created using [wpdm_frontend] shortcode
image

Allowed user role will see those like below:
image

Also as an admin you can manage it from your wordpress dashboard

Let me know for further assistance.

Regards
Tanvir

#184515

Tanvir
Spectator

Hello Floriana,

Thanks for the details.

1. updated the template file in child theme. in download-manager directory there. it hides the last 5 downloads
2. For sharing file specifically with user you need the below addon. Then there will appear a menu My Downloads. Clicking that will show the assigned downloads

Advanced Access Control

3.Pending downloads can be viewed from all items menu.
image

Regards
Tanvir


Leviathan Srl
Participant

I’ve installed the webhook add-on and view downloads, but I also need to see who downloaded the user and their registration data.

I created a registration form that extracts various data, and it would be useful to report them in the spreadsheet that I have once the download request has been sent (always to a user already logged in)

#184444

jdh1178
Participant

I’d like users to be able to download the latest version of a product they owned at the time their access to it expires, regardless if their access expired or not. In other words, users access expires at version 1.1, then version 1.2 is released. User should still have access to version 1.1, but not have access to v1.2.

Currently, I believe a only solution for this is to:
– 1. Use unique attached files for each version update
– 2. Store the version info / ids of the files against the user account meta with each version update if the user’s access hasn’t ended. If it has ended, don’t store info against their accounts.
– 3. Before allowing access to a download, check what versions the user has access to and display only the versions they have access to by checking the meta data stored against their user account.

I believe this solution will work, but I’m not sure if updating meta for each user’s account each time their is a product update is an efficient solution if there are many users. Maybe not a huge issue, but seems a bit hacky.

Is there a better way about it or something built in I’ve missed? I know there is version/date for a file that’s attached, but changing that and granting access only to that version if their account has access would mean they wouldn’t be able to access previous versions they owned at the time their account expired. I don’t want users to get cut off from downloads if there account isn’t up-to-date, I just don’t want them to have access to updates that came after their account expired.

Thanks


Jahdiel Mafukidze
Participant

I want to show top downloads on a page with Link template :- call to action 4.I want options to change the number of columns per device. I cant seem to do that using WPDM top downloads for Elementor as there are no options to set this display. I can alternatively use the Packages plugin for Elementor but I don’t see how I can put the top downloads parameter on the parameters available.

#184351

In reply to: Mollie payment system


E.S. Kortsmit
Participant

Indeed it is still not possible to pay a membership with Mollie.
Can you tell me how long the customization will take?
Will it be working again soon?

So if I understand correctly. A Memebership for downloads can only be payd with paypall at this moment, right?

#184350

Tanvir
Spectator

Hello,

I have inspected the issue. You need to create a separate single post type for wpdm. There you need to remove the sidebar for downloads template.
single-wpdmpro.php
the template for custom post type “wpdmpro”, will show WordPress Download Manager Package details when you open a WordPress Download Manager package URL. Usually, you can create a copy from single.php and rename it to single-wpdmpro.php in active theme directory.

Let me know for further assistance.

Regards
Tanvir

#184324

Wyatt
Member

When trying to download some files, I am getting this error repeatedly, especially on Chrome browser:

Warning: Illegal string offset in /public_html/wp-content/plugins/download-manager/libs/class.DownloadStats.php on line 27
Can you please advise:

Site: https://www.pnicorp.com/
Wordpress: 6.1.1
Download Manager: Version 4.6.2

Thank you

#184288

Anand Sagar
Participant

HI, we purchased Special package but within downloads, we are not seeing BUDDYPRESS integration plugin

Pls enable access to all plugins


Lynda Caroline
Participant

After more investigation we think it is a conflict between the updates with this plugin and the memberpress plugin we are using. Currently transferring all downloads over to the memberpress download manager as this addon is integrated to memberpress. We have 176 files to transfer over! No further investigation on your end on our behalf is required, but thank you for your prompt response.

#184207

Int Marine
Member
This reply has been marked as private.
#184070

Int Marine
Member
This reply has been marked as private.
#184044

In reply to: Shortcodes not working


Shahjada
Keymaster

Hi,
That page built on Gutenberg using the following plugins and blocks:

Theme:
WP Attire – https://www.wpdownloadmanager.com/download/attire-allinone-wordpress-theme/

Plugins:
1. Attire Blocks – https://wordpress.org/plugins/attire-blocks/
2. WPDM Gutenberg Blocks – https://wordpress.org/plugins/wpdm-gutenberg-blocks/

Blocks:
1. Section
2. Call to Action
3. Category Card
4. Heading
5. Paragraph
6. Packages
7. Post Grid

But category page like this [private]https://www.morsemicro.com/downloads/datasheets/[/private] totally depends on theme.

#184020

In reply to: Error 500


Jason Levandoski
Participant

1. We know there needs to be a bug fix from earlier in the thread. Clicking a single download from Package was creating a zip even though I did not click the Zip button. This was creating huge loads on the server for no reason resulting in the original 500 and timeout error..

2. The Download Count Limits and Expiration Date is not followed for Form Locked Packages.
Right now Form Locked seem to be set to 3 downloads.. If a package has more than 3 files, the person needs to do several Form Submissions to get all files.. That is not good..

3. Lack of Scrolling in FormLock link page – Which you provide partial fix.

4. There should be a way to turn the ZIP Package button on and off at the package level. Some packages with small files, a Zip would be great. However, a package with large files, a zip is not good.. Right now your partial fix has totally disable ALL zip which is not so great at all..

-Jason

#184015

Shreek Raivadera
Participant

OK, i got the above shortode from here

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

[wpdm_category id="Category Slug or Slugs" operator="IN" title="Custom Title Here or 1" desc="Custom Description or 1" toolbar="1" paging="1" orderby="field name" order="asc or desc" items_per_page="10" template="Template ID" cols=4 colspad=2 colsphone=1 async=1]

And am working on creating a template that fits my needs, thanks


Imr Ta
Participant

Hi there,

We have downloaded and tried to twice install the plugin as per the link and it now shows that the 6.2.9 ( 1.9.6.) installed.

We have re-cleared the cache with Purge SG Cache but we still see a spinning download

See here : https://healtheducationpartnership.com/free-resource-downloads/

Any more ideas please? The client is not at al happy with the product and its inconsistencies, as it has now been over 6 weeks

Regards

#183913

Humayon
Spectator

Hi,

Thank you for your reply.

Can you please share the demo page URL so that we can provide you with accurate information?

Also, please use the link template ID in the template parameter. Example: template=”link-template-default”

You will more details in our documentation.

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

Regards

#183890

TEEG
Member

Hi Shahjada,

Thank you, however when I installed the update from inside the site, it uninstalls the old version but doesn’t install the new version. It removes the plugin entirely. I had to upload / reinstall the old version.

I tried the update from the WordPress updates, and the plugins page and from the Download Manager/settings/updates.

From the WordPress updates and plugins page, I got a success message but as soon as I refreshed the update was back. From the Download Manager updates, it uninstalled. I was offered an install button and then a success message but the plugin was uninstalled.

I also tried downloading from our Download Manager downloads area and uploading that but it’s still the old version.

Regards,
TEEG web team

Viewing 25 results - 626 through 650 (of 4,422 total)