Forum Replies Created
- Yes, It should work with global settings, and I’m checking this. 🙂
- Sorry, may you please explain little more why it is necessary, now, you can create a link template with
[file_list]tag, and if you use short-code[wpdm_package id="ID" template="template-id"]it should work 🙂 - This is a good idea and I’ll implement it with the next update :), now problem it different file can be locked with different option, so standard way will not work here, however, I’ll add an option to choose locks for custom package in file cart.
if billing address is disabled, now only email is shown, however I’ll add name as option field there too 🙂
And Ok, I’ll show those info in admin page, which is actually should be there, thanks 🙂
Page load speed seems Ok. however, it totally will depends on your server, wpdm usually doesn’t add that much of extra load to make site slower.
https://www.evernote.com/l/AV39gruryDBK_L2HeNldnKgAIwPGNMQ1RgoB/image.png
- You need to crate in categories for Catalogs (Catalogo), Manuals (Manuais) and DriversÂ
- Again create 3 pages for Catalogs (Catalogo), Manuals (Manuais) and DriversÂ
- Now add category short-code in corresponding pages, like Catalogs category short-code in Catalogs page
- Now in your sidebar, use those 3 page urls with your image
- Now upload your files and select proper category.
@andreabk, don’t worry, please update your copy, now you can enable disable billing address from premium package settings, by default it is disabled. Sorry that, you feel about our customer support in that way, we are trying our best and except some very rare exception, all support query are replied within few hours or same day.
You need to exclude cart page from cache for guest checkout to work.
Sorry, the code will not be added with core anymore as the feature is actually dropped long time ago.
I received email ( https://www.evernote.com/l/AV2mlKmDSiFDRqQUgwLUD4GVpFx5UQQ29xM ), please check your spam folder.
You need to enter the login info correctly there to enable 1 click plugin/add-on update, no need go through manual procedure anymore, however, if login doesn’t work, it could be your server firewall blocking http://www.wpdownloadmanager.com, however, please give me your wpdownloadmanager.com login info and your site login info in a private reply, I’ll check.
You need to keep the featured/preview image files anywhere inside /wp-content/uploads/ dir .
Bulk import doesn’t support additional preview images yet, but we will add it with the next update.
Try now. BTW, you can enable full billing address from settings page.
For WPDM Search widget you will need this add-on http://www.wpdownloadmanager.com/download/wpdm-directory-add-on/
It is working fine now, the problem was because, server file browser was inactive.
Just checked, actually that was a compatibility code for very old version v3.3.8, however, please add following code at the end of your theme functions.php to re-add the tag:
class wpdm_custom_field_table{
public function __construct(){
add_filter("wpdm_after_prepare_package_data", array($this, "add_tag"));
}
function add_tag($vars){
$vars['wpdm_custom_field_table'] = $this->wpdm_custom_fields_table($vars['ID']);
return $vars;
}
function wpdm_custom_fields_table($id){
$custom_data = maybe_unserialize(get_post_meta($id, '__wpdm_custom_fields'));
//$wpdm_custom_data = array();
$data = "";
$data = "<table class='table'>";
if(count($custom_data)>0){
foreach($custom_data['name'] as $index â–ş $dname){
$wpdm_custom_data[$dname] = $custom_data['value'][$index];
$package['wpdm_cf '.$dname] = $custom_data['value'][$index];
$data .= "<tr><td>{$dname}</td><td>{$custom_data['value'][$index]}</td></tr>";
}}
$cdata = get_post_custom($package['ID']);
foreach ($cdata as $k â–ş $v) {
if(!preg_match("/_[\w]+/",$k, $found))
$data .= "<tr><td>{$k}</td><td>{$v[0]}</td></tr>";
}
$data .= "</table>";
return $data;
}
}
if(defined('WPDM_Version')){
new wpdm_custom_field_table();
}
We added the billing info with premium package recently, free or pro , it will show everywhere, but we are adding new option to enable disable it with the next update. We added it because the option was requested by many other user, but it also will not be a problem for you as we are adding new option to enable/disable this.
Sorry for the delay, It is because, there are some js error in your installation, may I try disabling other plugins temporarily?
BTW, I tested your aws creds in my test installation and it is working fine.
https://www.evernote.com/l/AV1xZ-OH12tAvJjSWR_hRF8jh1Q2j9LDbQYB/image.png
this is just a feature, you can control it from link template, usually in most link template we use [page_link] tag, which linked page title and page url, you need to create new link template where you should use [title] tag instead of [page_link], doc: http://www.wpdownloadmanager.com/doc/templates/
you need to create new link template without [download_count] tag, and apply to all packages, but if you want to use mass update feature, you will need this add-on http://www.wpdownloadmanager.com/download/wpdm-default-values/
@wwwAndries, please give me your license key in a private reply to check. Try with correct username password again, if it is correct, it should be saved properly.
Second problem is probably with their plugin, probably they are using any outdated js library, please ask Ultimate member plugin authors to check.
Okay, I shall check and restore the function with the next update, in last update, we rebuilt total code base and we missed it there, sorry about that. BTW, next update is coming within this week.
but we didn’t change anything around the feature for a long time, it should be working in same way.
Ok, I found the login URL, please point me issue #2 in a URL.
May you please give me the login URL , I’m not seeing it anywhere now, also wp-admin redirecting me to home.
Also please point me an URL for issue#2 and let me know the link template name you are using there.
you need to select 3 Columns, Detailed template for archive page from Admin Menu Downloads Settings Frontend tab
Additional you may need to remove unnecessary info from taxonomy-wpdmcategory.php., like post meta and title functions, inside the loop keep only the_excerpt() function.