Shahriar

Forum Replies Created

Viewing 25 posts - 5,551 through 5,575 (of 12,513 total)
Jun 26, 2018 at 9:55 am
#79603
Moderator
Shahriar
Staff OP

Added redirect parameter in login shortcode to redirect to the dashboard page.

[wpdm_login_form redirect="https://wirtschaftundethik.ch/publikationen-download-center/"]

No option to show all downloads in user dashboard. Code customization is required to implement this feature.

Please take a look at Archive Page add-on https://demo.wpdownloadmanager.com/wpdmpro/archive-page-default/ It has category filtering feature. Archive Page has some other views too, check all views in Directory Add-on menu dropdown. You can use shortcodes to show these views anywhere you want.

Jun 25, 2018 at 4:15 pm
#79551
Moderator
Shahriar
Staff OP

Hi,

Download Manager requires PHP version >= 5.4 Please ask your server support to upgrade PHP version to fix this issue.

Thanks.

Jun 25, 2018 at 12:20 pm
#79546
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Jun 25, 2018 at 7:14 am
#79532
Moderator
Shahriar
Staff OP

No way to automate this. Most probably those files were attached from a location where they don’t exist anymore.

Jun 25, 2018 at 7:11 am
#79531
Moderator
Shahriar
Staff OP

Could you please re-check the login info? Not working for me. Btw, The -1 could appear when the user is logged out of the WordPress.

Jun 25, 2018 at 7:05 am
#79529
Moderator
Shahriar
Staff OP

Hi,

Unlocked the key from the test server. Please try now.

Thanks.

Jun 25, 2018 at 7:02 am
#79528
Moderator
Shahriar
Staff OP

Hi,

We will complete the customization within 24 hours of payment. You can request any minor changes after the work is done. We do not ask for extra payments for these changes/revisions.

Yes, it does include setting up the login, register etc pages.

No, it does not include bulk import users option. But there are some plugins ( e.g. https://wordpress.org/plugins/import-users-from-csv-with-meta/ ) that can perform this operation.

Thanks.

Jun 25, 2018 at 6:48 am
#79526
Moderator
Shahriar
Staff OP

The issue may be related to a plugin conflict. Please try deactivating other plugins to pinpoint where it is coming from.

I have created a demo package here ( https://demo.wpdownloadmanager.com/wpdmpro/download/book/ ) with same lock feature and it worked fine in IE 11.

Jun 24, 2018 at 9:06 pm
#79507
Moderator
Shahriar
Staff OP

Hi,

Sorry for the delayed reply. It seems there is nothing to do from WPDM side as wget uses the URL to name the file. WPDM download links are dynamic, it doesn’t contain the exact file name which wget can use to name the file.

But there is an option to set the file name and the download URL contains the package name. So, I think your users can utilize it.

Thanks.

Jun 24, 2018 at 8:33 pm
#79504
Moderator
Shahriar
Staff OP

Sorry for the delayed reply.

Could you please send temporary wp-admin and FTP info? I will add some custom code to check if that fixes the issue you are facing with individual downloads.

Jun 24, 2018 at 5:09 pm
#79499
Moderator
Shahriar
Staff OP

This is not a template file. So, you can’t create a copy of it. The only option, for now, is editing this file after each update :(.

Jun 24, 2018 at 5:07 pm
#79498
Moderator
Shahriar
Staff OP

1 ) The download limit of a member is calculated by summing up limits of all member plans. In your example, the limit is 40.

2 ) Membership plans are independent. No option yet to create sub-membership. Although, it seems same as creating another membership plan.

Jun 24, 2018 at 4:35 pm
#79496
Moderator
Shahriar
Staff OP

Permission settings in WPDM categories are saved as options, not custom fields. Maybe WPML duplicate option is not available for options.

Jun 24, 2018 at 4:35 pm
#79495
Moderator
Shahriar
Staff OP

Please check now. I have added the file. There was an error in the code above. The Deutschland category is showing the image I set from category settings.

Jun 24, 2018 at 10:00 am
#79478
Moderator
Shahriar
Staff OP

Are you using Download Limit add-on? The limit exceeded notice is coming from there or your package settings. However, Please send temporary wp-admin login info if you want me to check that.

Install and Activate Premium Package add-on to sell packages. After activation, you a new tab with pricing options will appear in packages settings meta box.

Jun 24, 2018 at 9:30 am
#79477
Moderator
Shahriar
Staff OP

WPDM uses server time. No option yet to change the timezone unless you do it from server settings. However, we will adjust this feature soo to sync timezone with WordPress settings.

Jun 24, 2018 at 9:04 am
#79476
Moderator
Shahriar
Staff OP

Yes, we can add the subscribers and stats in frontend uploader dashboard or anywhere in the frontend. That would require 4 hours of customization. Total customization would be $300 only.

Jun 24, 2018 at 8:57 am
#79475
Moderator
Shahriar
Staff OP

It is possible but requires plugin customization. Add the following code after line 26 to get the category icon. Then include the variable as shown in the screenshot ( marked 2 )

$category_obj = get_term($term->term_id);
$category_metadata = maybe_unserialize( get_option(  "__wpdmcategory"  ) );
$category_image_url = isset( $category_metadata[ $category_obj->term_id ][ 'icon' ] ) ? $category_metadata[ $category_obj->term_id ][ 'icon' ] : '';
$cat_icon = $category_image_url != '' ? '' . $category_obj-/>name . '' : '';

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

If you want to keep your changes unaffected by plugin update then copy the customized file and place it in /active-theme/download-manager/ directory.

Jun 23, 2018 at 8:47 pm
#79465
Moderator
Shahriar
Staff OP

You have to modify the plugin file for that. No option to implement it from the shortcode. All required changes are marked in the screenshot below,

https://www.evernote.com/l/AUd-iq_jzPBAr5U8PvglqEH9oZZ5NUD_YQ4B/image.png

Jun 23, 2018 at 8:38 pm
#79464
Moderator
Shahriar
Staff OP

Hi,

It is possible to keep the package download button open in the same session once the package is unlocked. You can add the following code after line 193 in /download-manager/libs/class.PackageLocks.php to apply it,

if( isset( $_SESSION[ '_wpdm_unlocked_'.$package['ID'] ] ) == 1 ) {
            $download_url = \WPDM\Package::expirableDownloadLink( $package['ID'] );
            $link_label = get_post_meta($package['ID'], '__wpdm_link_label', true);
            $link_label = trim($link_label) != '' ? $link_label : __('Download', 'wpdmpro');
            $data = "";
}

But it will require very lengthy modification to unlock single file links. For now, use this modification. We will consider what you proposed for the future release of WPDM.

Thanks.

Jun 23, 2018 at 3:08 pm
#79461
Moderator
Shahriar
Staff OP

Hi,

Using Newsletter add-on ( https://www.wpdownloadmanager.com/download/wordpress-newsletters-autoresponder-plugin/ ) you can do it but that requires users to subscribe to your list first.

Thanks.

Jun 23, 2018 at 2:58 pm
#79460
Moderator
Shahriar
Staff OP

I have removed the previous attachment and attached the FR file again. The download is working now. If you find similar cases you can try this approach.

Jun 23, 2018 at 2:43 pm
#79459
Moderator
Shahriar
Staff OP

Yes, it is possible. To remove the Edit Profile and Settings Tab a custom template is required. Here is how you can do it,

1 ) Copy the /download-manager/tpls/author-dashboard.php
2 ) Put the file in this dir /active-theme/download-manager/author-dashboard.php
3 ) Remove line 23 and 25 from the template file

Let me know if you have further questions.

Jun 23, 2018 at 2:36 pm
#79458
Moderator
Shahriar
Staff OP

Hi,

cURL is not active or installed or not functioning properly in your server. Please ask your server support to enable cURL. That should fix the license verification issue.

Thanks.

Jun 22, 2018 at 6:34 pm
#79434
Moderator
Shahriar
Staff OP

Hi,

Font Awesome is not from Google fonts.

WPDM does load google fonts in some pages. There is no option to disable google fonts. If you want to remove Google fonts you have to do it manually. Remove the line no 1 from /download-manager/assets/css/front.css file.

Thanks.

Viewing 25 posts - 5,551 through 5,575 (of 12,513 total)