totallywp
Forum Replies Created
-
Hi,
I don’t know whether this reply is helpful to you. But anyone who are facing this issue can solve their problem.
The only way I found is updating the plugins manually. Here are the steps,
- Backup your Web Site and database
- Download the plugin from the plugin repository
- Unzip the downloaded plugin
- Delete the existing plugin from the plugins directory (“wp-content/plugins” directory)
- Add new plugin to the plugins directory
- Check from the Plugins area in the admin panel whether plugin is updated to the latest version and in the activated state
- This reply was modified 7 years, 5 months ago by totallywp.
Forum: Plugins
In reply to: [Contact Form 7] Even WordPress email failsCan you try with “No Encryption”. Because I fixed Contact Form 7 mails in Godaddy Hosting before.
The way I worked mentioned here.
Forum: Plugins
In reply to: [Contact Form 7] error !!!!You must have pages called
header.php
andfooter.php
in your WordPress Theme folder.header.php
In
header.php
file just before the</head>
close, called towp_head()
like this.<head> -------------- -------------- -------------- <?php wp_head(); ?> </head>
footer.php
In
footer.php
file just before the</body>
close, called towp_footer()
like this.<body> -------------- -------------- -------------- <?php wp_footer(); ?> </body> </html>
Hope this will helps you.
Forum: Plugins
In reply to: [Contact Form 7] trying to line up ReCaptcha and Submit on same lineShare a screenshot or the link to see
Forum: Plugins
In reply to: [Contact Form 7] Contact Form do not display messagesHi,
Go through this
Forum: Plugins
In reply to: [Contact Form 7] Red failed messageHi,
Could you share a screenshot of mail configuration.
Forum: Plugins
In reply to: [Contact Form 7] Email sent, but error message in form contactHi,
I check with your form. Could you disable pinterest.js. For that you need to deactivate ‘related-posts-by-zemanta’ plugin. Hope this will solve your problem. No any other problem to see.
Thanks
Forum: Plugins
In reply to: [Contact Form 7] textarea issue in mozillaIn your textarea I can see that you have used 41 cols while input fields have 40. Whether you have mentioned you are using 40×5 I can see that you are using 41×5.
Check and change it. That will solve your problem.
Thanks
Forum: Plugins
In reply to: [Contact Form 7] Form only sends to WP AdminHi,
You can use multiple email addresses for ‘To’. It is like To [email protected], [email protected], [email protected] like.
Check your other mail configurations as well.
It is better if you can provide a screenshot of your mail tab if you can’t resolve using above.
Forum: Plugins
In reply to: [Contact Form 7] Form wheel spinning all plugins disabled and theme defaultedHi,
01. Have you called wp_head() and wp_footer(), and they are in header.php and footer.php, respectively ?
02. What is the hosting you are using CF7 ? Ex: Godaddy
It is better to provide the site URL, so people can check into it.
Thanks
- This reply was modified 7 years, 9 months ago by totallywp.
Forum: Plugins
In reply to: [Contact Form 7] cf7 causing redirectsHi,
Have you called wp_head() and wp_footer(), and they are in header.php and footer.php, respectively ?
Forum: Plugins
In reply to: [Contact Form 7] Text sizeHi,
Just use CSS to change your font size.
Forum: Plugins
In reply to: [Contact Form 7] error !!!!Hi,
Have you called wp_head() and wp_footer(), and they are in header.php and footer.php, respectively ?
Are you using latest version of the plugin ? Have you called wp_head() and wp_footer(), and they are in header.php and footer.php, respectively ?
Forum: Plugins
In reply to: [Contact Form 7] Where is the textarea used in forms?Hi,
Here you can see how to configure the textarea field.
Output will like [textarea* yourId 40×5 class:your-class placeholder “Message”]
textarea – define the textarea
* – required field
40×5 – cols / rows
yourId – textarea ID
your-class – textarea class. You can use multiple classes but you need to define class everytime
“Message” – Placeholder text. You can user what ever you wantThanks