Package view ( each download ) is controlled by the link template. But you will find separate parameters to use different styles of directory add-on.
Try the TinyMCE button to get familiar with the shortcode. You can read the doc here https://www.wpdownloadmanager.com/doc/installation-usage/ and let me know if you need any help to achieve any specific view.
WPDM V.5 is available for download now. So, you can just update the plugin.
There is no error on my side. Tested on Edge and Edge beta. Please try clearing browser cache.
Hi,
Please install the latest version manually for this update. Follow these steps to update the plugin,
1 ) Deactivate and delete the old version. You won’t lose any data.
2 ) Download the latest version from here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
3 ) Install the latest version and activate the license key.
Logout, and then login again from your Downloads > Settings > Updates tab. That should enabke the auto update for future versions.
Thanks.
The information is visible to anyone except membership/plan subscribers. I thought that’s what you are looking for. DO you want to hide the info from visitors who aren’t logged into your site?
I need temporary admin access to your installation to check the issue. Please create a temporary user with administrator role and send the login info as a private reply.
1 ) You have to set the page as Homepage to make the search work. I have updated homepage option. Now the search is working now.
2 ) Set widget areas from edit page screen http://prntscr.com/p17xui I have set right sidebar from this page https://tesolplanner.com/document-search/
3 ) I have set price for this package https://tesolplanner.com/download/error-pattern-log/ and that added a “Add to cart” button at the bottom.
4 ) In your setup /uploads/thenext-thumb-cache/
directory is missing. So wpeden_post_thumb
function isn’t working. I have replaced this function with wpdm_post_thumb
which fixed teh issue.
5 ) Added CSS in Customize > Additional CSS to change author header color. If you want you can modify the color code there.
6 & 7 ) Are you trying to create a page to manage packages from frontend? The correct shortcode is [wpdm_frontend]
Please check your “When user is not allowed to download:” option from Basic settings. Set it to “Only block download link” That should display all packages even when the user doesn’t have access to it.
Send temporary wp-admin login info in private reply if the issue persists.
Sorry, I meant to say the logout was working fro me in other browsers too.
But It isn’t working again on any browser. And this time I deactivated WPDM to check if it the issue is coming from there. Looks like deactivating WPDM doesn’t have an effect on the logout issue. So, it is coming from somewhere else.
You can try deactivating other plugin or switching themes to pinpoint the origin of this issue.
There was no content in the custom link and page template options in DB. So, couldn’t recover your templates. Not sure how these go lost. But if have the custom template code and id, we can use those ids for new templates. This will fix template error if you were using those lost ids in some shortcodes.
The issue happened on your other site once before. So, I guess using custom template files is a better option for you. You have to place custom link-template files in /active-theme/download-manager/link-templates/
directory. Check out the built-in template files for naming standards.
Btw, the settings are working on my test.
Yes, you can use any link-template you want to control the package view. Also, there are multiple views available. Check out all views in the demo ( last menu item dropdown ) https://demo.wpdownloadmanager.com/wpdmpro/archive-page-default/
You can insert shortcodes easily using TinyMCE button add-on https://www.wpdownloadmanager.com/download/advanced-tinymce-button/
It wasn’t working because you had an old template fro guest-order-details.php
inside your theme. I have replaced it with the new one. Guest order download is working now. Please check it and let me know the update.
I also installed the WPDM v.5 there. It is an unreleased version. Check out the new asset manager feature. We might add a few more changes here and there. So, install it again after it is available publicly.
File /download-manager/admin/menus/class.Packages.php
Line 400, 408, 468 & 469 > Change ulimit
& exmisd
to tdlulimit
& tdlexmisd
respectively.
Your server is sending the ‘x-frame-options: DENY’ header which is preventing the download initiated from the iframe. You have to remove this header or use the extended page template to allow the download. I have applied it here https://samodding.com/download/los-santos-city-police-pack/
If you want to use a custom page template then just replace [download_link]
with [download_link_extended]
there.
> Clear the cache
> Clear the error log
> Try download
Then send me the new error log.
function wppm_message_to_nonmembers( $atts, $content = "" ){ global $current_user, $wp_roles, $wppromembership; $plans = $wppromembership->get_subscriptions_name(); $plan_names = array(); foreach ($plans as $plan): array_push($plan_names, $plan['name'] ); endforeach; $roles = array_reverse($wp_roles->role_names); $levels = array(); foreach ($current_user->roles as $role) { $levels[] = isset( $roles[$role] ) ? $roles[$role] : $role; } $levels = array_unique($levels); $user_plan = array_intersect( $plan_names, $levels ); if( count( $user_plan ) > 0 ) return ""; return $content; } add_shortcode('no-wpmembership','wppm_message_to_nonmembers');
Please check if you have anything on error log now. Also, activate the download manager on subsite basis. Because each subsite maintains own file directory. You won’t have any issue now because it is the main site but it is better to be prepared for the future.
Please send me the error log file. Maybe there is a conflict between 2 active plugins. Provided user doesn’t have the admin role, so couldn’t access the plugins page.
Please send temporary wp-admin login info in private reply to check the issue. You can try deactivating other plugins to find out if this is related to some kind of conflict.
If you are moving to another installation then use the WordPress import/export option. From your old site export all downloads using the Tools > Export option. Then in new site import all downloads from Tools > Import. Then move all your files from old /uploads/download-manager-files/
to new /uploads/download-manager-files/
directory.
Looks like the issue has been resolved. Most probably the plugin was inactive when you encountered the reported issue.
1 ) You can change the language from Settings > General > Site Language option. This is a WordPress core option. Download Manager just uses the active language.
2 ) You can use custom link/page template to change styles of download presentation. FOr other stuff like login, signup form, etc you can use custom templates. Please check the related documentation here https://www.wpdownloadmanager.com/doc/template-files/
Let me know if you need help with any specific style changes.