Search Results for 'download link'

Viewing 25 results - 6,501 through 6,525 (of 9,326 total)
  • Author
    Search Results
  • #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.

    #49948

    In reply to: Form Lock Issue


    gilberteid
    Member

    I am using formidable forms, and whenever a user submits the form, he receives 3 download link emails from the system. How can fix this issue to make the system only sends 1 download email link, not 3 duplicates.

    #49943

    In reply to: upgrade cost error


    Shahriar
    Moderator

    Hi,

    I sent the payment link only for All Addons pack.

    You can renew E-Commerce Pack from dashboard. If renew link does not work, use following link to complete E-Commerce pack payment,

    https://www.2checkout.com/checkout/purchase?sid=1560048&quantity=99&product_id=11

    Unlocked your key from old domain. When using WPDM in localhost don’t apply the license key. Use the key in Production.

    Thanks.


    ravenswood
    Member

    regarding fatal error, WPML say this:

    Until this point, WPML works great.

    Now what happens next is in

    /plugins/download-manager/tpls/wpdm-be-member.php

    line number 81 is calling

    get_permalink(get_option('__wpdm_user_dashboard'));

    Which is throwing the FATAL error

    '__wpdm_user_dashboard' return 0

    and thus throwing a fatal error.

    #49922

    In reply to: Custom Page


    Jass
    Spectator

    Hi
    use[wpdm_package id=7 template="link-template-button.php"]short-code
    You can use http://www.wpdownloadmanager.com/download/advanced-tinymce-button/ Plugin to easily add the shortcode you need.
    Thank you.

    #49894

    In reply to: upgrade cost error


    lippylion63
    Member

    Hi

    Thanks for the download link, but I need also as originally requested or I don’t get license for Download manager.

    Could you also add WordPress eCommerce Pack – Digital Store Solution as this is due soon as well.

    Can you also unlock my license keys from the last domain, I’m switchng to another domain. Also can i use the key on localhost to test.

    Thanks

    #49892

    In reply to: License manager


    Shahriar
    Moderator

    Hi,

    License Manager links a license key to a purchase order, if you set ‘Require License Key’ in package settings. But Download Manger does not handle the other tasks like verification of the key.

    We only use it to associated a key to an order, which can be used for various purposes by linking those keys to a custom script.

    Thanks.

    #49882

    Shahriar
    Moderator

    Hi,

    Your first link shows downloads from a category. Your category url base is downloads ( from WPDM url structure settings ). So all of your download category url will look like the first url.

    Second and Third url shows normal WordPress posts from a category and tag. These pages uses different templates from Crypton Theme.

    Building custom templates ( category and tag archive for normal posts ) requires more time than simple edit. Please mail to customize@wpdownloadmanager.com to get a quote for the customization.

    Usually a theme uses different look for normal post and custom posts. Here you want same look for all posts ( download and normal posts)

    Thanks.

    #49876

    In reply to: Download only

    Further to my request above, see attached.
    I want to get rid of the set of speech marks at the front, make the download a coloured button and have the link from the title just downloading the file and not linking to a page?

Viewing 25 results - 6,501 through 6,525 (of 9,326 total)