We will add those fixes in the next release, so no worries.
Your server is blocking the styles and scripts requested by Download Manager. Please ask the server support to check the issue. You can send the following screenshot as reference.
https://drive.google.com/uc?id=1skXCrRFoF1xJFoo4byycAb4UgToo85TO
Hi, Deactivated auto-renewal of both orders. -Best regards.
You can use the wpdm_email_templates
hook to create new email templates. Please check the documentation here https://www.wpdownloadmanager.com/doc/filter-reference/wpdm_email_template_email_template_id-customize-email-template/
But for email lock, WPDM will always use the built-in email-lock
template.
Sorry, it is not possible yet to search the pdf content.
I have modified the add-on file, not theme code.
https://drive.google.com/uc?id=1xWlKCNWlEMMUWsLYTjVp2btcHSnnFQkH
Hi,
To fix the auto-update issue, logout and then login again from your Downloads > Settings > Updates tab.
Thanks.
Please use thumb=1
in the shortcode to display package thumbnail in the all packages table.
Hi,
You can use the Default Values add-on to bulk update package settings of old packages. Please check the details here https://www.wpdownloadmanager.com/download/wpdm-default-values/
Thanks.
You are right, Looks like the issue is related to packages with attached dir. Releasing an update soon to fix it.
Canceled the auto-renewal of order #5a532c2d946f1 -Best regards.
You can customize the template file as you want.
Hi,
Which import method did you follow? CSV or Directory import?
If download is working then no need to mkae any changes in existing pacakges. Keep them as they are now.
Thanks.
– IPN is not required when using app credentials
– PayPal should be selected automatically on checkout, please send me the site URL to check. In your previous private reply the URL is missing.
You can set link template for category archive page from Settings > Frontend Access > Category Page Options. Category archive template is coming from your theme, using the above mentioned option we can partially control the view.
– Fixed these warnings.
– Used the following code to update the file path of all packages. It was using the URL before and created a broken preview image.
function update_file_path(){
$params = array( "post_status" ► "publish", "post_type"►"wpdmpro","posts_per_page"► -1 );
$q = new WP_Query($params);
while ( $q->have_posts() ) {
$q->the_post();
$files = maybe_unserialize(get_post_meta(get_the_ID(), '__wpdm_files', true));
if ( ! is_array( $files ) ) $files = array();
foreach ($files as $key ► $file):
$files[$key] = str_replace('https://dev-wp.glasair-owners.com/wp-content/','/var/www/html/wp-content/', $file);
endforeach;
update_post_meta(get_the_ID(),'__wpdm_files', $files );
}
}
add_action('init','update_file_path');
– Re-calculated package size using the following code
function update_package_size(){
if( ! is_home() ) return;
$params = array( "post_status" ► "publish", "post_type"►"wpdmpro","posts_per_page"► -1 );
$q = new WP_Query($params);
while ( $q->have_posts() ) {
$q->the_post();
$package_size = wpdm_package_size( get_the_ID() );
update_post_meta( get_the_ID(),'__wpdm_package_size', $package_size );
}
}
add_action('init','update_package_size');
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, which means the 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
Please review your setting and let me know if orders are still in processing state after payment.
Thanks.
Please send temporary wp-admin login info in private reply to check the issue.
For simple search edit the /wpdm-archive-page/tpls/simple-search-form.php
at line 5. Place the edited file in /active-theme/download-manager/
directory to keep the template file safe from plugin update.
1 ) You can enable Lazy Download globally, so you don’t have to edit old packages to enable the lazy download.
2 & 3 ) Lazy download redirects user to a pre defined waiting page. You can any code you want there.
Add pattern=".{3,}"
to require minimum 3 characters. Suggested location was for the Compact view. Which view are you using there?
Hi,
Are you referring to the “WPDM Packages by Category” widget? You can actually serve the download right from the link template using a template with the [download_link]
tag. Change the link template from Widget settings.
Thanks.