-
AuthorSearch Results
-
Feb 20, 2016 at 8:56 pm #41226
In reply to: What are subscribers
ShahjadaKeymasterSorry for your trouble.
- The list still not available but it is in our to do list.
- From Admin Menu Campaign Subscribers you can see the subscribers and associated list.
- Post subscription option will show in bottom for now, however, we will improve the feature with custom positioning in next update
- 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=1with call interval 5 to 30 mins - , Missing image link adjusted in our docs.
Feb 19, 2016 at 8:43 pm #41203In reply to: Centric Theme Problems
ShahriarModeratorHi,
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.phpacces those fields by$pack['field_id'];https://www.evernote.com/l/AUcDe23T039Gb4FieAL_nycyutec_z3txEIB/image.png3. Add css for
wpdm-download-linkclass to change the appearance of download link4. This function displays thumb image
centrino_post_thumb(array(300,0), true, array('class'►'thumbnail')Feb 19, 2016 at 7:40 pm #41195In reply to: Function to get list of WPDM file names
ShahriarModeratorHi,
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_datafunction. Function docs link http://www.wpdownloadmanager.com/doc/function-reference/get_package_data/Thanks.
Feb 18, 2016 at 7:43 pm #41170In reply to: What are subscribers
therrmannMemberThese 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…Feb 18, 2016 at 6:19 pm #41160In reply to: Wrong link from document
ShahriarModeratorHi,
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.
Feb 18, 2016 at 1:41 pm #41139In reply to: Bugs found in V 4.5.3
ShahjadaKeymasterI 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>Feb 18, 2016 at 12:39 pm #41136In reply to: Bugs found in V 4.5.3
FaisalMemberThis reply has been marked as private.Feb 18, 2016 at 7:11 am #41115In reply to: WPDM PRO – no download button in Download Modal
ShahriarModeratorHi,
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.
Feb 18, 2016 at 6:58 am #41111In reply to: Link to categories
ShahriarModeratorHi,
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.phpfor downloads it will use it, otherwise your theme’s default archive template will be applied.Feb 18, 2016 at 6:50 am #41109In reply to: Template page help
ShahriarModeratorHi,
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.
Feb 17, 2016 at 6:02 pm #41076In reply to: Showing Downloads on Home page
TerrorJunkMemberI 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>Feb 17, 2016 at 5:02 pm #41074In reply to: nothing loaded after update to 4.5.4
ShahriarModeratorHi, 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.
Feb 17, 2016 at 2:50 pm #41062In reply to: Bugs found in V 4.5.3
FaisalMemberHi 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=1but nothing always showing 1 download pero line.Thanks!
Feb 16, 2016 at 9:41 am #40975Topic: issue with subcategorys
in forum Download Manager Pro
FreshcomParticipantHi 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
Feb 13, 2016 at 5:43 pm #40874In reply to: Order by updatedate
therrmannMemberI 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… 🙁Feb 12, 2016 at 9:58 pm #40841In reply to: Can't update to version 4.54
ShahjadaKeymasterBuilt-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.
Feb 12, 2016 at 9:56 pm #40840In reply to: Template page help
ShahjadaKeymasterThe 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.
Feb 12, 2016 at 11:52 am #40788In reply to: File list now shows with attach directoy
CSTOneMemberHi ., 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.jpgalso inside file list instead showing in column , can you call action 4 link templete
Feb 12, 2016 at 4:19 am #40770In reply to: Display embedded video in popup
kalicoMemberThis reply has been marked as private.Feb 10, 2016 at 6:09 pm #40710In reply to: How to achieve archive page compact view
ShahriarModeratorUse 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"]Feb 10, 2016 at 2:56 am #40680Topic: Display embedded video in popup
in forum Download Manager Pro
kalicoMemberHello! 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?
Feb 9, 2016 at 7:41 pm #40657
ShahjadaKeymaster— I need a package url with the issue to check
— Use template tag[pdf_thumb_WxH]for pdf thumbnail, but it requiresImagickin 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/Feb 9, 2016 at 4:13 pm #40622In reply to: Plain Text Document downloads
markhoward01ParticipantThat 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
Feb 9, 2016 at 1:37 pm #40608In reply to: Some setting error
ShahjadaKeymaster— For details button, you can add it from link template, docs: http://www.wpdownloadmanager.com/doc/templates/
— Please make /download-manager/cache/ dir writableFeb 9, 2016 at 9:56 am #40582
therrmannMemberNot 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-bmJUCxsQiSGthe download all link works but not the single file button.
in your first post you wroteSorry 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.
-
AuthorSearch Results
Search Results for 'download link'
-
Search Results
-
Topic: issue with subcategorys
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
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?