Alex, если вас не затруднит, подскажите, как сделать, чтобы заработал плагин Avatar?
Вот Reedme.
1. Put the file bb-avatar.php into your my-plugins directory (in the bbpress root directory)
2. Add "post_avatar();" (between the php tags) in post.php or wherever you want it if using your own template.
NOTE: If using the default template, you MUST change style.css so that avatars can fit in the author info area.
I made these changes in style.css to allow for a 150x150px avatar
.post {
min-height: 200px;
}
.threadauthor {
margin-left: -165px;
overflow: hidden;
position: absolute;
max-height: 215px;
width: 150px;
}
NOTE: .post did not exist previously, but the div's did exist. .threadauthor did exist, and I made a few changes to it.
C первыми двумя пунктами разобрался с горем пополам. Строку post_avatar(); вставил в файл post.php
Но насчет размеров 150 на 150 куда вставлять не понял. В style темы, которую использую? Но в какое место?