ziku

Forum Replies Created

Viewing 25 posts - 1 through 25 (of 31 total)
Dec 17, 2014 at 6:40 am
#23770
Member
ziku
OP

Looks like an JavaScript error. Give me your site address to check.

Dec 17, 2014 at 6:15 am
#23767
Member
ziku
OP

yes, there it is.

Dec 17, 2014 at 6:10 am
#23766
Member
ziku
OP

Look at your browser address bar. You will find something like:

..taxomomy=wpdmcategory&tag_ID=81 <-- this is your category id and you need to use this number as cats value

Dec 17, 2014 at 5:53 am
#23765
Member
ziku
OP

Great 🙂

Dec 17, 2014 at 5:48 am
#23761
Member
ziku
OP

Currently there are no parameters available for wpdm_frontend shortcode. You need to manually edit functions.php file.

For 1: Goto function function wpdm_new_file_form_sc(){... under functions.php file. Change below line

if (is_user_logged_in()) {

        if ($task == 'addnew' || $task == 'edit-package')
            include('wpdm-add-new-file-front.php');
        else if ($task == 'editprofile')
            include('wpdm-edit-user-profile.php');
        else if ($task != '' && $tabs[$task]['callback'] != '')
            call_user_func($tabs[$task]['callback']);
        else if ($task != '' && $tabs[$task]['shortcode'] != '')
            do_shortcode($tabs[$task]['shortcode']);
        else
            include('wpdm-list-files-front.php');
    } else {

        include('wpdm-be-member.php');
    }

With

if (is_user_logged_in()) {

        if ($task == 'addnew' || $task == 'edit-package')
            include('wpdm-add-new-file-front.php');
        //else if ($task == 'editprofile')
            //include('wpdm-edit-user-profile.php');
        //else if ($task != '' && $tabs[$task]['callback'] != '')
            //call_user_func($tabs[$task]['callback']);
        //else if ($task != '' && $tabs[$task]['shortcode'] != '')
            //do_shortcode($tabs[$task]['shortcode']);
        //else
            //include('wpdm-list-files-front.php');
    } else {

        include('wpdm-be-member.php');
    }

For 2: You need to manually edit file wpdm-list-files-front.php manually.

Dec 17, 2014 at 5:33 am
#23760
Member
ziku
OP

Check you wp-config.php file, maybe some blank space before

Dec 17, 2014 at 5:24 am
#23759
Member
ziku
OP

Login info for network admin access isn’t working.

Dec 17, 2014 at 5:21 am
#23757
Member
ziku
OP

Which version of Internet Explorer you are using ? I tried with IE8, and download started just fine.

Dec 17, 2014 at 5:04 am
#23755
Member
ziku
OP

You cannot use template with this shortcode. However you can write your custom CSS code to your site CSS file.

Dec 17, 2014 at 4:53 am
#23752
Member
ziku
OP

Use shortcode [wpdm_frontend] in a page. User will be able to upload files from front end and user will only see their uploaded files.

Dec 17, 2014 at 4:52 am
#23749
Member
ziku
OP

We are working on this matter right now.

Dec 15, 2014 at 11:21 am
#23702
Member
ziku
OP

that was site admin login info, need Network Admin login.

Dec 15, 2014 at 11:13 am
#23698
Member
ziku
OP

Under function ->
function wpdm_front_render_cats($parent=0, $btype = 'default', $base = 0){ ...

<a title="<?php echo  $category->description;?>" class=" <?php if($parent==$base): ?>btn btn-sm btn-<?php echo $btype; ?> <?php if(count($cld)<=0||1): ?>btn-block<?php endif; ?><?php endif; ?> wpdm-cat-link" rel='<?php echo $category->term_id; ?>' href="<?php echo $link; ?>">
                    <?php echo stripcslashes($category->name); ?> (<?php echo $ccount; ?>)
                    </a> 

comment out (<?php echo $ccount; ?>)

I hope this will help you.

Dec 15, 2014 at 10:57 am
#23695
Member
ziku
OP

Attach your CSV file in a private reply, we will get back to you soon.

Dec 15, 2014 at 10:54 am
#23693
Member
ziku
OP

Problem is fixed. Try to activate download manager now.

Dec 15, 2014 at 10:02 am
#23692
Member
ziku
OP

Gogo WordPress Admin Panel –> Settings –> Permalinks and click Save Settings button. I hope this will help you.

Dec 15, 2014 at 9:54 am
#23691
Member
ziku
OP

From version 2.7.* Download Manager Free moved to custom post type for better performance and security issue. After you upgrade to version 2.7.*, you need to migrate your old versions’ data. To migrate your old version data to new version, goto Admin Menu Downloads Settings Migrate Tab of your WordPress admin panel. Follow the instructions written their.

Things to remember:
1. You need to manually re-assign download icon for every post from Admin Menu Downloads All Files

2. You need to reassign categories for each files manually.

3. Existing Category ShortCode will not work, you need to change all category ShortCode manually. However, you can install Advanced TinyMCE button AddOns for free to easily place shortcode in a page or post.

4. You can install Free AddOns to extend functionality for Download Manager.

*If you don’t want to do update to the latest version, you can still use Download Manager Version 2.6.96

Dec 15, 2014 at 9:52 am
#23690
Member
ziku
OP

Will the existing categories be kept? Or do I have to create them over again?

You don’t need to recreate existing categories.

Dec 15, 2014 at 9:50 am
#23689
Member
ziku
OP

If you are using a cache plugin, empty your page cache. Hope this will help.

Dec 10, 2014 at 9:10 am
#23456
Member
ziku
OP

*issue noted to be fix in future release.

Dec 10, 2014 at 9:05 am
#23455
Member
ziku
OP

To insert a file in a page or post use this shortcode [wpdm_package id='your_file_id_here'].

You can install Advanced TinyMCE button AddOns for free to easily place shortcode in a page or post.

Dec 10, 2014 at 8:59 am
#23454
Member
ziku
OP

Which Download Manager version you are using ? I’ve just tested with both latest version of WordPress and Download Manager and it works just fine.
*Maybe this is happening for js issues. Debug your code using firebug and look for any javascript errors.

Dec 10, 2014 at 8:52 am
#23453
Member
ziku
OP

Which version of download manager you upgraded form ? If answer is 2.6.96 you can follow below instructions, if no maybe there’s some js issues. Give me your site address to check in a private reply. Hope this help 🙂

From version 2.7.* Download Manager Free moved to custom post type for better performance and security issue. After you upgrade to version 2.7.*, you need to migrate your previous versions’ data. To migrate your old version data to new version, goto Admin Menu Downloads Settings Migrate Tab of your WordPress admin panel. Follow the instructions written their.

Things to remember:
1. You need to manually re-assign download icon for every post from Admin Menu Downloads All Files

2. You need to reassign categories for each files manually.

3. Existing Category ShortCode will not work, you need to change all category ShortCode manually. However, you can install Advanced TinyMCE button AddOns for free to easily place shortcode in a page or post.

4. You can install Free AddOns to extend functionality for Download Manager.

*If you don’t want to do update to the latest version, you can still use Download Manager Version 2.6.96

Dec 10, 2014 at 8:48 am
#23452
Member
ziku
OP

From version 2.7.* Download Manager Free moved to custom post type for better performance and security issue. After you upgrade to version 2.7.*, you need to migrate your previous versions’ data. To migrate your old version data to new version, goto Admin Menu Downloads Settings Migrate Tab of your WordPress admin panel. Follow the instructions written their.

Things to remember:
1. You need to manually re-assign download icon for every post from Admin Menu Downloads All Files

2. You need to reassign categories for each files manually.

3. Existing Category ShortCode will not work, you need to change all category ShortCode manually. However, you can install Advanced TinyMCE button AddOns for free to easily place shortcode in a page or post.

4. You can install Free AddOns to extend functionality for Download Manager.

*If you don’t want to do update to the latest version, you can still use Download Manager Version 2.6.96

Dec 10, 2014 at 8:45 am
#23449
Member
ziku
OP

From version 2.7.* Download Manager Free moved to custom post type for better performance and security issue. After you upgrade to version 2.7.*, you need to migrate your old versions’ data. To migrate your old version data to new version, goto Admin Menu Downloads Settings Migrate Tab of your WordPress admin panel. Follow the instructions written their.

Things to remember:
1. You need to manually re-assign download icon for every post from Admin Menu Downloads All Files

2. You need to reassign categories for each files manually.

3. Existing Category ShortCode will not work, you need to change all category ShortCode manually. However, you can install Advanced TinyMCE button AddOns for free to easily place shortcode in a page or post.

4. You can install Free AddOns to extend functionality for Download Manager.

*If you don’t want to do update to the latest version, you can still use Download Manager Version 2.6.96

Viewing 25 posts - 1 through 25 (of 31 total)