Shahriar

Forum Replies Created

Viewing 25 posts - 1,176 through 1,200 (of 12,513 total)
in reply to: DesignServe DEV Site #112926

Shahriar
Moderator

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.

in reply to: Trash Icon hidden #112925

Shahriar
Moderator

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.

in reply to: Sorting desc by date format d-m-Y not working #112923

Shahriar
Moderator

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

in reply to: Disable Stats or Script to clear them #112922

Shahriar
Moderator
This reply has been marked as private.
in reply to: Sorting desc by date format d-m-Y not working #112919

Shahriar
Moderator

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

in reply to: Limit search to single category #112903

Shahriar
Moderator

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');
in reply to: Download Archive page search function not work #112900

Shahriar
Moderator

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


Shahriar
Moderator

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


Shahriar
Moderator

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.

in reply to: V5 update blocked and key rejected #112897

Shahriar
Moderator

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.

in reply to: Trash Icon hidden #112894

Shahriar
Moderator
This reply has been marked as private.
in reply to: Download Account with Password #112893

Shahriar
Moderator

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.

in reply to: Disable Stats or Script to clear them #112892

Shahriar
Moderator
This reply has been marked as private.
in reply to: Sorting desc by date format d-m-Y not working #112888

Shahriar
Moderator

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') )
);

Shahriar
Moderator

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.

in reply to: Trash Icon hidden #112881

Shahriar
Moderator

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.

in reply to: Product Registration #112865

Shahriar
Moderator

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

in reply to: Limit search to single category #112864

Shahriar
Moderator

Which shortcode are you using there?


Shahriar
Moderator

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.

in reply to: "Invalid Download Link" error #112862

Shahriar
Moderator

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.

in reply to: WPDM – Amazon s3 problem with creating folders #112861

Shahriar
Moderator

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.

in reply to: Hide or Remove options in Archive Page #112860

Shahriar
Moderator

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.


Shahriar
Moderator

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.

in reply to: Dropbox Explorer Button not showing #112858

Shahriar
Moderator

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?

in reply to: Missing Shortcode Parameter LIMIT #112856

Shahriar
Moderator

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

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