orero
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Dropdown without default valueIt’s not an elegant solution, but by using CSS selectors you could hide them.
Forum: Plugins
In reply to: [Contact Form 7] reCAPTCHA y CF7 PROBLEMARespecto a tus preguntas:
1. No necesitas “agregarlo”, sólo llamarlo con el código que te dice en Stackoverflow:
<script src=”https://www.google.com/recaptcha/api.js” async defer></script>2 y 3. Sin ver la página, no sé decirte.
Forum: Fixing WordPress
In reply to: PHP Serbian stringsHi,
Have you tried to use iconv instead of utf8_decode?
Forum: Fixing WordPress
In reply to: No email when new comment is placedHi,
Dumb question? Have you activate it?
Check out in Settings → Discussion page:
E-mail me whenever:
– Anyone posts a comment <– is this activated?
– A comment is held for moderationRemember that the email will be recieved by post author.
Also, check in Users if the Post Author email is ok.
Forum: Fixing WordPress
In reply to: Unsafe contents blockedHi,
Some of your content ( for example, ‘http://fonts.googleapis.com/css?family=Open+Sans:400,300’) has HTTP instead of HTTPS.
Change http urls with https and should works fine.
Forum: Fixing WordPress
In reply to: Private area to share filesHi,
You can maybe use https://es.wordpress.org/plugins/buddypress/
Forum: Plugins
In reply to: [Contact Form 7] How to send three different mail from contact form 7?I think you can use hooks: https://stackoverflow.com/questions/44668136/wordpress-contact-form-7-can-i-send-3-different-emails
Forum: Plugins
In reply to: [Contact Form 7] Emails not coming throughThe API Key error, it’s not about Google Analytics, it’s about Google Maps. You probably have a map in your web and it displays the error and need an API key to solve that (check @vgstef link).
About your problem:
1. Install Flamingo plugin*
2. Try to send a message using your contact form
3. Does it appear there?If YES, check out your STMP config. Probably it’s not working properly. You can use a STMP plugin to config that easly.
*Flamingo plugin allows you to keep all the messages sent by CF7, so you won’t lose them even when don’t arrive to your mail.
Forum: Plugins
In reply to: [Contact Form 7] ErrorAre you using Safari or trying to do this in an Apple device?
Forum: Plugins
In reply to: [Contact Form 7] Acceptance checkbox not workingHi,
Your checkbox is also a input
<!– This is your code for the checkbox — > <input type="checkbox" name="acceptance-106" value="1" aria-invalid="false">You can use selectors to format just the fields you wish.
I hope it helps
- This reply was modified 7 years, 2 months ago by orero.
Forum: Plugins
In reply to: [Contact Form 7] Textarea too bigIn your CSS, add:
textarea {
resize: none;
}I hope it helps.
Forum: Plugins
In reply to: [Contact Form 7] No mail coming in after submission formSMTP? Bad config? Not enough info.
Try installing Flamingo to not miss any message.
Forum: Plugins
In reply to: [Contact Form 7] E-Mail Coming With No MessageHi,
You’re using text-730 and email-309 as “name” in the field… and then you’re “calling” them with other “name” like your-name or your-subject.
In your form, change like this:
[email* your-email “EMAIL*”]
[text your-subject "SUBJECT"]
[textarea your-message “Message”]
[submit “Send Us A Message”]Then, it should work.
Forum: Plugins
In reply to: [Contact Form 7] Output field data in uppercaseI don’t know…
How is data stored in database? A mail is sent or directly writes data in DB?
If works with mail info, maybe you could use php function strtoupper() + wpcf7_before_send_mail to convert your text (write this stuff in functions.php).
Not fluent with databases, but could be an option to do the conversion directly in DB?
Forum: Plugins
In reply to: [Contact Form 7] Help, Changing Fields Tab OrderYou have two separate divs in your form, they are like “columns”:
A B
| 1 | 2 |
| 3 | 4 |So the “tab” complete the A div (1,3) and then follow to the B div (2,4).
Usually, divs are aligned like “rows” instead of “columns”.