Actually the question in the title. I need to replace the text of the buttons in Contact Form 7 on WordPress (their value is given by the browser itself) with its own. It seems like I read what can be done through the tab Additional Settings, but I have not found how to do it
- Here, for example, several options are described here. stackoverflow.com/questions/1944267/… - HectorPrima
|
1 answer
This code inserts a button with your description and hides the original one. When you press your button, hidden is pressed.
<input type="button" value="Описание кнопки" onclick="document.getElementById('file1').click();" /> <style type="text/css">#file1{display:none;}</style> [file file-694 id:file1] |