Custom Button Text
-
Hello, for those who want a custom button text, here’s a workaround that I got working that can help you customize your buttons.
Step #1
Wrap your group field in a div or span (in this case, use add_new):<div class=”add_new”>
[field_group mensagens id=”grupo-mensagem” tabindex:1]
[textarea your-message]
[/field_group]
</div>Then add the code below to your CSS:
/* Custom Button Text */
.add_new .wpcf7-field-group button.wpcf7-field-group-add:after {content: ‘ Add new’;}
.add_new .wpcf7-field-group button.wpcf7-field-group-remove:after {content: ‘ Remove’;}
/* End Custom Button Text*/By using a div or span with a specific Class, you can add different texts for group fields.
PrintScreen: https://snag.gy/EkR09S.jpg
Hope it helps
- The topic ‘Custom Button Text’ is closed to new replies.