mkscripts
Forum Replies Created
-
Forum: Plugins
In reply to: [Download After Email - Subscribe & Download Form Plugin] Download file errorHi,
We tested your download form and noticed you are using a custom download link button with a wrong href value. To solve this, make sure you are using the download URL given by our plugin as href value.
If you have any more questions, feel free to ask.
Kind regards,
Team Download After EmailHi,
You’re welcome! You could try something like this:
add_action( 'wp_enqueue_scripts', 'my_dae_enqueue_scripts', 20 ); function my_dae_enqueue_scripts() { wp_dequeue_style( 'dae-fa' ); $url_fa = dirname( dirname( dirname( get_stylesheet_uri() ) ) ) . '/plugins/download-after-email/css/all.css'; wp_enqueue_style( 'my-dae-fa', str_replace( 'www.', '', $url_fa ) ); }You can add this code to your functions.php of your child theme or via a custom plugin.
Kind regards,
Team Download After EmailHi,
Thank you, good to hear you like our plugin. We appreciate it!
For security reasons, browsers restrict cross-origin HTTP requests. If you inspect the elements in your browser you will see the following error: “… has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource”.
The Font Awesome <link> element in the <head> section of your live site contains a different URL than the ones that are requested. The difference is the presence of “www.”.
The solution is to add the correct headers (.htaccess / httpd.conf).
# Apache config <FilesMatch ".(eot|ttf|otf|woff|woff2)"> Header set Access-Control-Allow-Origin "*" </FilesMatch> # nginx config if ($filename ~* ^.*?\.(eot)|(ttf)|(otf)|(woff)|(woff2)$){ add_header Access-Control-Allow-Origin *; }This example sets the Access-Control-Allow-Origin CORS configuration to allow pulling from all domains. You can also list domains (comma separated) if you want to pull from specific domains.
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] Add CaptchaHi,
That’s good to hear, we appreciate it!
Spam almost never occurs with the AJAX-based download forms of Download After Email. If necessary, we will take extra measures to stop the spam, preferably without Recaptcha due to user-friendliness.
If you have any more questions, feel free to ask.
Kind regards,
Team Download After EmailHi,
This is due to the way you try to add the shortcode to a page or post (the widget you’re using does not belong to Download After Email). You can add the shortcode with the shortcode Gutenberg block or if you use the classic editor you can paste the shortcode anywhere inside the content editor where you want it to be displayed.
If you have any more questions, feel free to ask.
Kind regards,
Team Download After EmailHi,
That’s nice to hear, thank you!
A simple solution could be to use the artist name in the filename so you can use the placeholder {download_file} in the email subject in Admin Menu -> Downloads -> Messages.
If you prefer coding, there is a filter available to adjust the email subject:
$subject = apply_filters( 'dae_email_subject', $subject, $values, $file );This filter is located in /wp-content/plugins/download-after-email/includes/shortcodes.php
Kind regards,
Team Download After EmailHi,
You could check that the From Name and From Email are set correctly (admin menu-> downloads-> messages). Make sure that From Name does not contain special characters and for From Email use an email address attached to your own domain. Some servers may require a mail user account has been created with this email address.
If there are still issues with receiving emails, you could install an SMTP plugin. You could also use a dedicated SMTP provider to send the emails, so that emails are no longer sent by your own server.
Kind regards,
Team Download After EmailForum: Plugins
In reply to: [Download After Email - Subscribe & Download Form Plugin] Multilanguage Url’sHi,
We’ll look at this with the next update. Thank you for letting us know.
Kind regards,
Team Download After EmailHi,
Yes, there is a filter available to adjust the email message including the download link (/wp-content/plugins/download-after-email/includes/shortcodes.php).
$message = apply_filters( 'dae_email_message', $message, $values, $messages['email_content'], $file, $download_url );If you are using the placeholder {download_link} in your email message, you can replace this placeholder with your custom download link.
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] email displayHi,
Thank you, that’s nice to hear!
1. You can set the “From Name” in Admin Menu -> Downloads -> Messages.
2. Download After Email does not (yet) integrate with third party cloud services. You can place a (OneDrive) sharing link in the email that is sent to your subscribers. It is still necessary to select a download file when creating a download form. If you want to offer multiple downloads (with a different sharing link), you can use a filter to display the correct sharing link in the email message (programming). You can find this filter (‘dae_email_message’) in wp-content/plugins/download-after-email/includes/shortcodes.php.
Often it is not necessary (in terms of bandwidth) to use third party cloud services, especially when it comes to small files.
If you have any more questions, feel free to ask.
Best regards,
Team Download After EmailHi,
You are welcome. Nice to hear it’s working now.
Hi,
We have answered your email about this issue, but the server seems to have a delivery problem with Yahoo email addresses.
Download After Email works on all browsers. The reason why it’s not working on your site is that AJAX requests are not working well, returning a 403 error. You can find more information about this issue here:
https://ww.wp.xz.cn/support/topic/cause-admin-ajax-php-403-forbidden/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] ErrorHi,
We have already had contact via email, but for the record the message “Please make sure all fields are filled in correctly.” also appears if no download file is selected for the download form.
Kind regards,
Team Download After EmailHi,
The text of the notification email is translatable and is present in the dae.pot file.
It is also possible to customize the notification email by using a filter:
$notification_message = apply_filters( 'dae_email_notification', $notification_message, $values, $file );Kind regards,
Team Download After Email- This reply was modified 6 years ago by mkscripts.
Forum: Plugins
In reply to: [Download After Email - Subscribe & Download Form Plugin] Php 7.0You’re welcome and thanks for letting us know.
If you have any more questions, feel free to open a new ticket.
Kind regards,
Team Download After Email