mkscripts
Forum Replies Created
-
This problem has been solved since version 2.0.3. If you have any more questions, feel free to open a new ticket.
Kind regards,
Team Download After EmailForum: Plugins
In reply to: [Download After Email - Subscribe & Download Form Plugin] File format errorIt is difficult to say where things go wrong with your PDF files. We have not seen this issue from other users before. We have improved the download script with version 2.0.3.
If you are still experiencing problems with corrupt files after this update then the cause of this problem is probably beyond the scope of our plugin.
In case we are mistaken or if you have any more questions, feel free to open a new ticket.
Kind regards,
Team Download After EmailHi,
The download forms created with Download After Email are not pages (urls) that are publicly queriable. You can put your download form(s) on a page or post by using the generated shortcode(s) (Admin Menu -> Downloads). You can use the Gutenberg shortcode block for this.
If you have any more questions, feel free to ask.
Kind regards,
Team Download After EmailHi,
This can occur in some cases due to certain characters in the form content. We will fix this with the upcoming update (probably within a week).
Thanks for letting us know and if you have any more questions, feel free to ask.
Kind regards,
Team Download After EmailForum: Plugins
In reply to: [Download After Email - Subscribe & Download Form Plugin] Php 7.0Hi,
Do you see an error? It is probably not caused by the PHP version. The php_fileinfo extension might be disabled in your PHP configuration settings.
Please let us know if it has been resolved and if you have any more questions, feel free to ask.
Best regards,
Team Download After EmailSince version 2.0.3 the CSS styling options are loaded via the do_shortcode() function by default. To disable the CSS styling options, you can use a new shortcode attribute: css=”off”.
Thank you! You are welcome! π
Nice to hear you like our plugin, thanks! If you have any more questions, feel free to open a new topic or to use the premium support section.
Kind regards,
Team Download After EmailHi,
Nice to hear you like our plugin.
With the “Background” setting you can place a picture behind the content. The “File Image” setting is used to place an image next to or above the content, depending on the width of the window / area. This also works with RTL websites. It is possible that CSS of your theme unintentionally influences the layout of the download form. If you need help with this, please mention your page with the download form so we can take a look at it.
The message “Please make sure all fields are filled in correctly” also appears if no download file has been selected. Select a download file and save your download form again to solve this.
If you have any more questions, feel free to ask.
Kind regards,
Team Download After Email- This reply was modified 6 years, 1 month ago by mkscripts.
Hi,
Our tests gave the same result, files larger than a certain value are not downloaded.
We will fix this with the next update. We try to release this update in about a week.
Thanks for letting us know and if you have any more questions, feel free to ask.
Kind regards,
Team Download After EmailForum: Plugins
In reply to: [Download After Email - Subscribe & Download Form Plugin] File format errorIt may be a corrupted PDF file, for example due to improper downloading (poor internet connectivity). It may also be related to the software to create or read a PDF file.
Forum: Plugins
In reply to: [Download After Email - Subscribe & Download Form Plugin] File format errorHi,
If I understand correctly, do you see an error after downloading the download file successfully? What is the text of this error exactly?
Kind regards,
Team Download After EmailHi,
This problem has a different cause and has nothing to do with the previously mentioned possible cause.
Our plugin uses the WordPress function wp_get_attachment_url(). This function normally returns (for example): …/dae-uploads/your-file.pdf
The functionality of this function is likely altered by another plugin via a filter, returning the following: …/dae-uploads/your-file.pdf?time=12345
As a result, the filename no longer matches. You could solve this by adding your own code using the same filter, to make exceptions for urls that contain “dae-uploads”.
You can add the following code (between the PHP tags) to your functions.php of your child theme.
<?php add_filter( 'wp_get_attachment_url', 'my_dae_attachment_url', 9999 ); function my_dae_attachment_url( $url ) { if ( ! strchr( $url, 'dae-uploads' ) ) { return $url; } preg_match( '~([^?]+).*~', $url, $matches ); return $matches[1]; } ?>Please let us know if it has been resolved and if you have any more questions, feel free to ask.
Kind regards,
Team Download After EmailForum: Plugins
In reply to: [Download After Email - Subscribe & Download Form Plugin] Button sizeHi,
You are welcome. Nice to hear you like our plugin.
Yes, you can use the “Button font-size” option to change the size of the button text.
You can change the button size by changing the “Button padding” value. The CSS padding properties are used to generate space around an element’s content (in this case the button text).
If you have any more questions, feel free to ask.
Kind regards,
Team Download After EmailWe try to release the next update in one or two days.