latest stable versions: v150827 (changelog)

Old Forums (READ-ONLY): The community now lives at WP Sharks™. If you have an s2Member® Pro question, please use our new Support System.

Editing s2member pro log in?

Home Forums Community Forum Editing s2member pro log in?

This topic contains 1 reply, has 2 voices. Last updated by  Philly 4 years, 5 months ago.

Topic Author Topic
Posted: Monday Jul 23rd, 2012 at 8:02 am #19984

How do you edit the s2member pro log in form, it comes up with Howdy on top right side of screen, Just wanted to know if we can edit howdy to G’day to make it more Australian?

Darryl

List Of Topic Replies

Viewing 1 replies (of 1 total)
Author Replies
Author Replies
Posted: Monday Jul 23rd, 2012 at 8:57 am #19985

Hi Darryl,

Thats a WordPress thing

add this to your functions.php

// replace WordPress Howdy with G’day
function replace_howdy( $wp_admin_bar ) {
    $my_account=$wp_admin_bar->get_node('my-account');
    $newtitle = str_replace( 'Howdy,', 'G’day', $my_account->title );            
    $wp_admin_bar->add_node( array(
        'id' => 'my-account',
        'title' => $newtitle,
    ) );
}
add_filter( 'admin_bar_menu', 'replace_howdy',25 );
Viewing 1 replies (of 1 total)

This topic is closed to new replies. Topics with no replies for 2 weeks are closed automatically.

Old Forums (READ-ONLY): The community now lives at WP Sharks™. If you have an s2Member® Pro question, please use our new Support System.

Contacting s2Member: Please use our Support Center for bug reports, pre-sale questions & technical assistance.