Likewise and it is especially a pleasure to meet people who are concerned with advancing the use of bbPress.
Olaf, bbBress in it's default state has no blockquote styling which is the basis of quoting. If you implement the plugin on it's own without styling, it won't seem to work.
Here is the styling I use in style.css
You can change the colors to anything you want.
blockquote{
background-color: transparent;
border-top: 3px double #ff00ff;
border-bottom: 3px double #ff00ff;
padding: 5px;
line-height: 9pt;
font-style: oblique;
font-size: 0.9em;
margin-left: 5%;
margin-right: 5%;
margin-bottom: 0.5em
}
Where a topic attracts several posts a day, quoting enables structure to the discussion otherwise it becomes chaotic.
Also, you need to insert this snippet of code in post.php where you want the quote link to appear.
<?php bb_quote_link(); ?>