Forum Replies Created
-
Author
-
scingallsParticipant
Total is the only one I can get to work. Is there anyway to make them custom numbers? Because I can’t figure out how to display how many friendships there are, and how many groups there are?
scingallsParticipantThanks! What are the different shortcode options for the “Kleo status icon type”? I want to do members, how many friendships there are, how many groups there are, and then a custom number I fill in.
scingallsParticipantNevermind, I figured it out. If you change the coding like so in the function.php folder…
add_filter(‘wp_mail_from’, ‘new_mail_from’);
add_filter(‘wp_mail_from_name’, ‘new_mail_from_name’);function new_mail_from($old)
{
return ‘your@email.com’;
}function new_mail_from_name($old)
{
return ‘Your Name or Your Website’;
}It works!
scingallsParticipantThanks! It worked perfectly! Another along the same lines… How do I change the border around the search/register form?
scingallsParticipantHow do you change the border around the search box? I want to change the small border around the search box to a different color.
-
AuthorPosts