Shahjada

Forum Replies Created

Viewing 25 posts - 5,776 through 5,800 (of 15,655 total)
Jan 27, 2016 at 8:00 am
#39662
Keymaster
Shahjada
Staff OP
  1. Yes, It should work with global settings, and I’m checking this. 🙂
  2. 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 🙂
  3. 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.
Jan 27, 2016 at 7:47 am
#39661
Keymaster
Shahjada
Staff OP

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 🙂

Jan 27, 2016 at 7:43 am
#39659
Keymaster
Shahjada
Staff OP

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

Jan 27, 2016 at 7:35 am
#39658
Keymaster
Shahjada
Staff OP

“please point me issue #2 in a URL.”

Jan 27, 2016 at 7:33 am
#39657
Keymaster
Shahjada
Staff OP
  1. You need to crate in categories for Catalogs (Catalogo), Manuals (Manuais) and Drivers 
  2. Again create 3 pages for Catalogs (Catalogo), Manuals (Manuais) and Drivers 
  3. Now add category short-code in corresponding pages, like Catalogs category short-code in Catalogs page
  4. Now in your sidebar, use those 3 page urls with your image
  5. Now upload your files and select proper category.
Jan 27, 2016 at 7:19 am
#39656
Keymaster
Shahjada
Staff OP

@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.

Jan 27, 2016 at 7:10 am
#39653
Keymaster
Shahjada
Staff OP

You need to exclude cart page from cache for guest checkout to work.

Jan 27, 2016 at 6:26 am
#39649
Keymaster
Shahjada
Staff OP

Sorry, the code will not be added with core anymore as the feature is actually dropped long time ago.

Jan 27, 2016 at 6:07 am
#39646
Keymaster
Shahjada
Staff OP

I received email ( https://www.evernote.com/l/AV2mlKmDSiFDRqQUgwLUD4GVpFx5UQQ29xM ), please check your spam folder.

Jan 27, 2016 at 5:31 am
#39645
Keymaster
Shahjada
Staff OP

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.

Jan 27, 2016 at 5:28 am
#39644
Keymaster
Shahjada
Staff OP

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.

 

Jan 26, 2016 at 6:44 pm
#39627
Keymaster
Shahjada
Staff OP

Try now. BTW, you can enable full billing address from settings page.

Jan 26, 2016 at 6:44 pm
#39626
Keymaster
Shahjada
Staff OP

For WPDM Search widget you will need this add-on http://www.wpdownloadmanager.com/download/wpdm-directory-add-on/

Jan 26, 2016 at 6:36 pm
#39619
Keymaster
Shahjada
Staff OP

It is working fine now, the problem was because, server file browser was inactive.

Jan 26, 2016 at 12:58 pm
#39592
Keymaster
Shahjada
Staff OP

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();
}
Jan 26, 2016 at 8:05 am
#39571
Keymaster
Shahjada
Staff OP

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.

Jan 25, 2016 at 9:20 pm
#39550
Keymaster
Shahjada
Staff OP

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

Jan 25, 2016 at 9:13 pm
#39549
Keymaster
Shahjada
Staff OP

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/

Jan 25, 2016 at 9:10 pm
#39547
Keymaster
Shahjada
Staff OP

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/

Jan 25, 2016 at 9:08 pm
#39546
Keymaster
Shahjada
Staff OP

@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.

Jan 25, 2016 at 9:04 pm
#39545
Keymaster
Shahjada
Staff OP

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.

Jan 25, 2016 at 9:00 pm
#39544
Keymaster
Shahjada
Staff OP

but we didn’t change anything around the feature for a long time, it should be working in same way.

Jan 25, 2016 at 8:59 pm
#39543
Keymaster
Shahjada
Staff OP

Ok, I found the login URL, please point me issue #2 in a URL.

Jan 25, 2016 at 8:54 pm
#39542
Keymaster
Shahjada
Staff OP

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.

Jan 25, 2016 at 8:18 pm
#39540
Keymaster
Shahjada
Staff OP

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.

Viewing 25 posts - 5,776 through 5,800 (of 15,655 total)