How can i show Cubepoints ranks/points in bbpress replies

I found the solution of the problem, it goes like this: <td class=”bbp-reply-author”> <?php do_action( ‘bbp_theme_before_reply_author_details’ ); ?> <?php bbp_reply_author_link( array( ‘sep’ => ‘<br />’ ) ); ?> <!–Ranking –> <div class=”bbp-ranking”> <span class=”bbp-rank”><?php echo cp_module_ranks_getRank(bbp_get_reply_author_id()); ?></span><br /> <span class=”bbp-points”><?php echo ‘Reputação: ‘.cp_getPoints(bbp_get_reply_author_id()); ?></span> </div> <!–Ranking –> <?php do_action( ‘bbp_theme_after_reply_author_details’ ); ?> </td> in loop-single-reply.php

How do I remove certain fields from the forum edit my profile page?

The easiest way would be to edit the form-user-edit.php template located in /templates/default/bbpress/ and remove the fields you do not want your users to be able to edit. Make sure that you don’t edit bbPress core files and copy the template to your themes /bbpress folder as outlined in the codex http://codex.bbpress.org/theme-compatibility/

How to filter bbPress replies (content)?

The solution found: add_filter(‘bbp_get_topic_content’, ‘custommm_functiooonn’); add_filter(‘bbp_get_reply_content’, ‘custommm_functiooonn’); function custommm_functiooonn($content){ return ‘hiiiiiiii’.$content; }

How do I redirect users after submitting a topic for moderation?

Modify the file “form-topic.php” (located in “/wp-content/plugins/bbpress/templates/default/bbpress/form-topic.php”): 32 <form id=”new-post” name=”new-post” method=”post” action=”<?php the_permalink(); ?>”> Change it to: 32 <form id=”new-post” name=”new-post” method=”post” action=”<?php echo the_permalink() . “?redirect_to=/question-awaiting-moderation/”; ?>”> Upload this modified file to: “/wp-content/themes/YOUR_THEME/bbpress/form-topic.php” Do the same for the replies if you are moderating those (form-reply.php).

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)