Search Results for 'download link'

Viewing 25 results - 7,301 through 7,325 (of 9,350 total)
  • Author
    Search Results
  • #35142

    Shahjada
    Keymaster

    Actually the plugin convert each pdf page into image, then show it, but it is actually out of wpdm scope, however you may use the plugin and create a wpdm add-on to introduce new template tag for pdf embedder.

    Example code:

    <?php
    add_filter('wdm_before_fetch_template','custom_pdf_embedder',10,1); 
    function custom_pdf_embedder($vars){ 
    $vars['embed_pdf'] = do_shortcode("[pdf-embedder url='{$vars['download_url']}' ]"); 
    return $vars; 
    }  
    ?> 
    

    Now you can use [embed_pdf] as template tag in link/page template

    #35084

    Shahjada
    Keymaster

    Yes, you need to use this free add-on http://www.wpdownloadmanager.com/download/wpdm-image-button/ if you want to replace download link label using a nice download button image or different css button style.

    #35071

    lippylion63
    Member

    When you come to insert the button for the download, part of the class is missing
    <p class=”MsoNormal”><i style=”mso-bidi-font-style: normal;”>class=”wpdm-download-link wpdm-download-locked <span style=”background: yellow; mso-highlight: yellow;”>[btnclass]”</span></i></p>
    <p class=”MsoNormal”>This appears on line 2578 in the functions.php and the part of the code for this has been commented out,</p>
    <p class=”MsoNormal”>All I get then the download link is just Download Now</p>
    <p class=”MsoNormal”>Any way to alter this so a button appears</p>

    #35041

    I was looking for some guidance or advice on how to handle pop-ups and new windows.  Basically my goal is to turn this website (which is using wpdownloadmanager plug-in) to a chromebox kiosk app.  Everything else seems to be working fine with the exception of two basic functions. Pop up messages and linking / opening a new window.  Does anyone have any experience with this?

    #35036

    ganquetil
    Member

    Hello,

    I tried to put this shortcode:

    <span style=”line-height: 26.6667px;”>[wpdm-archive button_style=”inverse” link_template=”link-template-panel-1-3″ order_by=”post_title” order=”asc” items_per_page=”10″ cat_view=”compact”]</span>

    to have my archive page like this:

    http://demo.wpdownloadmanager.com/wpdmpro/archive-page-compact/

    but it doesn’t work. Could you give me the right shortcode.

    Thanks for your help.
    Gael

    #35017

    numeric
    Member

    When I try to import a .csv file I get a white screen with this error repeated many times.

    Warning: mysql_real_escape_string(): Access denied for user ‘root’@’localhost’ (using password: NO) in /public_html/ciinfodev/wp-content/plugins/download-manager/wpdm-functions.php on line 4751

    Warning: mysql_real_escape_string(): A link to the server could not be established in /public_html/ciinfodev/wp-content/plugins/download-manager/wpdm-functions.php on line 4751

    Need help to resolve this issue ASAP

    #34989

    Shahjada
    Keymaster

    “Download File” link is not coming from wpdm, however please give me temporary wp-admin login info to check it in details.

    #34976

    hello,

    on my site http://www.austriaguides-ooe.at ist now a “download file” link on every page at the bottom. my download page ist set for http://austriaguides-ooe.at/aga-fortbildungen/mitschriften-von-fortbildungen/

    how do i get this text mit the “#” link of the page.

    thx

    sebastian

    #34961

    In reply to: [audio_player]


    kaisan
    Member
    This reply has been marked as private.
    #34953

    Shahjada
    Keymaster

    To prevent bot access to download link directly, it is modified in last update ( v4.4 ), but download button will work fine.

    #34928

    johanfrc
    Participant

    Hi.

    On my website I uses this great plugin to count the numbers of downloads of the individual files.

    When I see the template (Default Template w/Icon) I can see the name I gave the package, the icon and then the “download” and the number of downloads.

    Some time ago the “Download” showed the direct URL to the file incl the wpdmdl-number (i.e. …/download/package_name/?wpdmdl=2417)

    Now it’s just “website.com/#”

    Is there a way to get the wpdmdl-number URL shown again?

    Maybe it’s something in the settings I have to change, but I can’t find out which one it might be.

    Thanks in advance.

    #34907

    savvasha
    Member

    About the cache folder. I am not using any featured image in wpdm links or wpdm page templates. I am only using featured images for my posts. Posts are irrelevant with wpdm. So, I was waiting to have an empty cache folder under download-manager folder. Instead I have thumbnails of my posts’s featured images.


    Leitner
    Member

    Hello,

    I have some troubles during the csv import.
    I got the following error:

    Warning: mysql_real_escape_string(): No such file or directory in /…./wp-content/plugins/download-manager/wpdm-functions.php on line 4751

    Warning: mysql_real_escape_string(): A link to the server could not be established in /…./wp-content/plugins/download-manager/wpdm-functions.php on line 4751

    I’ve also tested to upload the original samle.csv file. There is the same error.

    Have anyone a solution for me?

    Best Regards

    Patrick

    #34882

    Nintay
    Member

    Hi

    I’m having problem – It’s suddenly happen and its really urgent.

    When I’m clicking on a download button – I’m getting a loading icon which not stop even after the download finish.

    Only when clicking on the browser page – displaying an error says only “1”.

    Why is this happening?!?

    attached in private mesage my user and password.

    While you’re there..

    1. Can I make header style to to be sticky?

    2. Why the links in the right sidebar not opening in new tab? they’ve HTML target=_blank, and also tested it with another plugin – Just check the “Open in new tab” box.

    Is this suppose to happen?

     

    Thanks

    #34880

    brunzino
    Member

    It appears that when batch importing, the file is copied into download-manager-files, correct? If two files of the same base name, but batch imported from different directories, the original file in download-manager-files is overwritten. Every copied field needs to be timestamped, then, yes?

    // wpdm-core.php ~line 457
    function wpdm_dimport()
    {
    global $wpdb;

    //array_shift($flds);
    $fileinf = array();

    // $files holds array with filename in UPLOAD_DIR where newly created package will be copied to
    // $files = array($_POST[‘fname’]);
    $new_file_name = time() . ‘wpdm_’ . $_POST[‘fname’];
    $files = array($new_file_name);

    $fileinf[‘access’] = $_POST[‘access’];

    if (isset($_POST[‘password’]) && $_POST[‘password’] != ”) {
    $fileinf[‘password_lock’] = 1;
    $fileinf[‘password’] = $_POST[‘password’];

    }

    $fileinf[‘files’] = $files;

    $post_id = wp_insert_post(array(
    ‘post_title’ ► esc_attr($_POST[‘title’]),
    ‘post_content’ ► esc_attr($_POST[‘description’]),
    ‘post_type’ ► ‘wpdmpro’,
    ‘post_status’ ► ‘publish’
    ));

    wp_set_post_terms($post_id, $_POST[‘category’], ‘wpdmcategory’);

    foreach ($fileinf as $meta_key ► $value) {
    update_post_meta($post_id, “__wpdm_” . $meta_key, $value);
    }

    print_r($fileinf);

    // Newly imported file is copied to $new_file_name in UPLOAD_DIR
    // copy(get_option(‘wpdm_importdir’) . $_POST[‘fname’], UPLOAD_DIR . ‘/’ . $_POST[‘fname’]); // also inserts an extra ‘/’
    copy(get_option(‘wpdm_importdir’) . $_POST[‘fname’], UPLOAD_DIR . $new_file_name);

    do_action(‘after_add_package’, $post_id, $fileinf);
    //@unlink(dirname(__FILE__).’/imports/’.$_POST[‘fname’]);
    die(‘Done!’);
    }

    #34832

    Shahriar
    Moderator

    To use such field dynamically, you will need http://www.wpdownloadmanager.com/download/advanced-custom-fields/ to create a new field for demo link in each package

    #34794

    Rizonesoft
    Member

    I do not want to put pressure on you, but my users are getting extremely frustrated. Is there a way to remove the session completely (simplify the plugin). I do not mind users hot linking to the files. As long as the waiting page is presented on each download click. Please help as soon as you can.

    #34793

    In reply to: Turn off Cache Feature


    DocCohn
    Member

    Cache added over 5 gig to my server. Also, when I updated from 3.0 to 4.0, all the product download links were gone. If so, do I have to add them again? Your upgrades should be more efficient and not cause more work on our part.

    #34785

    ganquetil
    Member

    Hello,

    I don’t know the buton code to add a button to my template ‘templatebibliotheque’.

    You can find enclosed an image which show what I have and what I want.

    Could you tell me which code I have to add?

    Today the code is :

    <div class=”col-md-12″><div class=”media”>

    <div class=”pull-right” align=”right”>

    [download_link]

    </div>

    <div class=”pull-left” align=”left”>

    [icon]

    </div>

    <div class=”media-body”>

    <h3> [title] </h3> [file_size] [download_count] downloads &nbsp

    [description]

    </div>

    </div>

    <hr style=”border-top: 1px solid #fff;display: block; width: 100%;clear: both; “/>

    </div>

    My webpage is http://applexia.fr/bibliotheque-driver/

     

    #34782

    In reply to: Turn off Cache Feature


    Shahjada
    Keymaster

    From Admin Menu Downloads Settings Basic Tab File Downloads Section Uncheck the option “Cache created zip file from multi-file package” Save Settings

    But disabling zip cache may slower the response time for download link of multi-file package.

    #34763

    Hi,

    I think I found a solution. Can you tell me if it’s good from you. I am a developer but as far, I do not know too WordPress framework.

    So I changed the taxonomy wpdmcategory.php-file, by:

    $count = 0;

    $wpmpcat = get_term(get_queried_object_id(), ‘wpdmcategory’);

    $q = new WP_Query(array(
    ‘post_type’ ► ‘wpdmpro’,
    ‘tax_query’ ► array(
    array(
    ‘taxonomy’ ► ‘wpdmcategory’,
    ‘terms’ ► $wpmpcat->term_id,
    ‘field’ ► ‘term_id’,
    ‘include_children’ ► true
    )
    ),
    ‘orderby’ ► ‘publish_date’,
    ‘order’ ► ‘DESC’)
    );
    $z = 0;
    while ($q->have_posts()) {
                $q->the_post();
    /*Desactivate Source Code
    while(have_posts()): the_post();*/
    ?>
    <div class=”col-md-3 recent_item”>
    <div class=”product-block”>

    “><?php wpeden_post_thumb(array(300,300), true, array(‘class’►’no-radius thumbnail’)); ?>

    <div class=”product-info”>
    <h3>“><?php the_title(); ?></h3>

    <?php if(function_exists(‘wpdmpp_product_price’)){ ?>
    <h4 class=”price”><?php echo wpdmpp_product_price(get_the_ID())>0?wpdmpp_currency_sign().wpdmpp_product_price(get_the_ID()):’Free’; ?></h4>
    <?php echo wpdmpp_product_price(get_the_ID())>0?str_replace(“btn-info”,”btn-flat flat-info no-radius”,wpdmpp_waytocart($post)):”Download“; ?>

    <?php } else { ?>

    “><?php _e(‘read more’,’thenext’); ?> <i class=”fa fa-angle-right”></i>

    <?php } ?>

    </div>

    </div>
    </div>

    <?php

    if(++$count%4==0) echo “<div class=’clear’></div>”;
    }
    //desactivate source code endwhile; ?>
    </div>

     

    Thank you in advance for your help.

    #34733

    Rizonesoft
    Member
    #34726

    Coaram
    Member
    This reply has been marked as private.
    #34721

    In reply to: Updating URL Issue


    trickz100
    Member

    Updating URLs used to be an easy job as they had their own Database Folder “ahm_files” or something like that. Now, everything is in “postmeta” which has made updating links pretty hard as you have them serialized, which I don’t understand what that means.

    To update the links, I would literally download the Database file, open Notepad++ and dona find and replace. This method works the best and quickest!

    Kind regards

    #34709

    Shahriar
    Moderator

    Sorry, that is not possible yet, as Dropbox generate only temporary direct download link, however we will release advanced dropbox add-on soon where there you will be able to generate direct download link.

Viewing 25 results - 7,301 through 7,325 (of 9,350 total)