Search Results for 'Add Url'

Viewing 25 results - 1 through 25 (of 1,678 total)
  • Author
    Search Results
  • #211159

    Courtney Huber
    Participant

    Hi, I’m trying to create a page template that will allow us to show multiple videos. We have packages where we have more than one Vimeo or Wistia video that we are inserting via URL, but all of the page template tags I have tried are only displaying the last video in the package on the page. I’ve tried testing with YouTube too and that also doesn’t work. Is there a way for the [video_player_1200x600] tag to display multiple videos stacked on top of each other?

    Additionally, we are running WPDM version 7.2.1 and I see instructions to set a default page template here: https://www.wpdownloadmanager.com/doc/core-features-templates-page-templates/ but when I go to Downloads > Settings > User Interface, I don’t see an option for Default Page Template as specified. Can you assist?


    jaypromarketing
    Participant

    Hello,

    When using the file cart add-on, I can add a file to my cart from an externally linked URL, but when I download the ZIP file, the externally linked URLS do not download. Is there a fix to this, or do the files need to be hosted on the same server? Thank you


    Artio Oy
    Participant

    in free version 3.3.45, we have next settings, and feels that adding customer role to this list doesn’t have any effect.

    View post on imgur.com


    Failed to attach image to this forum, so thus imgurl.

    #210782

    emendesign
    Participant

    Actually, no that is not the issue. It shoots a critical error just going to the add file url I had provided.

    #210781

    Tahasin
    Moderator

    Hello,

    Thanks for reaching out.

    Are you referring to the issue where, after creating an author dashboard/front end using the WPDM–Elementor add-on, adding a URL triggers a fatal error?

    I look forward to your response.
    Regards


    emendesign
    Participant

    Hello,
    I’m getting a critical error on Download Manager Pro on the Front End when using the add new url, /front-end-editor/?adb_page=add-new.

    Everything is updated. Using WPDM – Elementor and WPDM – Extended Short-codes for add-ons.

    Please let me know what it might be.

    Thanks.


    Tahasin
    Moderator

    Kindly share wp-login credentials and related download URL in a private reply to check the issue thoroughly. If the Rename New file is enabled then it will add 785940404wpdm_ before the file names.

    #210673

    In reply to: S3 Plugin Issue


    Arianna Bellizzi
    Participant
    This reply has been marked as private.
    #210549

    Lia Dossin
    Participant

    Hello,

    Clearing the cache worked and the modal windows appear now.

    For the link this is what I did and I got it to work. I am using Avada builder so I needed to get only the necessary base elements so I could use the fusion builder buttons.

    1. Image below I copied the direct URL Download link.
    Where to get the link to the direct download URL

    2. Then I needed the package ID
    where to find the package ID

    3. Required class for Email Locked URLS `class=”wpdm-download-link wpdm-download-locked

    Once I had all these elements I could create a button in Avada and add the necessary information and the email prompt worked perfectly.

    #210493

    In reply to: S3 Plugin Issue


    Arianna Bellizzi
    Participant
    This reply has been marked as private.
    #210367

    In reply to: S3 Plugin Issue


    Arianna Bellizzi
    Participant

    Additional Findings (Related JavaScript Error Impacting Upload Context)

    While investigating the autosync issue, we identified a separate but related JavaScript error on the standard post edit screen (/wp-admin/post.php?action=edit) where WPDM packages are edited. The WPDM Amazon S3 add-on script picker-controllers.js throws a fatal error (Uncaught ReferenceError: ajaxurl is not defined), which prevents the S3 picker and upload logic from executing on that screen. Uploads work correctly on the WPDM S3 admin page (edit.php?post_type=wpdmpro&page=wpdm-aws), where ajaxurl is properly defined. This indicates the add-on is relying on ajaxurl being globally available, but it is not defined in all admin contexts (notably post edit screens in multisite). As a result, uploads initiated from the post editor never complete, and therefore never enter the autosync pipeline, which may partially explain why autosync appears nonfunctional for new uploads despite working credentials and UI connectivity.

    I also confirmed that the test site had been autosyncing when I tested it October 25, 2025. Previously I had reached out about the S3 bucket not showing through the plugin, though the objects were syncing. Now the opposite is true.


    Tahasin
    Moderator

    Hello,

    I hope this message finds you well.

    Could you please share the related URL in a private reply so that we can review the Add to Cart button?

    Regards

    #210102

    etc
    Member
    This reply has been marked as private.

    Tahasin
    Moderator
    This reply has been marked as private.
    #209880

    axel galan
    Participant

    Hello,

    We are using WP Download Manager Pro + the Newsletter Addon to send document update notifications. The system works, but we are experiencing a major issue with the email batch size and cron frequency.

    Symptoms
    • The addon only sends 8 emails per execution, regardless of how many recipients are pending in the queue.
    • In Campaign → General Settings → Advanced Settings we have:
    • Max Emails Per Hour = 250
    • PHP Max Execution Time = 120
    • Our VPS server has:
    • max_execution_time = 120
    • memory_limit = 128M
    • The server cron runs every 5 minutes:

    */5 * * * * /usr/bin/curl -s https://qhseonline2.otimexico.com/?cron_handle=1 >/dev/null 2>&1

    We confirmed it works (we log each run to a file every 5 minutes).

    • We also manually triggered:
    https://qhseonline2.otimexico.com/wp-cron.php?doing_wp_cron
    https://qhseonline2.otimexico.com/?cron_handle=1
    • In both cases, no emails are sent unless a full hour has passed since the last batch.
    • Exactly when the hour is completed, running the cron again sends another 8 emails.
    • Using WP Mail Logging, we always see blocks of 8 emails per hour — never more.

    Additional Tests We Have Performed

    We also added a custom 5-minute cron schedule in our child theme:

    add_filter(‘cron_schedules’, function($s){
    $s[‘every_5_minutes’] = [‘interval’►300, ‘display’►’Every 5 Minutes’];
    return $s;
    });

    add_action(‘init’, function(){
    if ( wp_next_scheduled(‘wpdm_email_queue_event’) )
    wp_clear_scheduled_hook(‘wpdm_email_queue_event’);

    if ( ! wp_next_scheduled(‘wpdm_email_queue_event’) )
    wp_schedule_event(time()+60, ‘every_5_minutes’, ‘wpdm_email_queue_event’);
    });

    We also recreated campaigns, increased limits, and checked PHP settings, but the behavior never changes:
    • Only 8 emails per run
    • Only one run per hour actually sends emails

    Questions
    1. Does the Newsletter Addon have any internal hard-coded limit of
    • 8 emails per batch, OR
    • one batch per hour,
    regardless of “Max Emails Per Hour”?
    2. Is there any other setting (global or campaign-level) that controls:
    • the batch size,
    • email queue processing frequency, or
    • the behavior of wpdm_email_queue_event / ?cron_handle=1?
    3. What is the correct and supported method to make the addon process the queue every 5 minutes, while respecting a limit such as 250 emails per hour?
    4. Are there any known bugs or compatibility issues with

    #209686

    Tahasin
    Moderator

    Hello,

    Thanks for reaching out.
    We haven’t made any changes or moved the doc_preview template tag to a new add-on. The [doc_preview] tag still works without any additional add-on.

    Could you please share the related URL in a private reply so we can check the issue for you?

    Regards


    Tahasin
    Moderator

    Hello,

    Thanks for reaching out.

    You can do it manually in this way:

    <a href="//your-site-url/?wpdmdl=[ADD_FILE_ID]">[your custom button image or text]</a>
    Or, use short-code:
    [wpdm_package id="[ID]" template="link-template-button.php"]

    Regards

    #209559

    Joel Goldstein
    Participant
    This reply has been marked as private.

    Nayeem Riddhi
    Moderator

    Please use this code snippet in your active theme functions.php file ,

    /**
       * Add download link actions for editors in Download Manager packages
       */
      function add_download_actions_for_editors($actions, $post) {
          if ($post->post_type == 'wpdmpro' && current_user_can('editor') && !current_user_can('manage_options')) {
              if ($post->post_status == 'publish') {
                  $actions['download_link'] = '<a title="' . __( "Generate Download URL", "download-manager" ) . '" href="#" class="gdl_action w3eden" 
      data-mdlu="' . WPDM()->package->getMasterDownloadURL( $post->ID ) . '" data-toggle="modal" data-target="#gdluModal" data-pid="' . $post->ID .
      '"><i class="far fa-arrow-alt-circle-down color-purple"></i></a>';
              }
    
          }
    
          return $actions;
      }
      add_filter('post_row_actions', 'add_download_actions_for_editors', 20, 2);

    Thus I hope it will resolve your issue then. Please kindly check.

    Thank you

    #209332

    Masanobu Soma
    Participant

    When I updated only the image URL for one item in this file and imported it again, the data was added to both items instead of being updated. Could you please provide some sample data for updating?

    https://www.wpdownloadmanager.com/wp-content/uploads/2020/06/sample.csv


    Masanobu Soma
    Participant
    This reply has been marked as private.

    WMD
    Participant

    Hello WPDM Team,

    I recently renewed my WPDM license (version 6.8) and was alerted to this new system and that I was “awarded tokens” (NTCR / NetCred) as part of the plugin’s reward mechanism. I have serious concerns about this integration, particularly around the possibility that my information or my clients’ information is being shared with a third‑party (e.g. netcred.io) without explicit consent.

    To clarify and protect my operation and client trust, I kindly request the following:

    1. A full description of exactly which data fields (domain names, license keys, email addresses, client info, usage statistics, etc.) are being transmitted by the token module, and to which external domain(s).

    2. The endpoint URLs / servers to which data is forwarded (if any).

    3. Whether there is an opt-out or disable switch that I, or you via configuration, can use to prevent any such data sharing, requests, or token hooks from executing.

    4. If you can provide a version or mode of the plugin that omits or disables the token integration entirely (i.e. “token‑free mode”) so that no references to NTCR/NetCred appear anywhere within the WPDM system that our clients can see.

    5. Assurance in writing that no client or site user data will be disclosed to any third parties beyond what is necessary for legitimate plugin operation (e.g. license verification).

    If these cannot be satisfied, I must treat the token integration as a security and privacy liability and will consider migrating to a plugin that does not incorporate crypto/reward systems.

    Thank you for your prompt response and clarity on this matter.

    Regards,

    </k>


    Nayeem Riddhi
    Moderator

    Hello Glenn Watson,

    Hope you are well. You can use Email lock for protecting also sending download link via email, you can check details of other locks here too, https://www.wpdownloadmanager.com/doc/add-new-package/lock-options.

    You can also keepDownload Link Expiration Period from settings for more protected. And you can keep attach file directly with your file/package not attaching media or other service storage files, then by URL they can’t be accessed.

    For selling products you can use our this add-on, it is free, https://www.wpdownloadmanager.com/download/premium-package-wordpress-digital-store-solution/. It has also comprehensive features. Please kindly check here.

    And we don’t limit upload size, what you are seeing it is coming from info. from server. you can adjust upload size from your settings or server as per your needs. Please kindly check.

    Thank you

    #208954

    Thank you for the quick replies, unfortunately updating didn’t resolve the issue

    PHP Fatal Uncaught Error: Call to a member function get_page_permastruct() on null
    Stack trace:
    #0 /wp-includes/link-template.php(397): _get_page_link(Object(WP_Post), false, false)
    #1 /wp-content/plugins/download-manager/src/User/Login.php(322): get_page_link(Object(WP_Post))
    #2 /wp-includes/class-wp-hook.php(324): WPDM\User\Login->loginURL(‘https://profoun…&#8217;, ”, false)
    #3 /wp-includes/plugin.php(205): WP_Hook->apply_filters(‘https://profoun…&#8217;, Array)
    #4 /wp-includes/general-template.php(467): apply_filters(‘login_url’, ‘https://profoun…&#8217;, ”, false)
    #5 /wp-content/plugins/translatepress-personal/add-ons-advanced/seo-pack/includes/class-slug-manager.php(1408): wp_login_url()
    #6 /wp-includes/class-wp-hook.php(324): TRP_IN_SP_Slug_Manager->verify_if_is_admin_link_for_slug_translation(false, ‘https://profoun…&#8217;)
    #7 /wp-includes/plugin.php(205): WP_Hook->apply_filters(false, Array)
    #8 /wp-content/plugins/translatepress-personal/add-ons-advanced/seo-pack/includes/class-slug-manager.php(1353): apply_filters(‘trp_is_admin_li…’, false, ‘https://profoun…&#8217;)
    #9 /wp-includes/class-wp-hook.php(324): TRP_IN_SP_Slug_Manager->translate_request_uri(”)
    #10 /wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array)
    #11 /wp-includes/plugin.php(517): WP_Hook->do_action(Array)
    #12 /wp-settings.php(578): do_action(‘plugins_loaded’)
    #13 /wp-config.php(97): require_once(‘/data/sites/web…’)
    #14 /wp-load.php(50): require_once(‘/data/sites/web…’)
    #15 /wp-blog-header.php(13): require_once(‘/data/sites/web…’)
    #16 /index.php(17): require(‘/data/sites/web…’)
    #17 {main} thrown in /wp-includes/link-template.php on line 435
    WordPress core
    File: /wp-admin/link-template.php
    Line: 435

    #208895

    Can I safely share the login details here? For now I implemented this snippet. It seems to solve the problem but it surely isnt ideal.

    add_filter(‘login_url’, function ($url) {

    // Stop any remaining callbacks from running on this hook

    remove_all_filters(‘login_url’);

    return $url;

    }, PHP_INT_MIN, 3);

Viewing 25 results - 1 through 25 (of 1,678 total)