Last time we talked about how to clear the input labels on Contact From 7 using a slight hack to the code. This is great for simply using input labels, but what about a text area? As I quickly found it, it doesn’t work.
Why is doesn’t work is because the text area is controlled by a different php file called textarea.php.
So if we open that file up and look on line 88 you will find this code:
$html = ‘‘;
We need to change it to this code:
$html = ‘‘;
Now save it and your text area will now clear itself when someone clicks on it.
Blocking Spam Bots
If you frequently look at your Google analytics and notice you all of a sudden have a huge increase in traffic, you might start getting really excited. The site is finally taking off! Or is it? There is a good chance that bots have started hitting your website. So how can you find out? First…
WordPress Easy Modal and Gravity Forms
If you are looking to create a modal box on your site with a gravity form, there is one issue we have run into a few times that can cause you a lot of headaches. The people at Gravity Forms recommend using Easy Modal for modal boxes with WordPress. In the first instance, we were…
Is your site mobile friendly
Making sure your website is mobile friendly is now more important than ever. But how can you be sure you are mobile friendly? Google has created a testing tool so you can test for yourself. It is pretty simple to use. Just type your website into the tool and see what happens. If your mobile…