Reply To: Form names

Home Forums Guestbook Add-On Form names Reply To: Form names

#951
Marcel Pol
Keymaster

1) You can add a PHP filter in the functions.php of your theme, preferably a child theme:

function my_gwolle_gb_author_content_label( $label ) {
	// $label is a string
	$label = 'test';
	return $label;
}
add_filter( 'gwolle_gb_author_content_label', 'my_gwolle_gb_author_content_label', 10, 1 );

But you already bought the addon, so it can be much simpler. You can go to Guestbook > Add-on > Strings-tab.
There you can replace strings, I can tell you which I have:

Guestbook entry => Review
guestbook entry => review
Guestbook => Reviews
guestbook => reviews

2) Just trying something here:


input[type="submit"], 
input[type="button"], 
button, 
.btn-primary {
    border-width: 2px;
    box-shadow: inset 0px 0px 0px 2px #fff;
}

I can also imagine adding your logo in a small image in front of the “submit” text for every button on your website. You would need a small logo for that.
By the way, I see you don’t have a favicon set. That image might be just the same as using one in the button.

You have different ideas?