Search Results for 'download link'

Viewing 25 results - 6,951 through 6,975 (of 9,311 total)
  • Author
    Search Results
  • #41226

    In reply to: What are subscribers


    Shahjada
    Keymaster

    Sorry for your trouble.

    1. The list still not available but it is in our to do list.
    2. From Admin Menu Campaign Subscribers you can see the subscribers and associated list.
    3. Post subscription option will show in bottom for now,  however, we will improve the feature with custom positioning in next update
    4. You need to create campaign ( docs: http://www.wpdownloadmanager.com/doc/admin-panel-2/add-campaign/ ), select delivery date and check the option “Add To Email Queue Now”, finally Publish. The plugin use wp cron to check newsletter schedule and send them, but wp cron is not very reliable, so, if you don’t want to rely on wp cron, you can setup an cron jon from your hosting control panel for the url http://your-site-name.com/?cron_handle=1 with call interval 5 to 30 mins
    5. , Missing image link adjusted in our docs.
    #41203

    In reply to: Centric Theme Problems


    Shahriar
    Moderator

    Hi,

    1. It might be css issue, extra css being added from another plugin. Have to check url to find the solution.

    2. Use custom field. In single-wpdmpro.php acces those fields by $pack['field_id'];  https://www.evernote.com/l/AUcDe23T039Gb4FieAL_nycyutec_z3txEIB/image.png

    3. Add css for wpdm-download-link class to change the appearance of download link

    4. This function displays thumb image centrino_post_thumb(array(300,0), true, array('class'►'thumbnail')

     

    #41195

    Shahriar
    Moderator

    Hi,

    You can use [file_list] template tag if you are trying to show file list of a package.

    If you are trying to integrate wpdm with something else try get_package_data function. Function docs link http://www.wpdownloadmanager.com/doc/function-reference/get_package_data/

    Thanks.

    #41170

    In reply to: What are subscribers


    therrmann
    Member

    These subscribers thing is weird.
    1. Where can i as a member see wich packages i have subscribed?
    2. Where can the admin see who subscribed what? Not only lists.
    3. Where can i change the place to display this subribebox? At the absolute bottom makes no sense for me.
    4. How can i send a campaign…?
    5. Where is a working documentation? This one http://www.wpdownloadmanager.com/doc/widget-settings/ is full of broken links and is not telling me how to send a newsletter…

    #41160

    Shahriar
    Moderator

    Hi,

    When user does not have required role download links are not provided. Clicking the link does not take to profile page , it takes you to download details page. This issue may be generated from User Pro settings, however to check further we need temporary wp-admin login info. Could you send it in private reply below?

    Thanks.

    #41139

    In reply to: Bugs found in V 4.5.3


    Shahjada
    Keymaster

    I already did that in your installation:

    <div class="col-md-4">
    <div class="thumbnail">
    <div class="media">
        <a class="pull-left" href="[page_url]">
        [icon]
        </a>
        <div class="media-body">
        <strong>[page_link]</strong ><br/>    
        <i style="margin: 2px 0 0 5px;opacity:0.5" class="fa fa-th-large"></i> [file_size]<br>
    <i style="margin: 2px 0 0 5px;opacity:0.5" class="fa fa-download"></i> <strong>[download_count] </strong> Descargas<br>
    <i style="margin: 2px 0 0 5px;opacity:0.5" class="fa fa-calendar-o"></i> [create_date]<br>
    
    <i style="margin: 2px 0 0 5px;opacity:0.5" class="fa fa-star-o"></i> [categories]
        </div>
    </div>
    </div>
    </div> 
    
    #41136

    In reply to: Bugs found in V 4.5.3


    Faisal
    Member
    This reply has been marked as private.
    #41115

    Shahriar
    Moderator

    Hi,

    Use [download_link] template tag in your page template to generate download button. You can create your custom page template from Downloads Templates Page Template Tab.

    Send me a link to check your issue, we might provide you more help after checking how you used the modal  to load package. BTW there is a template tag load downloads in modal. Use [popup_link] instead of [download_link] for that.

    Thanks.

    #41111

    In reply to: Link to categories


    Shahriar
    Moderator

    Hi,

    You can insert download  categories in a page using Directory Addon [wpdm-categories subcat="1" showcount="1" cols="4" ]

    After clicking the category link it will take you to archive page. If you have custom archive template archive-wpdmpro.php for downloads it will use it, otherwise your theme’s default archive template will be applied.

    #41109

    In reply to: Template page help


    Shahriar
    Moderator

    Hi,

    1. You have Free version of WPDM there. And i see there are Pro Version too, but it is not active and you changed the folder name. However, delete all Download Manager installation, then download and install a fresh copy from here http://www.wpdownloadmanager.com/user-dashboard/purchases/

    2. After activating you will find the Link Template drop down in package settings ( it is not present in your current setting, because Free version does not have this option )

    3. When insert your downloads in a page use TinyMCE  addon. You don’t have to remember shortcodes if you are using this addon.

    Let me know if you have further query.

    Thanks.

    #41076

    TerrorJunk
    Member

    I tried this code but it doesn’t seem to work.

     <div class="row" id="content-area">
                        <?php
                        global $post;
                        $z = 0;
                        query_posts('post_type=wpdmpro&paged='.get_query_var('paged'));
                        while (have_posts()): the_post();
                          if($z++<2){
                        ?>
                        <div class="col-md-6 col-sm-6">
                            <div class="thumbnail package-block" id="p-<?php echo get_the_ID(); ?>">
    
                                <div class="relative">
                                    <a href="<?php the_permalink(); ?>"><?php centrino_post_thumb(array(600, 200)); ?></a>
    
                                    <div class="mask">
                                        <div class="maskin">
                                            <h3><a href='<?php the_permalink(); ?>'><?php the_title(); ?></a></h3>
    
                                            <ul>
    
                                                <li><i class="fa fa-cog"></i> <?php echo wpdm_package_size(get_the_ID()); ?></li>
                                                <li><i class="fa fa-th-list"></i> <?php echo wpdm_package_filecount(get_the_ID()); ?> file(s)</li>
                                                <li><i class="fa fa-calendar"></i> <?php echo get_the_date(); ?></li>
                                            </ul>
    
                                        </div>
                                    </div>
                                </div>
    
                                <div class="meta text-right">
                                    <div class="package-rating pull-left">
                                        <?php if (function_exists('wpdm_package_rating_avg')) wpdm_package_rating_avg(get_the_ID()); ?>
                                    </div>
                                    <i class="fa fa-download"></i> <?php echo $dc = number_format(intval(get_post_meta(get_the_ID(), '__wpdm_download_count', true)), 0, '', ','); ?>&nbsp;&nbsp;
                                    <i class="fa fa-eye"></i> <?php echo get_post_meta(get_the_ID(),'__wpdm_view_count',true); ?>
    
                                </div>
    
                            </div>
                        </div>
                        <?php } else { ?>
                              <div class="col-md-<?php echo wpeden_get_theme_opts('homepage_np_grids', 3); ?>  col-sm-4  col-xs-6">
                                  <div class="thumbnail package-block" id="p-<?php echo get_the_ID(); ?>">
    
                                      <div class="relative">
                                          <a href="<?php the_permalink(); ?>"><?php centrino_post_thumb(array(300, 300)); ?></a>
    
                                          <div class="mask">
                                              <div class="maskin">
                                                  <h3><a href='<?php the_permalink(); ?>'><?php the_title(); ?></a></h3>
    
                                                  <ul>
    
                                                      <li><i class="fa fa-cog"></i> <?php echo wpdm_package_size(get_the_ID()); ?></li>
                                                      <li><i class="fa fa-th-list"></i> <?php echo wpdm_package_filecount(get_the_ID()); ?> file(s)</li>
                                                      <li><i class="fa fa-calendar"></i> <?php echo get_the_date(); ?></li>
                                                  </ul>
                                              </div>
                                          </div>
                                      </div>
    
                                      <div class="meta text-right">
                                          <div class="package-rating pull-left">
                                              <?php if (function_exists('wpdm_package_rating_avg')) wpdm_package_rating_avg(get_the_ID()); ?>
                                          </div>
                                          <i class="fa fa-download"></i> <?php echo $dc = number_format(intval(get_post_meta(get_the_ID(), '__wpdm_download_count', true)), 0, '', ','); ?>&nbsp;&nbsp;
                                          <i class="fa fa-eye"></i> <?php echo get_post_meta(get_the_ID(),'__wpdm_view_count',true); ?>
    
                                      </div>
    
                                  </div>
                              </div>
                          <?php } endwhile; ?>
                    </div>
    
                </div>
    
            </div>
        </div>
        <div class="text-center container">
            <br/>
            <button class="btn btn-primary btn-sm" id="loadmore" rel="2">Load More ...</button>
        </div>
    </div>
    #41074

    Shahriar
    Moderator

    Hi, I see, Downloads are loading after clicking category link. In initial page load  server responding with 500 error. Could you please send temporary wp-admin login information in private reply, so i can check this issue in your installation.

    #41062

    In reply to: Bugs found in V 4.5.3


    Faisal
    Member

    Hi Shaon,

    i just plugin WPDM Directory Add-on.

    2 bugas

    Site URL : http://portalhoy.com/descargas/

    Shortcode used:

    [wpdm-archive button_style="info" link_template="56ba1673a1469" items_per_page="10" category="category-slug" order_by="field-name" order="asc or desc"]

    1: when search a download > not found.

    exemple “play store apk” there are more then 15 download with the keyword but not found.

    2: i want to show 3 download per line like the Demo: http://demo.wpdownloadmanager.com/wpdmpro/archive-page-compact/ but the shortcode only show 1 per line. i try to use in code cols=1 colsphone=1 colspad=1 but nothing always showing 1 download pero line.

    Thanks!

    #40975

    Freshcom
    Participant

    Hi please help.. i would need to have Sub-Categorys on my download products, i am using this shortcode,

    [wpdm-archive button_style=”default” link_template=”link-template-calltoaction2″ items_per_page=”10″ category=”” order_by=”field-name” order=”asc|desc” wpdm-tags cols=”3″ wpdm-=”page-template=”template-1col-flat” categories cols=3 subcat=1]

    you can see the output here: http://goo.gl/udOaoe

    i get the subcategory now also shown as main cat?. and the dropdown dosent work

    thx 4 help in advance

    #40874

    In reply to: Order by updatedate


    therrmann
    Member

    I updated the plugin but it still pasts the following code into the post:
    [wpdm_packages link_template="link-template-panel" order_by="download_count" order="desc" paging="0" items_per_page="10" cols=1 colsphone=1 colspad=1 title="Most Downloaded Packages" desc=""]
    And as you can see. order_by="download_count" wich is incorrect. and should be ‘order_field=”download_count”‘
    But after many requests and bugreports i made i think this is the way your company works… 🙁

    #40841

    Shahjada
    Keymaster

    Built-in update will not work for main plugin yet, but we are working on that, until then, please download latest version from our site and update your copy manually.

    File download counted should work fine, but if you click on same download link several times in same session it will be counted as one.

    #40840

    In reply to: Template page help


    Shahjada
    Keymaster

    The style will depend on your selected link template. Please use this add-on http://www.wpdownloadmanager.com/download/advanced-tinymce-button/ to generate short-code easily. Template docs:  http://www.wpdownloadmanager.com/doc/templates/

    However if you want me to setup a sample there in your installation, please give me temporary wp-amdin login info in a private reply.

    #40788

    CSTOne
    Member

    Hi ., thanks i have done it …

    now can able to see the files inside the folder ..

    it is possible to Redirect to new simple download page , if any user click download
    http://oi64.tinypic.com/29eknf8.jpg

    also inside file list instead showing in column , can you call action 4 link templete

    #40770

    kalico
    Member
    This reply has been marked as private.
    #40710

    Shahriar
    Moderator

    Use TinyMCE button to insert shortcode. No need to search for shortcodes. All are listed there.

    However here is an example of Archive Page Compact shortcode,

    [wpdm-archive cat_view="compact" button_style="success" link_template="link-template-panel-1-3.php" order_by="post_title" order="asc" items_per_page="10"]

    #40680

    kalico
    Member

    Hello! I’m in need of some advice about displaying videos in a modal.

    I am using WPDM Pro. I have some attachments that have a corresponding video. The video does not need to be downloaded by the end user, but I would like for the user to be able to easily view it when they download the file.

    I don’t have any trouble doing this when the Link Template takes the user to a Page Template to view and download. The embedded video in the “description” field works just fine.

    However, my preferred method (in use for all other downloads) is to use the [popup_link] shortcode in my Link Template. So the information about the download pops up in a modal window which contains some details about the file, and a download link. This way, the user never leaves the page or gets confused about navigation.

    My challenge is that the embedded video does not work in the modal window.

    The modal seems to be “basic HTML” only, so I get links and minor formatting. But so far, all my attempts to embed video just display the link to the video as plain text. If I upload the video to the media library, I get basically a screenshot from the video in the modal…there is no way to play the video.

    I would like the video to actually be embedded and play in the modal, so the user can watch it and also download the attached file at the same time, without leaving the page.

    Do you know of a way to make that work?


    Shahjada
    Keymaster

    — I need a package url with the issue to check
    — Use template tag [pdf_thumb_WxH] for pdf thumbnail, but it requires Imagick in your server
    — To download single file, you need to enable single file download from package settings and need to forward visitors to package details page. You need to insert package short-code inside page, you can add wpdm package or wpdm category in menu directly,  but if you want to use short-code in page, use a link template without [download_link] tag, docs: http://www.wpdownloadmanager.com/doc/templates/

    #40622

    markhoward01
    Participant

    That has worked, thank you.

    Please could you answer my other question: I cannot find where to change the individual file list download buttons. I have the image button plugin and that works for the package button on the link and on the page, but does not allow me to change the individual files download button.

    See http://devsite28.co.uk/index.php/2015/11/21/easter-offering-2016/

    I want to style/customise the invividual download buttons.

    Thank you

    #40608

    In reply to: Some setting error


    Shahjada
    Keymaster

    — For details button, you can add it from link template, docs: http://www.wpdownloadmanager.com/doc/templates/
    — Please make /download-manager/cache/ dir writable


    therrmann
    Member

    Not working:
    http://www.nowload.de/details/serino-desktop-tools-2014/
    http://www.nowload.de/details/serino-desktop-tools-2014/?wpdmdl=1176&ind=BJw53pk6ViFabMw-9B7bQF1ox5aU0kJ-cRMCWK8cka2SCmQSyAOL-MU-tY2JSNvIauUw_VNgaY52FENYShHQCgoNZzGrUzufdZ4OwqaP-VYbLVqqDHOS-bmJUCxsQiSG

    the download all link works but not the single file button.
    in your first post you wrote

    Sorry for the trouble, it is working fine now.

    Then it worked. I updated the plugin and it is not working anymore and you tell me it has something to do with the path? it worked before…

    Filesize is now correct via bulk import.

Viewing 25 results - 6,951 through 6,975 (of 9,311 total)