Forum Replies Created
You have to update the pacakge after clicking the trash icons.
For now, do not update the add-on. We will release another update soon to fix the settings issue.
Hi,
Yes, you can upgrade to Pro and then deactivate the auto renewal. You will get 1-year support + updates with your purchase.
Thanks.
Although WPDM isn’t setting any cache header it uses PHP Session. And it seems PHP Session is setting the no-cache header automatically. I have disabled the session and tested if the is working from Proxy Cache Check Caching page. Looks like deactivating the session fixed the issue.
Please send temporary wp-admin login info in private reply to check the issue.
When using Enfold we got the ‘plupload is not defined’ error in console. I have added the following code at line no 361 in download-manager.php file to enqueue it again. Frontend upload is working now.
wp_enqueue_script('plupload');
When using Enfold we got the ‘plupload is not defined’ error in console. I have added the following code at line no 361 in download-manager.php file to enqueue it again. Frontend upload is working now.
wp_enqueue_script('plupload');
Template file location and name seems okay. So, it should work. What kind of changes have you made on inside the file content?
The modified version will be used automatically you have done everything as instructed. Could you please send me a screenshot of the folder structure of your theme directory? Or just send FTP info in private reply.
Add the following CSS to your Customize Additional CSS option,
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_paginate {
display: none;
}
Please install the TinyMCE Button ( https://www.wpdownloadmanager.com/download/advanced-tinymce-button/ ) add-on. This add-on provides easy to use GUI for various shortcodes, so you don’t have to memorize the shortcode.
Default View,
[wpdm-archive button_style="inverse" link_template="link-template-calltoaction1" order_by="post_title" order="asc" items_per_page="9" cols=1]
Sidebar View,
[wpdm-archive cat_view="sidebar" button_style="default" items_per_page=10 order_by="post_title" order="asc"]
It is possible to add the private/public status by customizing /wpdm-archive-page/tpls/aps-content-cat.php template. You have to make a copy of this template and place it in /active-theme/download-manager/ directory. Then make your changes.
Yes, you can play video right from the category shortcode page. Use a link template with [video_player_500] template tag. Or create your own link template using video player. You can adjust the player size by changing the number at the end.
You can play both local and youtube video. For youtube player the template tag is [youtube_player]
Hi,
Category archive template is controlled by your theme. But you can partially control it from Downloads Settings Frontend Access Category Page Options. Chech the avilable option there.
Another option is using a custom taxonomy archive template in your theme. The file name is taxonomy-wpdmcategory.php and you have to place it in your active theme directory. Implementing this requires PHP coding experiences.
Thanks.
Hi,
You can customize the frontend uploader page using custom templates. Frontend Uploaded uses /download-manager/tpls/wpdm-add-new-files-front.php template. Make a copy and place it in /active-theme/download-manager/ directory. Then make the necessary changes.
Documentation: https://www.wpdownloadmanager.com/doc/template-files/
Thanks.
Hi,
Found the issue. Please replace line no 106 in /download-manager/admin/menus/class.BulkImport.php with the following code. We will add the patch in next release.
if($lineno <= $current_row + 1 ) continue;
Thank you.
Some JS was broken but clearing the cache fixed the issue. Maybe you added a plugin at a point which broke the JS but the broken JS was still there due to the cache plugin. I just deactivated and reactivated all plugins.
I think the issue was coming from your “Simple Restrict” plugin. The redirect issues seem to have been resolved after deactivating this plugin.
Sorry, forgot to re-add the patch at line 464 wpdm-premium-pacakge.php file after installing a fresh copy. I installed a fresh copy when solving the session related issue. However, the master download link is working now. We will release an update soon with all the patches added to your copy.
Hi,
PDF Viewer doesn’t work with lazy download enabled pacakge. For now, deactivate Lazy download where you are using the PDF Viewer. You can disable lazy download from package settings.
Thanks.
The demo site is using our Crypton theme https://www.wpdownloadmanager.com/download/crypton/ So you need this theme to create the exact layout.
But you can also use category shortcodes to display downloads from a category. Install the TinyMCE add-on ( https://www.wpdownloadmanager.com/download/advanced-tinymce-button/ ) for using shortcode easily.
Hi,
In the latest version of the archive page add-on, we moved the category button from top to the left. So, it is not possible to use the old view in the current version without template customization.
But it seems many users including you prefer the old style. So, we are releasing a new version soon after adding the old category button style. For now, keep using the old version as you prefer it over the new design.
Thanks.
Copy the /download-manager/tpls/lock-options-iframe.php file and place it in the /active-theme/download-manager/lock-options-iframe.php location. Then edit the file. This preserves the template file when you update the plugin.
You can use the following CSS to control the success message box. Add the CSS to your Customize Additional CSS option and adjust the colors, fonts etc.
.w3eden #formarea .alert.alert-success {
background-color: rgba(46, 204, 113, 0.11) !important;
border: 1px solid #2ecc71 !important;
border-radius: 3px;
color: #15b458;
font-family: Montserrat;
font-size: 10pt;
font-weight: 100;
letter-spacing: 1px;
padding: 10px 15px !important;
max-width: 50%;
}