Also want to add that if I disable WPDM as a plugin, then the cache test works:
$ curl -I https://revocent.com
HTTP/2 200
date: Fri, 15 Mar 2019 20:59:20 GMT
content-type: text/html; charset=UTF-8
content-length: 74200
server: Apache
x-pingback: https://revocent.com/xmlrpc.php
link: <https://revocent.com/wp-json/>; rel=”https://api.w.org/”, <https://wp.me/P7uo5D-7Z>; rel=shortlink
x-cacheable: YES:Forced
accept-ranges: bytes
x-varnish: 1300611924
age: 0
So it’s definitely something that WPDM is doing.
Not all answers solve my questions, I will number the questions, make it easier?
(Tried the ol list but no numbers?)
1 File Cart shortcode [wpdm_file_cart]
► This will show the whole Cart, what I want is the tabs/buttons that will take you to the File Cart to be in the header, instead of floating on the right side. So it would be great if there was a shortcode to solve this.
2 Not clear which name you want to change. Could you please send a screenshot pointing the location?
► Here I mean the same tab/button that send you to the cart. Right now it says: “Regiobranding downloads”. I would like there just Downloads or just a icon. The text is not wrapped in a span or something so to work it with CSS is also difficult. See https://www.iqheadquarter.nl/regiobranding/regiobranding-categorie/kaart/ for what I mean, right side the big tabs.
3 Possible but requires lots of customization to show cart on the pop-up.
► Maybe it is easier to open in Lightbox? Is that possible?
4 Please translate the text from /wpdm-file-cart.php file. Currently, the add-on doesn’t have the language file.
► Does this mean I have to do this again every time when the Add on had an update?
5 My question: I combine File Cart with Form Lock and I have made a form with Contact Form 7. This is working but: First you have to fill in the form, click on send button and then the download button appears. I would like the send button of the form to start the download immediately so you won’t have to click another button. Is this possible?
Your answer: Not possible right now. But noted for implementation.
► My client doesn’t like that. Is it maybe possible with Gravity forms or will I have also 2 buttons?
6 My question: Also I would expect the File cart to be empty after downloading, but it isn’t?
Your answer: Add the following code at line 123 in /wpdm-file-cart/tpls/file-cart-html.php to empty the cart after download.
localStorage.removeItem(‘file_cart_data’);
► This works only partially, cart is not empty until you go to another page. Apparently something has to refresh as well. Do you have a solution for that?
The url for all this https://www.iqheadquarter.nl/regiobranding/regiobranding-categorie/kaart/
Thanks again and hopefully you can help.
Regards Ariane
The thing is package details page or link template won’t show this download link to the non-members. I guess you are using this URL in a customized way.
There is still a way to redirect the user using the wpdm_download_permission_denied
hook. Add the following code to your theme’s function.php file to redirect the user to the login page ( replace the your_login_url
with proper url ),
add_action('wpdm_download_permission_denied', 'wpdm_permission_denied_login_redirect');
function wpdm_permission_denied_login_redirect($id){
if( !is_user_logged_in() ):
wp_redirect( "your_login_url" );
exit();
endif;
}
Hello guys,
Right now, I’m using this code to generate my download button:
$data['download_link'] = \WPDM\Package::downloadLink($data['ID'], 0, array(
'template_type' ► 'link'
));
It generates this kind of HTML:
<a class="wpdm-download-link btn btn-primary " rel="nofollow" href="#" onclick="location.href='https://mysite.com/?wpdmdl=5286&refresh=5c6d13a29aef41550652322';return false;"><span>Download</span></a>
In the <a>
tag, I would like to add a data-url attribute that will contain the href to the file. How can I do that? How can I get only the url, not the full <a>
tag ?
In fact, I need that because I want to create a “Download selected files” button, that will launch multiple downloads at once, depending on selected packages. (not all-in-one ZIP, but trigger each download separately). How would you do that?
Thank you in advance,
Cedric
This reply has been marked as private.
The user can change their avatar from frontend uploader page. Currently, This is allowed for users that have access to the frontend uploader page [wpdm_frontend flaturl=0]
Another option is using a Gravatar account ( http://en.gravatar.com/ ). Using Gravatar anyone can change the avatar associated with their email address.
We have just migrated multiple WordPress sites which use the Download Manager plugin to a new server with php 7.1.26 installed (the old server used 5.3). Ever since, the download buttons on WPDM package pages do not work – they do change the url of the window, but nothing downloads. However, if you remove the “WPDM Package URL Base” and the package name from the URL in the address bar, you not only get the download, but also the BEHAVIOUR configured in Download Manager settings (eg. if it is configured to try and open the file in browser, it does so, otherwise it simply downloads).
Can you please advise why this has happened, and is there a simple config change we can make to correct it?
Thanks in advance
Hi!
Add the following code to your theme’s functions.php file. Replace the redirect_url
with your download page URL. And set the login page from Settings Frontend Login Page. The redirect will trigger when the user uses the WPDM login page to login to the site.
add_action( 'template_redirect', 'wpdm_login_redirect' );
function wpdm_login_redirect(){
if( is_user_logged_in() && get_the_ID() == get_option('__wpdm_login_url') ):
wp_redirect( "redirect_url" );
exit();
endif;
}
Thanks.
Download Manager has the option to replace the download button with the login page link when a user is not logged in. You can customize this login button from Settings Basic Messages Login Required Message: option. Are you trying to do that?
Or just want to redirect all guest users to the login page from any page in general? Add the following code to your theme’s functions.php
file if this is the case. Before adding the code create the login page with WPDM login shortcode [wpdm_login_form logo="your_logo_url"]
and set this page as Login Page in Settings Frontend Login Page option.
add_action( 'template_redirect', 'wpdm_login_redirect' );
function wpdm_login_redirect(){
if( ! is_user_logged_in() && get_the_ID() != get_option('__wpdm_login_url') ):
wp_redirect( get_permalink( get_option('__wpdm_login_url') ) );
exit();
endif;
}
This reply has been marked as private.
Hi,
Here are the answers to your queries:
1. If files are added as URL ( from local server or remote file ), zip download will not work, as php can’t create zip file from urls.
2. No such option for now, but noted for implementation.
3. You can do that by editing that link/page template. Doc: https://www.wpdownloadmanager.com/doc/templates/
Please give me temporary wp-admin login info in a private reply if you want me to check those in details.
Now, your forum posting should work fine, but if you face issue again in forum, please mail to support@wpdownloadmanager.com
Sorry, the option is actually “Login Required Message:” Actually, It was there before but your theme is hiding the .panel
class, that’s why the login button was hidden. I have removed the div with .panel
class and updated the “Login Required Message:” option. Now the login button is visible.
Currently login button is linked to the default WP login page. If you want you can create a page with [wpdm_login_form logo="your_logo_url"]
shortcode to use the WPDM login form. Then set that page as login page in Settings Frontend Access Login Page option.
You can use the Default Values Add-on ( https://www.wpdownloadmanager.com/download/wpdm-default-values/ ) to bulk update link template for all packages. The link template option in your first screenshot is meant for a different purpose.
another things….
the link i added is correct but i can see it ..i receive also the access denied in the txt file
<i class=”fa fa-lock”></i> Login
..the button in firefox browser disappear…i see it only on chrome browser
Add the following code ( visit the link to copy the code ) at the bottom active theme’s functions.php
file. This code should hide “Upload” and “URL” tab and activate the “Browse” tab.
https://codeshare.io/aY4j1N
Hi,
Use [wpdm_frontend flaturl=0]
shortcode for frontend uploading.
You can use a simple upload form. But that requires using a custom template file for the /download-manager/tpls/wpdm-add-new-file-front.php
file.
You can check the template doc here https://www.wpdownloadmanager.com/doc/template-files/
Basically, copy the template file and place it in your /active-theme/download-manager/
directory. Then make necessary changes. Now you new customized file will be used instead of the built-in one.
If you need further help, send FTP and wp-admin login info in private reply, I will add the custom template file for you.
Thanks.
I have installed the Pro version of Download Manager on your site, you’re using the free version before. Use the package shortcode to show the downloads. You were using the direct download link. Use this [wpdm_package id='10451' template="5c548c4de15c6"]
insted of Curva sofa -3D Files - Download
I also created a custom link template 5c548c4de15c6
to show only title and download button just like your old style. Now you have to add the following message in your “Permission Denied Message for Packages:” settings and save settings.
<a href="https://www.tosconova.com/nuovo/wp-login.php?redirect_to=[this_url]" class="btn btn-danger btn-sm"><i class="fa fa-lock"></i> Login</a>
Side Note: Add the following code in your site .htaccess
file to allow the AJAX saving of WPDM settings. Curenntly your server isn’t allowing the saving operation, that’s why I can’t add the “Permission Denied Message for Packages:”
<IfModule mod_security.c>
SecFilterRemove 001868
</IfModule>
WPDM Doesn’t control that part of permalink settings. It can customize the category and package URL bases. But you can use third-party plugins to add the .html
I have tested this one https://wordpress.org/plugins/custom-post-type-permalinks/ Looks like working fine.
Hello,
Our setup is using the FTP add-on to link files in packages.
After updating both WPDM (4.7.7 to 4.9.0) and WordPress (4.9.9 to 5.0.3) we are experiencing some download problems.
Since doing those updated when clicking any file’s download button we get a txt file “download error” that specifies a URL that was not retrievable. It seems like the file ID get’s inserted into the URL? Something like this: http://ftp.example/5b28a0e884de9-filename-example.pdf
I believe that before this ID was not inserted into the URL.
I have reverted to a backup for now, any idea what might be causing this?
Actually, No other configuration option available for S3 add-on. The add-on adds the capability of adding S3 files to your packages. And serves the download by generating temporary dynamic URL for s3 files.
You have to add an extra class to control the size. For example, adding btn-lg
class will make the button larger. Or you can just add inline CSS there.
<a class="btn btn-success btn-lg" href="[download_url]">[link_label]</a>
I have tested this on my setup. It works perfectly.
Hi,
If you use caching plugin WPDM doesn’t affect the performance as the page is served from cache. The only load it adds is static JS and CSS files which is not much and you are also minifying those.
So, couldn’t think of any other option to increase the performance except the server capacity.
The URL you sent above ask login info. But the login page loaded pretty fast.
Thanks.
I have tested LinkedIn share lock using my LinkedIn App Credentials. Works fine. Firefox blocks tracking scripts by default. Maybe that’s why the popup is not working for you. But it works for me both in Chrome and Firefox.
Add your website URL in 2 options of LinkedIn App settings,
1 ) SDK Settings Javascript Valid SDK domains:
2 ) Auth OAuth 2.0 settings Redirect URLs:
In your Package Settings Icon options, the
https:
part is missing from icon URL which was creating the issue. I have added a patch which will show the icon when URL is in your current format. But I guess you have uploaded a custom icon there which was gone after installing the patched version. So, now just upload your custom icon in /download-manager/assets/file-type-icons/
dir. Make sure to keep the file name same as before image_device_list.png
The patch was replacing line 183 in /download-manager/libs/class.Package.php
with the following code,
else if ( strpos($post_vars['icon'], '//') === FALSE )
@jerschae, the total structure is completely different now, please create a new post with your issue, add issue url and the shortcode you are using.
1. Up until today, I have used the free plugin version to set up a new page.
I have inserted the following shortcode into several dozen pages, referencing the link-template-default which rendered a nice, one-column list of downloads:
[wpdm_category id="tickets-swiss-travel-pass-de" toolbar="0" order_by="field name" order="asc" template="link-template-default"]
2. With the upgrade to the Pro version, the same link template has somehow changed (link-template-default), so all of my pages no longer displayed the same list. Here is one example where it is now showing a panel instead.
3. Since I don’t want to update 60+ pages by changing the shortcode to another link template, I figured out how to go into PHP in order to override the template.
4. For now, I have come up with the following snippet, hoping that it would nicely show my downloads like in the preview window within WP. I have overwritten the link-template-default, but the result looks pretty terrible and I can’t figure out how to make it a list again:
<!– WPDM Link Template: Default Template –>
<div class=”panel panel-default wpdm-link-template link-template-default”>
<div class=”panel-body”>
[thumb_200x100]
<div class=”panel-content”>
<h4 style=”padding-top: 0px;border:0px;margin: 0px;line-height: 1.7″>[title]</h4>
<i class=”fas fa-hdd color-red”></i> [icon]
</div>
</div>
<div class=”panel-footer”>
[download_link]
</div>
</div>
5. Can you give me the correct code snippet which will create a view such as this one of yours?
Thank you in advance!
PS. And how can I add a target=”_blank” to the DOWNLOAD button, so that a new tab opens when someone clicks the button?