Forum Replies Created
-
Author
-
jeffkauffmanjrParticipant
I tried to add that code to the user-profile.php page and it broke the page. Here’s how I added it. I put the code you suggested at the bottom, as you can see below.
Do you have any further suggestions?
<?php
/**
* User Profile
*
* @package bbPress
* @subpackage Theme
*/?>
<?php do_action( ‘bbp_template_before_user_profile’ ); ?>
<div id=”bbp-user-profile” class=”bbp-user-profile”>
<h2 class=”entry-title”><?php _e( ‘Profile’, ‘bbpress’ ); ?></h2>
<div class=”bbp-user-section”><?php if ( bbp_get_displayed_user_field( ‘description’ ) ) : ?>
<p class=”bbp-user-description”><?php bbp_displayed_user_field( ‘description’ ); ?></p>
<?php endif; ?>
<p class=”bbp-user-forum-role”><?php printf( __( ‘Forum Role: %s’, ‘bbpress’ ), bbp_get_user_display_role() ); ?></p>
<p class=”bbp-user-topic-count”><?php printf( __( ‘Topics Started: %s’, ‘bbpress’ ), bbp_get_user_topic_count_raw() ); ?></p>
<p class=”bbp-user-reply-count”><?php printf( __( ‘Replies Created: %s’, ‘bbpress’ ), bbp_get_user_reply_count_raw() ); ?></p>
</div>
</div><!– #bbp-author-topics-started –><?php do_action( ‘bbp_template_after_user_profile’ ); ?>
#item-header-content {
margin-top: 15px;
}jeffkauffmanjrParticipant*UPDATE
If I go to my register page while I’m logged out, then it shows me the page.
Can I not view the register page while I’m logged in?
How can I edit the descriptions of the fields?
For example, I would like:
“Account Details” to say “Account Details (*required)”
“Username (required)” to say “*Username”The use of “required” is too repetitive. I only want to mention it one time at the start. How do I change this?
-
AuthorPosts