- This topic has 4 replies, 2 voices, and was last updated 9 years, 10 months ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore Tweaks › eStore – Remove Name field from Squeeze page
Tagged: css, customize squeeze form, squeeze form, squeeze page, Tweaks
Hello.
I would like to remove the Name field from my eStore squeeze page, but I am not having any luck getting it to disappear.
I just downloaded the update to the plugin (deleted and then uploaded update to my site), and I am using the code [wp_eStore_free_download_squeeze_form id=1 button_text=”Get it now!”]
I have searched the forum and found a bit of code to delete from the eStore_includes and eStore_misc_function files, so I did that. The Name field is no longer required to submit the form, but it still appears on the form.
Is there any way to make it go away entirely?
Thanks,
Tara
You should be able to hide the name field from the squeeze form using a bit of CSS tweak. Please post a link to the page where you have the squeeze form so I can inspect and provide help.
It’s [http://feelslikehomeblog.com] and the form is in the sidebar.
Do the following:
1) Grab this custom CSS tweaking plugin:
https://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413
2) Add the following CSS in there:
.eStore_sf_name_label{
display: none;
}
.eStore_sf_name_field{
display: none;
}
I can’t believe it was so simple. I already had custom CSS, so I didn’t even have to get the plugin. Thanks so much!