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')
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.
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…
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.
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>
This reply has been marked as private.
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.
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.
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.
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, '', ','); ?>
<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, '', ','); ?>
<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>
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.
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!
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
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… 🙁
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.
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.
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
This reply has been marked as private.
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"]
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?
— 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/
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
— For details button, you can add it from link template, docs: http://www.wpdownloadmanager.com/doc/templates/
— Please make /download-manager/cache/ dir writable
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.