• Resolved Uendi

    (@uendi)


    Hello,

    This plugin may be the right one I am looking for. Can I ask a few questions as:

    1. If I want to add in some texts or fields to “Edit Profile”, is it available to copy the wppb.edit profile.php to my theme current directory and edit it ?

    2. Is it available to show “Login” text on the top right corner of the site instead of nav bar when login page is created ?

    Thanks.

    http://wordpress.org/plugins/profile-builder/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author adispiac

    (@adispiac)

    Hi Uendi,
    1. You can add the text directly to the “Edit Profile” page where you will also insert the shortcode: [wppb-edit-profile]
    2.The “Login” is also available via a shortcode: [wppb-login], which you can add in a text widget on the sidebar for example.

    Hope this helps,

    Thread Starter Uendi

    (@uendi)

    Thank you for your prompt reply.

    I have inserted a shortcode [wppb-edit-profile] to the “Edit Profile” page. I’m thinking how to remove the name “Edit Profile” from the nav menu bar and insert/link this name at the top of right corner of the site just beside ‘ log in | ‘ ?

    Thanks.

    Plugin Contributor barinagabriel

    (@barinagabriel)

    Hello,

    I assume the top right menu is a different menu-group, in which case you can simply add the Edit profile there.

    Let me know if you managed to do this.

    Regards,
    Gabriel

    Thread Starter Uendi

    (@uendi)

    Hello,

    Thank you for your prompt reply. I have inserted this code in under Header.php :

    <?php wp_register( $before, $after ); ?>

    and also added in a filter:

    add_action( ‘register’ , ‘register_replacement’ );
    function register_replacement( $link ){
    if ( ! is_user_logged_in() ) {
    if ( get_option(‘users_can_register’) )
    $link = $before . ‘‘ . __(‘Register’) . ‘‘ . $after;
    else
    $link = ”;
    } else {
    $link = $before . ‘‘ . __(‘Your Title Here’) . ‘‘ . $after;
    }
    return $link;
    }

    Yes, it really works on my site.

    Thank you.

    Plugin Contributor barinagabriel

    (@barinagabriel)

    Your very welcome! … I am glad it works! 🙂

    Gabriel

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Question (Version – Free & Pro)’ is closed to new replies.