Tynermeister
Forum Replies Created
-
Forum: Plugins
In reply to: [WCP Contact Form] Form not recording data enteredAwesome!
Works perfectly. Forms are sending, and placeholder text is there.
Thank you again!
Forum: Plugins
In reply to: [WCP Contact Form] Form not recording data enteredThank you! 😀
Forum: Plugins
In reply to: [WCP Contact Form] Form not recording data enteredSure:
It’s found here in this forum a few months ago.
add_filter( ‘wcp_contact_form_get_fields_settings’, ‘tm6830_my_placeholders’ );
function tm6830_my_placeholders ($data) {
foreach ($data as &$item) {
switch ($item[‘name’]) {
case ‘Name’:
$item[‘atts’][‘placeholder’] = ‘Your Name’;
break;
case ‘Email’:
$item[‘atts’][‘placeholder’] = ‘Your Email’;
break;
case ‘Message’:
$item[‘atts’][‘placeholder’] = ‘Type your message here’;
break;
default:
break;
}
}
return $data;
}Forum: Plugins
In reply to: [WCP Contact Form] Form not recording data enteredOk, that’s from code you’ve sent me previously used to add placeholder text to the fields.
I’ve removed the code now, and now all the field names are reading the same as the form on your site. It’s now working fine, but it’s a pity I now have no placeholder text.
It’s unfortunate that a previous fix caused a new problem, but thank you for the quick support.
Forum: Plugins
In reply to: [WCP Contact Form] Form not recording data enteredI updated quite a few other plugins, so if it’s an issue on my end, it’s probably that. Only thought of that now, so I’ll try disabling as many as i can, but that’s the only thing I can think of.
Forum: Plugins
In reply to: [WCP Contact Form] Form not recording data enteredand that I upgraded to the most recent version of wordpress today as well.
Forum: Plugins
In reply to: [WCP Contact Form] Form not recording data enteredShouldve mentioned the form is at the bottom of http://www.craigtyner.com/
Forum: Plugins
In reply to: [WCP Contact Form] PlaceholdersThank you so much, that make so much more sense to me now!
Everything is working perfectly!
Thank you again, and sorry for causing you hassle! 🙂
Forum: Plugins
In reply to: [WCP Contact Form] PlaceholdersThanks for everything WebCodin,
Should that have made it so it adds in placeholders automatically? Because the input boxes are still blank, unfortunately.
I’m terrible with PHP so I’m afraid I’m going to need to ask for your help one more time on what more I need to modify?