Shahriar

Forum Replies Created

Viewing 25 posts - 651 through 675 (of 12,513 total)
in reply to: Generating PDF thumb for use in FacetWP #114543

Shahriar
Moderator
This reply has been marked as private.
in reply to: Permission settings #114542

Shahriar
Moderator

download-manager-files directory uses 755 permissions. You can set the same for other subdirs.

in reply to: Adjusting Column Width on Default Archive Page #114541

Shahriar
Moderator

Please try the updated code.

in reply to: Extremely Slow Load Time #114540

Shahriar
Moderator

Hi,

Download Manager handles many data-heavy operations which adds a little more load on your server as any other similar plugin would do. But that does not have any noticeable effect on site speed. And if you use a cache plugin, all WPDM pages are loaded through the cache and does not add any server load. It just serves cached pages without any server calculation.

Anyway, please send temporary wp-admin login info in private reply so I can take a closer look.

Best regards.

in reply to: Bulk import via FTP #114539

Shahriar
Moderator

Just click the + sign to attach a file/folder to your package http://prntscr.com/pt4sj5


Shahriar
Moderator

Button switch works with Pro Membership only.

To make it work with your Membership plugin a custom solution is required. But it is not simple. So, you have to request custom upgrade service for that.

in reply to: Modification to PDF stamper #114537

Shahriar
Moderator
This reply has been marked as private.
in reply to: Differentiating Files by Membership Level #114536

Shahriar
Moderator

Please use the updated code.

in reply to: Multiple Plugins Conflict with WP Download Manager #114535

Shahriar
Moderator

Where is the Automatewoo coupon dropdown? Sorry, I couldn’t find it. Mixing up posts types usually arises from not terminating local queries properly.

in reply to: Spent $250 and nothing is working!!!!! #114525

Shahriar
Moderator
This reply has been marked as private.
in reply to: Can't Assign Categories When I "Add New" Package #114514

Shahriar
Moderator

Please install and activate the REST API add-on to fix the issue with category meta box.

in reply to: WP Download Manager – PHP Notices #114465

Shahriar
Moderator

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

in reply to: Password popup does not work with DIVi Theme #114462

Shahriar
Moderator

It is not possible to use the embedded form in all packages table.

Use a custom link template with [download_link_dynamic] template tag to render the download button based on lock status. Here is the code to implement this tag.

function wpdm_download_link_dynamic($vars){
    if ( wpdm_is_locked( $vars['ID'] ) )
        $vars['download_link_dynamic'] = $vars['download_link_extended'];
    else
        $vars['download_link_dynamic'] = "<a class='btn btn-success' href='".$vars['download_url']."' target='_blank'>".$vars['link_label']."</a>";

    return $vars;
}
add_filter( 'wdm_before_fetch_template', 'wpdm_download_link_dynamic', 10, 1 );

Shahriar
Moderator

For Pay Now option the guest order is prepared automatically using PayPal email address. User will be redirected to the guest download page and download optiton will be presented there which won’t require any user action.

in reply to: Bulk import via FTP #114459

Shahriar
Moderator

Sorry, it is not possible to bulk import from Dropbox. But you can attach a Dropbox directory to the package. Users will be able to download single file from that directory and you can add files later to this directory to make them automatically available for download.


Shahriar
Moderator

Hi,

It is not possible to send the guest a download link with the email as the link requires the form submission. But the feature is noted for implementation.

For now, you can add a message on the guest order download page to let the user know they can copy the order ID from the email you sent.

Use a custom template for /wpdm-premium-packages/templates/partials/guest-order-search-form.php to add the message. This template can be overridden by copying it to /active-theme/download-manager/partials/guest-order-search-form.php

Thanks.

in reply to: Bulk import via FTP #114456

Shahriar
Moderator

Hi,

Are you referring to the Directory Import option in Downloads > Bulk Import page? In this method, one package is created for each file. Download Manager doesn’t move the files, it just links each file’s location to the package.

Thanks.


Shahriar
Moderator
This reply has been marked as private.
in reply to: Appshop Theme Modification #114453

Shahriar
Moderator
This reply has been marked as private.

Shahriar
Moderator

Just edited the login page. Please check the new shrtocode there.

in reply to: Disable Email in Private Message Plugin? #114450

Shahriar
Moderator

It is possible but the required customization is rather lengthy. In next release we will replace the email with username.

in reply to: Modification to PDF stamper #114447

Shahriar
Moderator

Could you please send me the login info again? As there are many tickets from you I am not sure where you sent it before.

in reply to: Adjusting Column Width on Default Archive Page #114446

Shahriar
Moderator

You have to wrap the CSS inside @media. Here is th eupdated CSS,

@media (min-width: 992px){
.w3eden .col-md-4 {
width: 25% !important;
}
#wpdm-downloads .col-md-4{
width: 33.33% !important;
}
.w3eden .col-md-8 {
width: 75% !important;
}
}

Shahriar
Moderator

If the user has a membership and the package is a membership item then the “Add to cart” button will be replaced by a download button automativally http://prntscr.com/pstw7i


Shahriar
Moderator

You can set the logo URL in the login shortcode. I have updated you login shortcode with your current logo.

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