Shahriar

Forum Replies Created

Viewing 25 posts - 401 through 425 (of 12,510 total)

Shahriar
Moderator

Frontend “Add new” package feature is working now. Let me know if still having an issue. It is a bug in 5.3, we have added the patch in our side too for the next release.

in reply to: Bulk import limited to 10 items #115556

Shahriar
Moderator
This reply has been marked as private.

Shahriar
Moderator
This reply has been marked as private.
in reply to: user registration #115529

Shahriar
Moderator

You can add additional fields with the WPDM Registration form using Advanced Custom Fields add-on. After activating the add-on go to Downloads > Settings > Quick Forms Tab and add your additional fields. Then check the “Show in user registration form” right below the custom fields group.

in reply to: Related Downloads Addon Not Working #115527

Shahriar
Moderator

1 ) Search & replace won’t work. Have to rewrite the whole function.

2 ) You can change the link template from wpdm_similar_packages function in wpdm-functions.php file.


Shahriar
Moderator
This reply has been marked as private.
in reply to: Email Template #115503

Shahriar
Moderator

Which template did you customize? And how can I test it?

in reply to: Search Not Working Properly in Archive Directory #115502

Shahriar
Moderator

Please try deactivating the User Reviews add-on. Most probably there is a conflict.


Shahriar
Moderator

Save settings issue fixed on the dev site. Find the “Download Limit Message:” option in the Basic Settings page and remove this part <i class="fa fa-exclamation-triangle"></i> to fix the saving issue on your live site. Your server isn’t saving settings when this is present in that option. Which hosting are you using there? Recently I have seen another user having this same issue.

in reply to: No Notification to Admin for Review Submissions #115500

Shahriar
Moderator

We will add Email Template support in next release which will allow users to edit he email content.

in reply to: Disable Comments on Packages Only #115499

Shahriar
Moderator

It is a core WordPress feature, I am not sure why it doesn’t appear in your case. Try using a different user with administrator role.

in reply to: lightbox in image file_list_extended #115498

Shahriar
Moderator

Hi,

The [file_list_extended] template tag is being rendered by Box function from /download-manager/libs/class.FileList.php file. You have to copy this function and edit on top of it to add the lightbox feature. Copy the Box function and place it in your active theme’s functions.php file. Then rename the function to wpdm_box_view and add the following code right below it,

function wpdm_file_list_extended_tag_mod($vars){
    $vars['file_list_extended'] = wpdm_box_view( $vars );
    return $vars;
}
add_filter('wdm_before_fetch_template', 'wpdm_file_list_extended_tag_mod');

Now customize the new wpdm_box_view function to add the lightbox support. When the customization is complete [file_list_extended] template tag will render the box with your lightbox.

Thanks.

in reply to: Download manager js issue with getting #115496

Shahriar
Moderator
This reply has been marked as private.

Shahriar
Moderator

You can unlink the domain from your order details page https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases But no need apply the key in dev domain if it is temporary. Do you encounter the same issue in dev domain?

in reply to: redirect unauthenticated users #115492

Shahriar
Moderator

The send me the page id of all restricted pages. I will send you updated code based on that.


Shahriar
Moderator

Maybe some plugin or server rule is blocking AJAX request. You can try deactivating other plugins or please send temporary wp-admin login info in private reply so I can take a look there.

in reply to: Membership Plans #115489

Shahriar
Moderator

Its is not possible to set multiple billing cycles for singl plan. So, you have to create 12 plans.

in reply to: WEIRD problem please help. #115486

Shahriar
Moderator

Please send temporary wp-admin login info in private reply to check the issue. BTW, the code will remove the ' from the filename, it won’t make any other changes. The filename is your screenshot will be s bTransform.zip, si that what you want?

in reply to: Mail Download Link Password #115474

Shahriar
Moderator

Please check the email reply.

in reply to: Plugin isn’t very straight forward #115447

Shahriar
Moderator

1 ) In your package settings meta box set “Click here to download PDF” as “Link Label”. This “Link Label” defines the download button text which is “Download” by default.

2 ) Each package has its own details page, but it is not strictly necessary to use the details page. You can use a package shortcode to insert the download anywhere you want. Copy the package shortcode from the “All packages” admin page or use the TinyMCE Button add-on to insert shortcode visually. This add-on adds a Download icon in Gutenberg classic editor, use that to insert package in a page or post.

The result of the shortcode is controlled by the link template. You can use any of the built-in templates or create your own using Template editor from Downloads > Templates page.

3 ) If the download button isn’t visible to you then it means you user role doesn’t have access to the package. Set “All Visitors” in the “Allow access” option of package settings meta box to fix that.

in reply to: No Notification to Admin for Review Submissions #115445

Shahriar
Moderator

1 ) I have to check your setup to find out why the email is not working. The review add-on does send an email when someone submits a review.

2 ) You can check all reviews from the Dashboard > Reviews page.

3 ) None of the fields is required. But in the next version, we will make some basic inputs like name, email, message required.

in reply to: Payment Status Perpetual Processing #115434

Shahriar
Moderator

If PayPal is redirecting to the PayPal site that means your API settings are incorrect. Please create a new app and get credentials from there.

Let me know what happens after adding new API credentials. Send temporary wp-admin login info in private reply, after checking I can provide you more details about the issue. But first, please try new PayPal app credentials.

in reply to: Related Downloads Addon Not Working #115433

Shahriar
Moderator

It is based on the default tag. There is no shortcut to support your custom tag. [similar_downloads] template tag is implemented by the wpdm_similar_packages function in wpdm-functions.php file. You can try to tweak that one to create a new template tag. Basically, it requires extensive customization.


Shahriar
Moderator

Please check if you have [wpdm_direct_link] shortcode in that page. Maybe id value is missing from the shortcode.

[wpdm_direct_link] – Embed direct download link as a simple text link

Viewing 25 posts - 401 through 425 (of 12,510 total)