Forum Replies Created
-
AuthorPosts
-
admin
KeymasterThat code doesn’t look right to me in the context of our plugin.
The following action hook is triggered only when an item is being downloaded. There is no “wp_footer” code that will run for that action (when the download is being served, it doesn’t load the full wp page).
sdm_process_download_request
If you want to add some JavaScript to the footer of your site, probably better to listen for the click on a download button using your own JavaScript code.
admin
KeymasterIn the new version of the download monitor plugin, I have added a checkbox that lets you disable that single download item page. Update the plugin then edit the download item and check the “Disable the Single Download Page for This Download Item” checkbox. That should resolve this.
admin
KeymasterI have just updated the squeeze form addon so it will show the “Email Sent” message only to the squeeze form that was submitted. Please download a new copy of the squeeze from addon.
admin
KeymasterThe following translation documentation should be helpful:
admin
KeymasterAt the moment this only has plain text email support. In the future, we will look at adding an “HTML” option for it.
admin
KeymasterThat text can be customized by modifying the translation file. Are you using a localized translation for your site?
admin
KeymasterI have just updated the squeeze form addon so it will show the terms and conditions checkbox if you have enabled it in the main plugin’s settings. Please download a new copy of the squeeze from addon from here – https://simple-download-monitor.com/my-downloads/
admin
KeymasterWe have released a new version of the plugin that has a fix for this. Thanks.
admin
KeymasterWe will investigate this and get back to you.
admin
KeymasterWe don’t have an option for this with the hidden downloads at the moment.
admin
KeymasterUse the following addon, it should let you upload other file types to your WordPress library:
admin
KeymasterThis seems like the cause of a conflict. Do the following test please:
Test for Plugin and Theme Conflict Before Posting an Issue or a Bug
May 26, 2019 at 7:01 am in reply to: Change Download Now to just Download using CSS for Categories #1162admin
KeymasterThis is something you would change in the shortcode parameter. You should be able to sue the following parameter in your shortcode to customize the download button text to a custom one:
button_text="Your Custom Download Text Here"
admin
KeymasterI have added a CSS example in the following page that should show you how you can use CSS to hide the download item title for fancy 2 template:
admin
KeymasterYou can use CSS tweaks to change the color. For example, the following CSS tweak will change the font color of the “name” and “email” fields to blue:
.sdm_squeeze_name{
color: blue !important;
}.sdm_squeeze_email{
color: blue !important;
} -
AuthorPosts