Shahriar

Forum Replies Created

Viewing 25 posts - 1,176 through 1,200 (of 12,513 total)
Sep 25, 2019 at 5:24 pm
#112926
Moderator
Shahriar
Staff OP

Hi Mike,

Sorry for the delays on this ticket.

I don’t have the Mizil demo data. But you can import Attire ( https://www.wpdownloadmanager.com/download/attire-allinone-wordpress-theme/ ) demo data. That should work too.

You can delete the WPDM – File Manager add-on as we will deprecate it soon. All of its features will be implemented in Asset Manager as core WPDM features. Asset Manager already supports all admin features of WPDM – File Manager. And frontend features will be added gradually.

Could you please check your error log to find any info about WPDM – Advanced CSV Importer? Please share the log file if you can find any useful info.

Thanks.

Sep 25, 2019 at 5:11 pm
#112925
Moderator
Shahriar
Staff OP

I thought you were referring to the ‘Trash’ link in All Files page. I see now, you are talking about the font awesome trash icon in Attach File meta box. Multiple instances of Font Awesome CSS on your admin area are coming from different plugins which created the conflict. It is not possible to resolve this without code customization.

Anyway, the file is actually removed automatically when you add another file hence the icons doesn’t have much importance. It is better to keep it as is rather than customizing code because changes will be lost during the update.

Sep 25, 2019 at 4:55 pm
#112923
Moderator
Shahriar
Staff OP

We will add the fix on our side too before the next release.

Sep 25, 2019 at 4:53 pm
#112922
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Sep 25, 2019 at 4:20 pm
#112919
Moderator
Shahriar
Staff OP

I have updated the date format in the custom code to Y-m-d It seems that did the trick.

Sep 25, 2019 at 11:14 am
#112903
Moderator
Shahriar
Staff OP

You can use wpdm_packages_query_params filter to modify the search query of [wpdm_search_result] shortcode. Add the following code to your theme’s functions.php to limit the search to a single category. Replace my-category in the code with you actual category slug.

function wpdm_packages_query_params($params){
    $params['tax_query'] = array(
        array (
            'taxonomy' ► 'wpdmcategory',
            'field' ► 'slug',
            'terms' ► 'my-category',
        )
    );
    return $params;
}
add_filter('wpdm_packages_query_params','wpdm_packages_query_params');
Sep 25, 2019 at 10:54 am
#112900
Moderator
Shahriar
Staff OP

Please check this screenshot http://prntscr.com/paqju0

Sep 25, 2019 at 10:50 am
#112899
Moderator
Shahriar
Staff OP

Looks like email support already responded to your query. Anyway, let me know if having any issue. Thanks.

Sep 25, 2019 at 10:46 am
#112898
Moderator
Shahriar
Staff OP

In the first paragraph I meant, you can use the category shortcode with pagination disabled.

[wpdm_category id="agendas," cols="1" toolbar=1 item_per_page=3 paging=0 template="link-template-panel.php" order_by="publish_date" order="desc"]

The second option is modifying the Extended Shortcodes add-on as I have suggested above in the second paragraph.

Sep 25, 2019 at 10:38 am
#112897
Moderator
Shahriar
Staff OP

Hi,

Provided user doesn’t have the administrator role. So, couldn’t install the latest version.

Please install the latest version to fix the issue. Follow these steps to update the plugin,

1 ) Deactivate and delete the old version. You won’t lose any data.
2 ) Download latest version from here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
3 ) Install the latest version and activate the license key.

To fix the auto-update issue, logout and then login again from your Downloads > Settings > Updates tab.

Thanks.

Sep 25, 2019 at 9:56 am
#112894
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Sep 25, 2019 at 9:44 am
#112893
Moderator
Shahriar
Staff OP

Hi,

You can password lock a package to restrict public downloads. Only users with the password will be able to download a password locked package.

If you want to assign a download only to a specific user then use the Advanced Access Control add-on. Please check details here https://www.wpdownloadmanager.com/download/advanced-access-control/

Best regards.

Sep 25, 2019 at 9:38 am
#112892
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Sep 25, 2019 at 8:54 am
#112888
Moderator
Shahriar
Staff OP

Please send temporary wp-admin login info in private reply or find the following line in /download-manager/tpls/wpdm-all-downloads.php file,

$dor = array('publish_date' ► strtotime(get_the_date()), 'create_date' ► strtotime(get_the_date()), 'update_date' ► strtotime(get_the_modified_date('', get_the_ID())));

and replace it with this code,

$dor = array(
'publish_date'  ► strtotime( get_the_date('Y-m-d') ),
'create_date'   ► strtotime( get_the_date('Y-m-d') ),
'update_date'   ► strtotime( get_the_modified_date('Y-m-d') )
);
Sep 25, 2019 at 8:00 am
#112883
Moderator
Shahriar
Staff OP

You need Pro if you want to do this with single shortcode and single package.

1 ) Create a package and add both files. Pro supports multi-file package.
2 ) Create a custom link/page template to get your intended UI.

By default, WPDM uses a table or Box like UI to display multiple files with the same “Download” button label ( http://prntscr.com/panswf )

But we have to create 2 custom template tags in your case to use different button labels for video and quiz links. It is possible using wdm_before_fetch_template hook.

Sep 25, 2019 at 7:42 am
#112881
Moderator
Shahriar
Staff OP

Gravity Forms work fine with WDPM. This may be related to something else. Please send temporary wp-admin login info in private reply so I can take a closer look.

Sep 24, 2019 at 10:34 pm
#112865
Moderator
Shahriar
Staff OP

It actually could happen to anyone. Sometimes we do miss thing in plain sight 🙂

Sep 24, 2019 at 10:31 pm
#112864
Moderator
Shahriar
Staff OP

Which shortcode are you using there?

Sep 24, 2019 at 10:20 pm
#112863
Moderator
Shahriar
Staff OP

It assigns first image in [file_thumb_0], second image in [file_thumb_1], third image in [file_thumb_2] and so on. If no images are found these tags won’t output anything.

Sep 24, 2019 at 10:16 pm
#112862
Moderator
Shahriar
Staff OP

So, Download works with the old version but not with the latest? Could you please send temporary wp-admin login info in private reply? I have to check your setup to find out what’s the reason behind this behavior.

Sep 24, 2019 at 10:13 pm
#112861
Moderator
Shahriar
Staff OP

Hi,

Amazon S3 Manager is still in beta. Please use the S3 meta box in edit package screen to upload a file or create a bucket. It doesn’t support create dir feature yet. But it is noted for implementation in next release.

Thanks.

Sep 24, 2019 at 10:07 pm
#112860
Moderator
Shahriar
Staff OP

Hi,

You can use a custom template for /wpdm-archive=page/tpls/archive-page-extended.php file to customize the view shown in your screenshot.

Copy this template file and place it in your /active-theme/download-manager/ directory. Then edit this new template to achieve your desired style. Now, this new custom template will be used instead of the default one.

Thanks.

Sep 24, 2019 at 10:02 pm
#112859
Moderator
Shahriar
Staff OP

You can use the category shortcode with paging=0 parameter. For each category use one category shortcode. Shortcode doc link https://www.wpdownloadmanager.com/doc/short-codes/wpdm_category-query-all-downloads-from-one-or-more-categories/

Another option is using the tree shortcode you tried but that requires some code customization to limit the number of packages. You have to replace 'posts_per_page' ► 9999 with 'posts_per_page' ► 3 in /plugins/wpdm-extended-shortcodes/wpdm-extended-shortcodes.php file.

Sep 24, 2019 at 9:36 pm
#112858
Moderator
Shahriar
Staff OP

I tested my credentials on your site. It loads all folders of my DB https://prnt.sc/paibru

Just to confirm, Do you see more than 4 folders when you visit the Files Tab in Dropbox?

Sep 24, 2019 at 9:19 pm
#112856
Moderator
Shahriar
Staff OP

Just add paging=0 in your shortcode to disable pagination.

Viewing 25 posts - 1,176 through 1,200 (of 12,513 total)