Shahriar

Forum Replies Created

Viewing 25 posts - 826 through 850 (of 12,513 total)
in reply to: [wpdm_category] use AND operator for tags #113980

Shahriar
Moderator

On my test, the shortcode is already working exactly as you want. Please send temporary wp-admin login info in private reply if the shortcode result is different in you case.


Shahriar
Moderator

Hi,

Downloaded zips are working fine on my test. Tested both packages http://prntscr.com/pov1em Has this issue been resolved or are you still experiencing it on your side?

Best regards.

in reply to: License invalid after migrating to another host #113977

Shahriar
Moderator

Hi,

You have to add the key to your site. Go to the Downloads > Settings > License Key Tab. Put the key there and save settings.

If you are getting the error then 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.

Thanks.

in reply to: Large Featured image at the top of the package #113976

Shahriar
Moderator

@acn, Please add this code to Appearance > Customize > Additional CSS. That should hide the thumbnail in package page.

.wpdmpro .big-preview.single-big {
    display: none;
}

Shahriar
Moderator

Tag dropdown is not available, requires code customization. It is possible to implement the exact solution you want through code customization.

in reply to: Login redirection issue #113974

Shahriar
Moderator

Hi,
I have deactivated WPDM Login redirect from Downloads > Settings > Frontend Access Now frontend users can login from WPDM Login page but if you want to access the admin side you have to login from /wp-admin url.
Thanks.

in reply to: Payment Notification With Membership Plugin #113973

Shahriar
Moderator

The name in this email is mistakenly retrieved from billing info. That’s why it is addressed to the subscriber. We will fix it in the next release.

Replaced all instances of wpmp_url("account"), with wpdm_login_url() in /wppromembership/classwpmpemail.php to fix the login URL.

in reply to: Change Subscription To Donation #113971

Shahriar
Moderator

Hi,

Code customization is required to change the word “Subscribe” to “Donation”.

Changed the “Subscribe” in plans page to “Donate” by editing /wppromembership/tpls/pricing-tables/card.php
Changed the “Subscribe” in checkout page to “Donate” by editing /wppromembership/pages/signup.php

Thanks.

in reply to: License Key not working after migration #113967

Shahriar
Moderator

I checked your license key. It is already linked to the domain. If still getting the invalid key error then it is related to old version. Install the latest version will fix this.

Please 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.

Or just send temporary wp-admin login info in private reply. I will update the plugin for you.

in reply to: Download limit not working #113966

Shahriar
Moderator

Hi Arun,

Download Limit is working on my test. You have to keep in mind, downloading the same pacakge multiple times in the same session is counted as a single download. So, maybe that’s what created the confusion in your case.

Thanks.

in reply to: Creating A Playlist With Download Manager Pro #113964

Shahriar
Moderator

Create a custom link template with just [file_list] and use that link template with category shortcode. All files will be listed as a list http://prntscr.com/pors1c

in reply to: Bulk Import with Unicode Characters #113963

Shahriar
Moderator

Please remove the utf8_encode function from /download-manager/admin/menus/class.BulkImport.php file. In other words replace the following code( line 161, 162 ),

'post_title' ► utf8_encode($csv_row['title']),
'post_content' ► utf8_encode($csv_row['description']),

with

'post_title' ► ($csv_row['title']),
'post_content' ► ($csv_row['description']),

and then import the CSV.

in reply to: PDF and Zip in one package #113961

Shahriar
Moderator

You have to serve the downloads as single files. The PDF will be stamped if it is downloaded separately. Use the [file_list] template tag to show single file download buttons.

in reply to: Paypal issue private message #113960

Shahriar
Moderator

Hi,

If you save only PayPal email address in the settings you have to Enable PayPal IPN Notification to complete the payment. In this approach user is redirected to the PayPal site to complete the paymet.

If you have created a PayPal app ( https://developer.paypal.com/developer/applications/create ) then get app credential from App settings. You have to save both Live and Sandbox Client ID and Client Secret. When these options are saved in Premium Package settings, you do not have to set up IPN. This checkout method is inline, means user stays on your site during checkout. If everything is okay with settings then you will see the “PayPal Checkout” button when selecting the PayPal option in checkout page http://prntscr.com/poquyv I have tested this just now and the order does complete after payment.

Please review your setting and let me know if orders are still in processing state after payment.

Thanks.

in reply to: File Not Found Issue #113950

Shahriar
Moderator
This reply has been marked as private.
in reply to: WordPress stating license key is invalid #113949

Shahriar
Moderator

Please send temporary wp-admin login info in private reply to check the issue. Updating plugin doesn’t change the access permissions or any other option. What was the previous permission of you packages?

in reply to: Download from google drive only with google account #113948

Shahriar
Moderator

You only have to log in when attaching the file. Download shouldn’t require login unless you have put access restriction on the pacakge. Could you please send temporary wp-admin login info in private reply, so I can take a look there?

in reply to: Dropbox Add-on direct download when click ! #113947

Shahriar
Moderator

Hi,

Yes, you direct download the Dropbox file usien Download Manager Pro.

Thanks.

in reply to: Fatal error memory size #113946

Shahriar
Moderator

If you use jstable=1 all packages are loaded at the same time. To reduce the page load time you can disable jstable by cahnging it to jstable=0 in the shortcode. In that case, only packages from the first page will be loaded initially which will reduce the load time significantly.

in reply to: Registration Page – Custom Fields #113945

Shahriar
Moderator

Hi,

You can add custom fields in the registration form using the Advanced Custom Fields add-on. Just check the “Show in user registration form” option under the custom field.

http://prntscr.com/pok8mn

You can add a custom tag for email template using wpdm_email_template_tags filter,

function wpdm_email_template_tags($tags){
    global $current_user;

    $custom_user_meta = maybe_unserialize( get_user_meta($current_user->ID,'wpdm_cregf', true ) );
    $tags["[#cust_no#]"] = array( 'value' ► $custom_user_meta['cust_no'], 'desc' ► 'Customer No' );

    return $tags;
}
add_filter('wpdm_email_template_tags','wpdm_email_template_tags');

but as Email Notification add-on doesn’t provide any template yet, there is no way to add the custom info in the email. We have added this on to-do for the next update of the add-on.

Thanks.

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

Shahriar
Moderator

Please download this file https://www.dropbox.com/s/ymrx03p8h37vya4/wpdm-all-downloads.php?dl=1 and place it in /active-theme/download-manager/ directory. This new template will override the default template and updating plugin won’t remove this file.

in reply to: Download link expired #113943

Shahriar
Moderator

Please send me the package link or download link where you got the “Download link expired” message. I tried several downloads but couldn’t re-create the issue.

in reply to: How to disable Asset Manager #113933

Shahriar
Moderator

No option yet to disable the asset manager. But you can create an empty dir and assign it as “Server File Browser Base Dir:” if you want to deactivate file browsing. User will see an empty window if you do this.

http://prntscr.com/pogyb8

in reply to: Pages Template customisation without Pro? #113932

Shahriar
Moderator

You can add the CSS in your theme or customizer option. But to change the layout of Page Template you have to create an actual page template file and you can do it by placing the file in /active-theme/download-manager/ directory.

in reply to: List of countries? #113930

Shahriar
Moderator

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

Viewing 25 posts - 826 through 850 (of 12,513 total)