Yes, it is possible to customize the frontend uploader form using custom templates.
Frontend uploader uses the /tpls/wpdm-add-new-file-front.php
template to show the form. You can make your own copy of this template to simplify the uploader. Please check the template customization doc here https://www.wpdownloadmanager.com/doc/template-files/
There is another shortcode [wpdm_package_form]
which only shows the uploader form instead of all things shown by the [wpdm_frontend]
shortcode. You can check that out too.
And the final option is using File Hosting add-on. Please check the add-on details and demo https://www.wpdownloadmanager.com/download/file-hosting-sharing-add-on/
Are you referring to the download icons shown in the following screenshot?
The download works fine there too. Have I missed something?
Okay, please wait for the next update.
You are using a very old version of WPDM Pro. Please install the latest version to fix all issues. You can download it here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
We have changed the popover modal for lock due it’s compatibility issues. All locks are handled by iframe now.
Where do you encounter the issue? Could you please send me a link? Also, send me the server error log or latest entries in the error log. It will help us to identify the issue.
You can also try deactivating other plugins to check if this is a plugin issue.
You can create custom link/page templates using our Pro version. So, replacing the [download_link]
tag in any template with the following code will open the link in a new tab,
<a class="btn btn-primary" href="[download_url]" target="_blank">[link_label]</a>
Actually, it is a server setting, please ask your server/hosting support to allow “X-Frame-Options” or disabled is you are using any iframe blocker plugin.
We will add a patch to fix this on next release. So, you don’t have to repeat the procedure.
By members are you referring to the visitors/users who haven’t subscribed to any plan? Currently, the download button shows similar messages when the package requires a plan to access the download.
Does it work for you or do you want some custom shortcode like the one I provided for showing membership levels?
Hi,
File Hosting Add-on requires the WPDM Pro because the frontend access is controlled from the core settings. And these settings are not available in the free version. Please install the WPDM Pro and that will fix the File Hosting issue.
Thanks.
Use the following code to create a new shortcode [wppm_user_membership_levels]
which will display the user’s current plans.
function wppm_user_membership_levels(){ 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 ); return implode(',', $user_plan ); } add_shortcode('wppm_user_membership_levels','wppm_user_membership_levels');
Please send me the CSV file to check if there is an issue with formatting.
Please reactivate the admin access.
Please send temporary wp-admin login info in private reply. Maybe templates are there but data has been corrupted somehow. It is possible to recover the data if it is still there.
Member’s current plan is shown automatically on the user dashboard. Do you want to display it somewhere else? It is possible to create a custom shortcode for that. But let me know if you meant something else.
#demo data: Please use WordPress Importer from Tools > Import page to import demo data.
#Cash Payment & Manual Order: Found the issues. Releasing an update of Premium Package within 24 hours to fix these issues.
#Edit User Warnings: These warnings are generated because no custom fields from Downloads > Settings > QUick Form is associated with the user profile. And won’t create any functional error. But we will take care of these warnings in the next release of Advanced Custom Fields add-on.
Deactivated auto-renewal of Order#55ccbfceec242
Add the exclude
parameter in get_terms
call as shown in the following example. Here 6, 12 are category ids. Set your 5 ids there separated by commas.
$opts = array('hide_empty' ► false, 'parent' ► 0,'hierarchical'►1, 'exclude' ► array( 12, 6 ) );
You have to replace to old $opts
using this. It is on line 77.
Hi,
The category page is controlled by a template from your theme. Download Manager can partially modify the page using some hooks.
To add the toolbar we need a custom category archive template for Download Manager. You can copy the current archive template of your theme and rename it to taxonomy-wpdmcategory.php
. Then add the toolbar feature in this template. This new template gives you total control over the pacakge category archive page.
If you need help with this please send temporary wp-admin and FTP login info in private reply. Or just send me the category archive template file so I can use it to create the new template. Send a category archive page link to if you are sending the file.
Thanks.
Hi, Deactivated auto-renewal of 2 add-ons.
Please check my last reply here https://www.wpdownloadmanager.com/support/topic/the-direct-download-package-link-isnt-working/
If you are attaching a new file with the same name and want to overwrite the old file then set the option to overwrite When File Already Exists: ( Settings > Basic > Upload Settings )
Thanks for sharing the solution.
You can use [wpdm_packages]
shortcode with link templates. Here is the shortcode documentation https://www.wpdownloadmanager.com/doc/short-codes/wpdm_packages-wp_query-in-a-shortcode-for-download-manager-packages/
But Directory add-on ( https://www.wpdownloadmanager.com/download/wpdm-directory-add-on/ ) is the best option for this kind use case. Please check the demo here https://demo.wpdownloadmanager.com/wpdmpro/archive-page-default/
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 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.