neuroine
Forum Replies Created
-
Forum: Plugins
In reply to: [Email download link] Cron job not workingOk, thanks for the information, I assume you have set the option
YES (Use WP CRON, Daily refresh)
In another case, when you select a specific day, the function compares the day name in Spanish with English name, if the names match it will perform download urls refresh.
Forum: Plugins
In reply to: [Email download link] Cron job not working@gopiplus I found a bug in
classes/ed-register.php
$current_day = date_i18n("l");
this will only run CRON job if you set English in WordPress Settings->General
In this place should be
$current_day = date("l");
Forum: Plugins
In reply to: [Email download link] Cron job not working@luisantiago does your CRON work automatically?
It looks like Last run shows my last manual run of CRON job.
Forum: Plugins
In reply to: [Email download link] Is it possible to use this plugin for more than 1 fileYes, you can create multiple Download Link and each with a different shortcode.
Forum: Plugins
In reply to: [Email download link] GDPR checkbox requiredForm should display a message to the user that consent is required to receive the link.
Forum: Plugins
In reply to: [Email download link] Change Form languageHi @leadongmbh, @razorbladesmile,
In plugin folder you can find
languages
folder, inside you have translation files, you need to duplicateemail-download-link.po
with nameemail-download-link-pt_PT.po
(for Portuguese) then translate using PoeditNote there is also an
email-download-link-pt_BR.po
file there.Some messages you can change directly in plugin settings
/wp-admin/admin.php?page=ed-settings&tab=messages
Forum: Plugins
In reply to: [Email download link] Option field, how work?Hi @drugo,
In here
/wp-admin/admin.php?page=ed-downloads
you need to add your 10 download links to the same group, then you can use this group in shortcode.Edit download link form have Group field where you can select group name from the list or add a new one.
This can be confusing for subscribers.
Forum: Plugins
In reply to: [FreshMail For Wordpress] Plugin breaks WPCF7I have the same issue.
Wordpress 4.9.12
Contact Form 7 5.1.4
FreshMail for WordPress 2.3.1Forum: Plugins
In reply to: [Awesome Support - WordPress HelpDesk & Support Plugin] Unnecessary codeI’ve created issue on GitHub but I still waiting for the answer.
https://github.com/Awesome-Support/Awesome-Support/issues/699
Forum: Fixing WordPress
In reply to: likely bug of wp5.0 editor?In my case it was a firewall problem,
for example: /wp-includes/js/tinymce/tinymce.min.js returned 500
Forum: Plugins
In reply to: [Awesome Support - WordPress HelpDesk & Support Plugin] Unnecessary codeI opened the URL: https://asdemo.awesomesupport.com/submit-ticket/ and under the right mouse button I chose the display source code. You can find additional code before end of
</body>
tag right after WordPress enqueue scripts in footer.Appears when only Awesome Support plugin is enabled and the page has a shortcode [ticket-submit] or [tickets].
If you set
#wp-link-wrap
todisplay: block
then you will see a hidden additional form.I know that I don’t need to copy anything from yours site. I’m asking why this code is added at the end of my page and yours?
- This reply was modified 6 years, 3 months ago by neuroine.
Forum: Plugins
In reply to: [Awesome Support - WordPress HelpDesk & Support Plugin] Unnecessary codeBut I copied this code from yours site: https://asdemo.awesomesupport.com/submit-ticket/
It shows only on pages contains awesome support shortcode
I will explain one more time:
User receives e-mail after sending ticket, and in this e-mail has direct link to the ticket. When he clicks this link but is logged out, he will get page with two forms one for login and another for registration.
I don’t know why user with ticket should have option to create another account.
When you are logged out and you are on page with existing ticket you should see only login form.
When I register on page with existing ticket I will get error message “You are not allowed to view this ticket.”.
Turning off registration completely isn’t any solution, because this form is needed.