Search Results for 'download link'

Viewing 25 results - 6,551 through 6,575 (of 9,382 total)
  • Author
    Search Results
  • #50425

    In reply to: Mouseover Video Play


    gregg4951
    Member

    yes, none of the following youtube shortcodes work whether in a page or a Download Manager link template or page template:

    [youtube_thumb_0]
    [youtube_thumb_1]
    [youtube_thumb_2]
    [youtube_thumb_3]
    [youtube_player]


    Jhorene
    Member

    Hi Shaon,

    Thank you for the reply.

    Yes sorry you are missing what I meant, just go one step further from the /client-dashboard page and click on the package link, and you will see it’s a blank page with only the title of the package – nothing is showing if I remove the shortcode [wpdm_my_downloads login=1] from the packages content?

    Also, if I do put back the shortcode inside the packages I can see the files I uploaded via FTP and it’s super important that I keep the folder structure I have from my FTP folder so I have made Link Template ‘3 columns detailed’ but once I click on the folders links or the Browse buttons they are empty, nothing shows. What am I doing wrong?

    Please-please assist me to get this working the way it should.

    Thank you in advance.

    Regards,
    Jhorene

    #50362

    Shahjada
    Keymaster

    Hi, actually password doesn’t have any relation with the download process, it totally depends on your server and php settings, please give me temporary link and temporary wp-admin login info in a private reply to check.

    #50361

    In reply to: setup


    Shahriar
    Moderator

    Hi,

    You need Crypton theme to make that exact design like screenshot 2.

    First screenshot uses ‘3 Columns, Detailed’ link template. When inserting download shortcode use that link template.

    To insert shortcode easily use TinyMCE addon.

    Let me know if you have any more question.

    Thanks.

    #50327

    MTT-Sweden
    Member

    I have the excact same question. Using form-lock and ninja forms there is no valid download link neither on the page nor sent by email.

    I didn’t expect the form to replace the link but to appear after clicking on the link like for the password lock. Can this be done somehow?

    #50326

    In reply to: Links 404, Not found..


    Tommi
    Member
    This reply has been marked as private.
    #50296

    teknarus
    Member
    This reply has been marked as private.
    #50287

    dshank
    Participant

    My link template on a category page has a formatting issue when the user doesn’t have permission to download the document. It looks like this:

    https://www.dropbox.com/s/g5oirm5618fnsjm/Screenshot%202016-10-24%2000.48.46.png?dl=0

    How can I fix the height of the red error image so that the “Login required to access this file” is fully visible?

    Thanks.

    #50263

    In reply to: Links 404, Not found..


    Tommi
    Member
    This reply has been marked as private.
    #50261

    Tommi
    Member

    I still have some problems with a few links in Control panel of Download Manager.


    Marcie
    Member

    I’m using the Form Lock add-on; I integrated it with Ninja Forms, and I’m using it for multiple files. However, when a user hits the submit button on the form to get the file download, the page reloads and anchors to the top of the page. The form is closed, so the user doesn’t know if they have successfully submitted the form unless they scroll down and click on the download link again.

    Any ideas on how I can get the page to stay anchored to the same spot on the page where the link is located after they hit the submit button? I’ll send the URL in a private reply so you can test firsthand.

    #50226

    Jhorene
    Member

    Hi,

    I’m using the Mobilz theme from themeforest and the Blog settings has the option to ‘Share posts on social platforms’ and now I’m seeing these links also on the Download Manager pages. So it’s probably something to do with the fact that it’s using the post.php file.
    How can I have the Download manager pages not have the social links on it? The information is private and confidential for each client so it cannot be shared.

    Thank you for your help.

    Regards,
    Jhorene

    #50212

    Hello,

    We are having an issue with Package Links going to a certain page. We have a Request for Service Page. Packages that start with Request in the title, the link does not go to the package template but to the page instead. The download link however works.

    We’ve tried switching to default link and package templates to rule out any other issues.

    Any ideas?

    #50203

    Shahriar
    Moderator

    Hi,

    We didn’t update the plugin recently. Which past version you have that works? Please mail a copy of it (zipped) to support@wpdownloadmanager.com and a link to this topic.

    Thanks.


    Jhorene
    Member

    Hello,

    I have tried adding the directory to my package which I uploaded inside /wp-content/clients/[name-of-client] and then also created the user via the WordPress admin panel and assigned access to only this user.

    i have also added this shortcode below my dashboard page so only the specific user can see it’s sepcific package – [wpdm_my_downloads login=1]

    It shows the user and it shows the directory but when I login on the front-end as the user, it doesn’t show me the directory name and it’s folders/sub-folders. What am I missing here? Should I create a category first, is that necessary if you link a directory?

    Thank you in advance.

    Regards,
    Jhorene

    #50178

    desafio
    Member

    Hi! We have upgrade the WPDM and also the Directory Add-on but we have again the same search issue we discuss in this past post:

    Serch on description text

    If we ‘rescue’ the past wpdm-archive-page plugin, it works, but it is not upgraded. Can you please check what happens? Refer to the link above to remember the scenario.

    Thanks in advance,

    #50162

    In reply to: Email lock config


    Shahriar
    Moderator

    1) Looks like language file has not been updated, although those texts are translation ready. We will update language file in next release. You can edit those texts from /download-manager/libs/class.PackageLocks.php for now.

    2) Enable AJAX load for lock options from WPDM Settings Frontend page. Or Try answer ( 3 ) [ Assuming you set up captcha correctly ]

    3 ) Create a custom Link Template and use [download_link_extended] template tag in link template instead of [download_link]

    4 ) What was the issue with page template?

    #50151

    agencyten
    Participant

    Hi,

    We are encountering an infinite loop caused by a filter added to the “the_content” hook called wpdm_archive_page_template in file wpdm-functions.php.

    On line 1630:

    
    $data = wpdm_setup_package_data((array)$post);
    $data['version'] = isset($data['version']) && $data['version']!=''? $data['version']: '1.0.0';
    //$data['download_link'] = str_replace("<a","<a style=\"padding:5px 10px;min-width:auto;font-size:8pt;\"", $data['download_link']);
       if(get_post_type()=='wpdmpro'){

    Is it possible to move the $data variable initialization to be inside the if block if(get_post_type()=='wpdmpro'){ the $data variable is not used anywhere outside that if block and it’s what is causing the infinite loop. So the code looks like this:

    if(get_post_type()=='wpdmpro'){
          $data = wpdm_setup_package_data((array)$post);
          $data['version'] = isset($data['version']) && $data['version']!=''? $data['version']: '1.0.0';
        //$data['download_link'] = str_replace("<a","<a style=\"padding:5px 10px;min-width:auto;font-size:8pt;\"", $data['download_link']);
    #50137

    Shahriar
    Moderator

    Hi,

    Use link template panel 1-3 when inserting shortcode. Check following shortcode’s link_template parameter.

    [wpdm-archive button_style="inverse" link_template="link-template-panel-1-3" order_by="post_title" order="asc" items_per_page="10"]

    This shortcode is from demo page.

    You can use TinyMCE addon to insert shortcode easily.

    Thanks.

    #50082

    Tommi
    Member

    How can i set price for the download links. No settings. And no short codes for that.

    #50069

    Taylor Grant
    Member

    I created the following link template to use in the accordion:

    <div class=”media”>
    [icon]
    <div class=”media-body”>
    <div class=”media-heading”>[title]</div>
    File Size: [file_size]
    </div>
    </div>

    Every file displays the same File Size (904.59 KB). Is this the same problem as above?

    #50052

    In reply to: Download only


    Shahriar
    Moderator

    Hi,

    You need custom link template to prevent going to details page when clicking package title.

    Clone the link template you are using now and replace [page_url] template tag with [download_url]

    Read more about creating new template

    Send me a link of your page to suggest css to remove quotations. It is coming from your theme or another plugin.

    Thanks.

    #50007

    In reply to: Remove "Stock"


    Shahriar
    Moderator

    Yes, you can remove it.

    You need a custom Link/ Page Template.

    Clone current template you are using and remove stock from there.

    You can read more about template here.

    Thanks.


    Jass
    Spectator

    Hi,
    Are you asking for number of item to view in a page?
    You can try this short-code
    [wpdm_category id="test," toolbar=0 item_per_page=15 template="link-template-default.php"]

    Easy way to create short-code you can use http://www.wpdownloadmanager.com/download/advanced-tinymce-button/ plugin.
    Thank you

    #49956

    In reply to: Open URL in New Window


    Shahriar
    Moderator

    Hi,

    You need custom link template to open link in new tab. Use following code in your custom link template to open file in tab,

    <a target="_blank" href="[download_url]">[title]</a>

    If you are referring to some other use case, please send me the url and temporary login info in private reply. I will add it there.

    Thanks.

Viewing 25 results - 6,551 through 6,575 (of 9,382 total)