How do I change the text for the contact form shortcode to use <h3> tag instead of the default? The text I would like to change is highlighted in the picture below.
contact text changes
(6 posts)
(3 voices)
-
Posted 9 months ago #
-
Hello stickane,
Open up
/wp-content/themes/persuasion/lib/shortcodes/16-contact.phpand on lines 88 - 92 you should see this,$out .= '<label for="' . $field_id . '">' . $label; if( ( $required ) && ( $required != 'captcha' ) ) { $out .= '<span class="star">*</span>'; } $out .= '</label>';Change it like this,
$out .= '<label for="' . $field_id . '"><h3>' . $label; if( ( $required ) && ( $required != 'captcha' ) ) { $out .= '</h3><span class="star">*</span>'; } $out .= '</label>';Posted 9 months ago # -
You guys are awesome about getting back quickly. Totally worth the money spent!
Posted 9 months ago # -
How do I add
"To make sure you're human, please do the math:"
right before the Captcha?
Thanks in advance!
Posted 7 months ago # -
Hello swanie,
Try navigating to Dashboard -> your theme -> General Settings -> Custom Javascript and add this line,
jQuery('<p>To make sure your human, please do the math:</p>').insertBefore('.captcha_row');Posted 7 months ago # -
That worked like a charm, Elliot, thanks!
Posted 7 months ago #
Reply
You must log in to post.













