Shahriar

Forum Replies Created

Viewing 25 posts - 1,076 through 1,100 (of 12,513 total)

Shahriar
Moderator

The link has to be inside .w3eden wrapper class. Other CSS doesn’t apply. You can add the .w3eden class to any parent div. Why are you using a direct link? You can use the link template ( Button Template Clone ) I have created there.

If all plugins and themes are the same as the other site then the conflict must be originated from some plugin settings. This kind of issue usually arises when a plugin tries to modify the content to add additional attributes.

in reply to: Payfast test mode not processing #113215

Shahriar
Moderator

PayFast sandbox payment is working now. It was an issue with Order ID Prefix: name. The value should be one word or connected using _ when there are multiple words. I have changed the prefix from wpdm-pb to wpdm_pb

in reply to: Pro Version Overview? #113207

Shahriar
Moderator

If you haven’t already created your PayPal app, please follow this video https://www.youtube.com/watch?v=OZeuvESoqIU

After creating the app, get your client id and secret from app settings as shown in the video. Then save those in Downloads > Settings > Premium Packages > Payment > PayPal tab. And you are ready to accept payment.

in reply to: Unable To Update. #113180

Shahriar
Moderator

Please send temporary wp-admin login info and WPDM account login info ( to login from Updates tab ) in private reply to check the issue.


Shahriar
Moderator

Hi,

Download Manager doesn’t track single file downloads separately. It counts any file download as package download. But it is possible to implement a custom solution to track single file downloads.

Thanks.

in reply to: PDF Preview and other preview #113178

Shahriar
Moderator

Hi,

You can display previews of the attached images using the [file_list_extended_400x300x3] template tag. The number represents width, height, and columns. You can change those if you want. The view looks like the following screenshot,

http://prntscr.com/pe2p6g

For audio files, you can use the [play_list] template tag. This tag will render an audio player. Another option is [play_button] which renders a simple button to play the attached audio file.

And finally, for video file use the [video_player_1200] template tag. Change the number to change the player width.

Thanks.

in reply to: Pro Version Overview? #113177

Shahriar
Moderator

Hi,

To sell downloads you have to install the Premium Package add-on

If you have already installed and activated it then go to the Package Setting meta Box > Pricing Tab when adding or editing a package. This Pricing tab controls all pricing related settings.

To set up your PayPal go to Downloads > Settings > Premium Package > Payment and activate the Paypal. Follow this tutorial to setup PayPal.

To understand details please take a look at Premium Package doc here https://www.wpdownloadmanager.com/docsfor/premium-package/ or just let me know if you have any specific query.

Thanks.

in reply to: Link template #113176

Shahriar
Moderator

Maybe you have to change the link template in your shortcode. The one you are editing probably isn’t the one set on the shortcode. Anyway, please send temporary wp-admin login info in private reply to check the issue. Send the page URL where you placed the shortcode.

in reply to: Hacker and download paths #113174

Shahriar
Moderator

Most probably some kind of bot. Detect the IPs making this kind of request and block those using the server IP blacklist. The URL is not something special, these kinds of bots just try random URLs.


Shahriar
Moderator

Hi,

Where do you want to send the notification? If you want the admin to be notified when someone creates a package from the frontend then it is possible.

Thanks.

in reply to: Autorenew #113172

Shahriar
Moderator

Hi, Canceled auto-renew of your order #5c2f0e6f3e9f3 -Thanks.

in reply to: Member Content Buttons #113171

Shahriar
Moderator

I have updated the CSS above. Please try the new code. Missed the .w3eden .btn-danger in previous reply.

in reply to: Need a way to restrict downloads to members only #113169

Shahriar
Moderator

The quickest way to apply subscriber-only access to the downloads is the Default Values add-on. You can bulk update “Allow Access” option using this add-on.

To apply a lock option custom coding is required. If this is what you want, which lock do you want to activate? I will provide you custom code based on that.


Shahriar
Moderator
This reply has been marked as private.

Shahriar
Moderator

One of your plugin is breaking the download URL when using [download_link] tag.

http://prntscr.com/pe1v0m

I have cloned Button template to create a new template with the following code. And that fixed the issue.

<a class="wpdm-download-link btn btn-info" href="[download_url]">Donwload</a>

Updated the pacakge with the new Link Template “Button Template Clone”. Try the download link in this page https://www.prounione.it/en/ecumenism/wpcu/2020-week-prayer-christian-unity/

in reply to: Member Content Buttons #113165

Shahriar
Moderator

Hi,

Here is the CSS to customize text, border, and button color.

.w3eden .panel-danger {
    border-color: #ddd;
}
.w3eden .text-danger{
    color: #ddd;
}
.w3eden .btn-danger, .w3eden .btn-danger:hover, .w3eden .btn-danger:focus, .w3eden .btn-danger:active, .w3eden .btn-danger.active{
    background-color: #ddd;
}

Please add the CSS in Appearance > Customize > Additional CSS option. Adjust the color code to what you want.

Thanks.

in reply to: Latest version of WPDM API plug-in? #113164

Shahriar
Moderator

Hi,

First, deactivate and delete the Free version. You won’t lose any data. Then install the Pro version and test the API again.

Let me know the update.

Thanks.

in reply to: REDIRECT AFTER DOWNLOAD #113162

Shahriar
Moderator

Using Lazy Download ( https://www.wpdownloadmanager.com/download/lazy-download-add-on/ ) add-on you can redirect the user to a waiting page. The download will start after the clock count downs to 0.

in reply to: MODIFY EMAIL LOCK OPTIONS #113160

Shahriar
Moderator

Hi,

What kind of modifications do you want to make? If you are trying to add more form fields then Advanced Custom Fields add-on can help you with that.

Thanks.


Shahriar
Moderator

Probably there was some js conflict, however, I’ve added following js code:

 $('#accordion-<?php echo $acccount; ?>').collapse({
  toggle: true
})
$('#accordion-<?php echo $acccount; ?> .panel-heading a').on('click', function(){
$($(this).attr('href')).collapse('toggle');
});

After jQuery(function($) { to make it work.

and It is working fine now.

in reply to: Editor Cant use Quick Add on Tiny MCE #113158

Shahriar
Moderator

Hi,

I was able to create a package from TinyMCE Quick Add as an editor. My add-on version is 2.7.4 Are you using the same version?

Thanks.

in reply to: Tiny MCE / Default Settings #113157

Shahriar
Moderator

Hi,

Okay, got it. We will take a look at this issue in next update of the TinyMCE add-on.

Thanks.

in reply to: First and Last Name don't show after registration #113156

Shahriar
Moderator

To save the custom data you have to capture it from $_POST inside a function. Hook the function to user_register Please check this reference doc for more info https://codex.wordpress.org/Plugin_API/Action_Reference/user_register

You can customize the user signup notification email from Downloads > Templates > Email Templates tab. The template id is user-signup

in reply to: Private advice – Theme #113155

Shahriar
Moderator
This reply has been marked as private.
in reply to: Payfast test mode not processing #113154

Shahriar
Moderator
This reply has been marked as private.
Viewing 25 posts - 1,076 through 1,100 (of 12,513 total)