Title: normen's Replies | WordPress.org

---

# normen

  [  ](https://wordpress.org/support/users/normen/)

 *   [Profile](https://wordpress.org/support/users/normen/)
 *   [Topics Started](https://wordpress.org/support/users/normen/topics/)
 *   [Replies Created](https://wordpress.org/support/users/normen/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/normen/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/normen/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/normen/engagements/)
 *   [Favorites](https://wordpress.org/support/users/normen/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BP Post Buttons] [Plugin: BP Post Buttons] Does not work with WP 3.0.1 and BP 1.2.5.2](https://wordpress.org/support/topic/plugin-bp-post-buttons-does-not-work-with-wp-301-and-bp-1252/)
 *  Plugin Author [normen](https://wordpress.org/support/users/normen/)
 * (@normen)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/plugin-bp-post-buttons-does-not-work-with-wp-301-and-bp-1252/#post-1725263)
 * So the fishbook theme is missing that hook, use the theme edit workaround or 
   find a proper hook in the theme.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: SyntaxHighlighter Evolved] Syntax highlight for BuddyPress forum posts](https://wordpress.org/support/topic/plugin-syntaxhighlighter-evolved-syntax-highlight-for-buddypress-forum-posts/)
 *  [normen](https://wordpress.org/support/users/normen/)
 * (@normen)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/plugin-syntaxhighlighter-evolved-syntax-highlight-for-buddypress-forum-posts/#post-1545484)
 * For all who dont want to wait, extending this plugin to buddypress forum posts
   is as easy as adding the following line to syntaxhighlighter.php:
 * `add_filter( 'bp_get_the_topic_post_content', array(&$this, 'parse_shortcodes'),
   7 );`
 * I suggest adding it after `// Register generic hooks`.
 * Cheers,
    Normen
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [W3 Total Cache – Object Cache – Buddypress Forum Problem](https://wordpress.org/support/topic/w3-total-cache-object-cache-buddypress-forum-problem/)
 *  [normen](https://wordpress.org/support/users/normen/)
 * (@normen)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/w3-total-cache-object-cache-buddypress-forum-problem/#post-1603927)
 * Having the same problem here, but not only with w3c cache but also with other
   object caches (e.g. from here: [http://codex.buddypress.org/getting-started/improving-performance/](http://codex.buddypress.org/getting-started/improving-performance/)).
   Guess its a buddypress problem?
 * Cheers,
    Normen
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wp_check_password override fatal error](https://wordpress.org/support/topic/wp_check_password-override-fatal-error/)
 *  Thread Starter [normen](https://wordpress.org/support/users/normen/)
 * (@normen)
 * [16 years, 2 months ago](https://wordpress.org/support/topic/wp_check_password-override-fatal-error/#post-1505849)
 * Ok, I am sorry, I solved it myself. I was deluded by the fact that the functions
   seem “overridable” but they are in fact not (anymore?)
 * Proper way to do this in WP is like this (for those running into the same issue):
   `
   add_filter('check_password', 'my_check_password', 9, 4 ); function my_check_password(
   $check, $password, $hash, $user_id = '') { if($check) return true; // SMF forum
   compatible check $user_info = get_userdata($user_id); $check = ( $hash == sha1(
   strtolower( $user_info->user_login ) . $password) ); if ( $check && $user_id ){//
   Rehash using new hash. wp_set_password($password, $user_id); $hash = wp_hash_password(
   $password); return true; } return false; }

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