Shahriar

Forum Replies Created

Viewing 25 posts - 4,651 through 4,675 (of 12,513 total)
Oct 11, 2018 at 7:23 am
#87995
Moderator
Shahriar
Staff OP

Please install the latest version of Download Manager to fix the author name issue. You can download it here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases

There is no option to add the edit package link. It is possible to add one but requires code customization.

Another thing is you don’t have to add a separate column for view link. You can replace your title with page_link to link title to the details page in the first column.

Oct 11, 2018 at 7:00 am
#87994
Moderator
Shahriar
Staff OP

Please send temporary wp-admin login info in private reply to check the issue.

Oct 11, 2018 at 6:57 am
#87993
Moderator
Shahriar
Staff OP

Hi,

Only administrator users are given full access to the file browser. The editor gets a partial access to /download-manager-files/username/ directory.

Comment/remove line no 10 in /download-manager/modules/server-file-browser.php if you want to give full file browser access to selected roles.

$root = current_user_can('manage_options')?$root:UPLOAD_DIR.$current_user->user_login.'/';

Thanks.

Oct 10, 2018 at 5:38 pm
#87983
Moderator
Shahriar
Staff OP

You have to use package shortcode multiple times in this case. No other option available.

Oct 10, 2018 at 5:35 pm
#87982
Moderator
Shahriar
Staff OP

Disabled user signup notification mail by commenting line no 433 in /download-manager/libs/class.Apply.php file,

https://www.evernote.com/l/AUda4wXrqBxAUahkEj5Wev29Oh_dM9zX4P0B/image.png

Disabled membership signup notification mail by commenting line no 226 in /wppromembership/functions.php file,

https://www.evernote.com/l/AUfbDQ9tLRBJKZkrT_MiJ4YGq1iOOZc4Ng4B/image.png

Oct 10, 2018 at 4:59 pm
#87981
Moderator
Shahriar
Staff OP

Need FTP login to create the template file. Also, what do you want to use as button text in the register button?

Oct 10, 2018 at 4:12 pm
#87979
Moderator
Shahriar
Staff OP

Please try this <a class="pull-left" href="[download_url]" target="_blank">[icon]</a>

Oct 10, 2018 at 3:26 pm
#87977
Moderator
Shahriar
Staff OP

Please add the following code to your theme’s functions.php file to exclude download manager packages from site search,

function wpdm_exclude_from_search() {
    global $wp_post_types;

    if ( post_type_exists( 'wpdmpro' ) ) {
        $wp_post_types['wpdmpro']->exclude_from_search = true;
    }
}
add_action( 'init', 'wpdm_exclude_from_search', 99 );
Oct 10, 2018 at 3:19 pm
#87976
Moderator
Shahriar
Staff OP

Please check if your cache plugin has the option to exclude a specific page from caching. If it is possible, exclude only the cart page from caching. There is nothing could be done from WPDM side in this case.

Oct 10, 2018 at 3:16 pm
#87975
Moderator
Shahriar
Staff OP

There is no option yet to hide empty cart. But it is pretty easy to add this feature.

1 ) Add wpdmpp-empty-cart class in /wpdm-premium-packages/includes/widgets/widget-cart.php on line no 161

https://www.evernote.com/l/AUfxunNhKT1PBr1oBcflN00CU8H0W1bI5KEB/image.png

2 ) Add this CSS .wpdmpp-empty-cart{ dispay: none; }in Customizer Additional CSS.

Oct 10, 2018 at 3:07 pm
#87969
Moderator
Shahriar
Staff OP

Please deactivate the plugin first, then reactivate it. Send login info in private reply if that doesn’t fix the issue.

Oct 10, 2018 at 2:28 pm
#87966
Moderator
Shahriar
Staff OP

1 ) Add the following CSS in your Customizer Additional CSS option to hide the downloads per page dropdown,

.dataTables_length { display: none; }

2 ) You have to use a custom template for /download-manager/tpls/wpdm-all-downloads.php to add the direct download link. Please check the template doc here https://www.wpdownloadmanager.com/doc/template-files/

Alternatively, you can add the package details page link with the title by replacing title with page_link in your shortcode.

Oct 10, 2018 at 2:03 pm
#87965
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Oct 10, 2018 at 1:59 pm
#87964
Moderator
Shahriar
Staff OP

Please send temporary wp-admin login info in private reply to check the issue.

Oct 10, 2018 at 1:55 pm
#87963
Moderator
Shahriar
Staff OP

Hi,

It is possible to hide the categories user doesn’t have access to. But you have to explicitly define category access from category settings page in this case. And have to make a minor code update as shown below in /download-manager/widgets/class.Categories.php file,

Add the following code after line no 62,

if( wpdm_user_has_access( $category->ID, 'category') )

Thanks.

Oct 10, 2018 at 1:35 pm
#87961
Moderator
Shahriar
Staff OP

Hi,

Thanks for your suggestion. It is noted for implementation.

Currently, WPDM Blocks add-on ( https://www.wpdownloadmanager.com/download/gutenberg-blocks/ ) has the search feature. This add-on works with WordPress Gutenberg editor.

Thanks.

Oct 10, 2018 at 1:18 pm
#87960
Moderator
Shahriar
Staff OP

1 ) Fixed the download limit issue

2 ) Custom message is shown only when you set a message in the custom field named acf_CustomMessage_message. This custom field was not available in your setup. I have created it and not you can set messages from edit package screen.

Oct 10, 2018 at 12:50 pm
#87959
Moderator
Shahriar
Staff OP

Hi,

Currently, it is not possible using a template. But you can copy the direct download link from all downloads page in the admin area. Each package has a button to generate a direct download link.

After copying the link you can attach it to any text you want.

https://www.evernote.com/l/AUdbmPlfkqBNe5QPADxc1TS8BAJi4rSrKWIB/image.png

Thanks.

Oct 10, 2018 at 12:45 pm
#87958
Moderator
Shahriar
Staff OP

Please try the [file_list] tag in your custom template instead of [play_list]

Oct 10, 2018 at 12:43 pm
#87957
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Oct 8, 2018 at 7:28 pm
#87906
Moderator
Shahriar
Staff OP

It is not possible to use the shortcode in the admin side. But you don’t have to put it in the admin dashboard to limit the access only to logged users. When creating the package just set Subscriber instead of All Visitors in package access settings. Now use the shortcode on any frontend page. Only logged users will be able to download the files.

Oct 8, 2018 at 7:23 pm
#87905
Moderator
Shahriar
Staff OP

Download Manager requires PHP version >= 5.4 Please ask your server support to update the PHP. That should fix this issue.

Oct 8, 2018 at 7:18 pm
#87904
Moderator
Shahriar
Staff OP

Please check if directory permissions are different for those folders. Also, check your PHP error log to find any related info.

Oct 8, 2018 at 7:14 pm
#87903
Moderator
Shahriar
Staff OP

Please send me the URL. But we need temporary admin access to run some testing to find if the issue is related to WPDM. Could you please send that?

Oct 8, 2018 at 7:09 pm
#87902
Moderator
Shahriar
Staff OP

Please set Only Block Download Link in Settings Basic Access Settings When a user is not allowed to download: Option. If that doesn’t work send temporary wp-admin login info in private reply.

Viewing 25 posts - 4,651 through 4,675 (of 12,513 total)