Hi i am having an issue with the avatar it is appearing too big.
http://postimg.org/image/gube3rd9n/
http://postimg.org/image/5j8qfe6ej
Avatar issue
Published on April 13th, 2016 by iamasnowmanPrint bbp_forum_title() inside/before topic title?
Published on April 13th, 2016 by HoggeHogHello!
I’m looking to output the forum title inside- and before every topic title. So it would read like:
[Forum 1] Topic title
[Forum 2] Topic title
I want to use the shortcode
-
- Topic
- Voices
- Last Post
My _very_ basic knowledge of php says to add bbp_forum_title() somewhere around bbp_before_topic_tile(), but I’m not sure how to piece that together into functioning code. Anyone got any ideas or pointers?
P.S. Please don’t laugh if I sound like an idiot, I’m learning very slowly 🙂
Topic form not displayed
Published on April 13th, 2016 by cigar07Hi,
I am trying to use
You must be logged in to create new topics.
- You must be logged in to create new forums.
Please can someone tell me why the page is not displaying the topic form?
User Info Column too Narrow
Published on April 13th, 2016 by officerofthewatchHi I’m hoping someone can give me some direction. I should start by saying i’m not a big coder or developer so apologies if this is really simple to solve. Every post in BBpress is accompanies by the user date on the left hand side. On the initial post in a topic this user data column is wide enough to contain all of the relevant data.
On subsequent posts the column is indented and becomes too narrow to display everything. For an example of this issue on the site I’m developing view
https://officerofthewatch.co.uk/Officers-Mess/topic/officer-of-the-watch-help-wanted/
You will note on the second post by ‘aquabon’ the ‘send a message’ text is partially cut off.
Is there anyway to increase this column width to match that of the original poster?
link-problem
Published on April 13th, 2016 by GunillaAfter the todays (13/4) update to WordPress 4.5 link doesn´t funktion in the bbPress edit box.
Is a bbPress update coming to solve this problem?
/Gunilla
bbPress is not creating several pages of a topic
Published on April 13th, 2016 by donchulioHi Guys,
I got the problem, that bbPress is not splitting the posts in different pages when there are a few answers. For example: http://germansimracing.de/community/thema/dauerstartnummern/
Is there anything to setup or what could be the problem? I updated WordPress a few minutes ago to the newest version. bbPress and all other plugins are up to date, too.
Thanks in Advance for your help! 🙂
Change SMTP settings for BBPress
Published on April 12th, 2016 by tech55541Hello,
I am using this plugin.
https://wordpress.org/plugins/wp-smtp/
I am trying to change the sender name and sender email address for BBPress. I have successfully done this for BuddyPress, but all the code I have tried for BBPress or all the code I have seen in older topics, is not doing it for me.
Can you please recommend some code that I can change the sender name and sender email address?
Thanks.
Cannot Activate bbPress
Published on April 12th, 2016 by ty505Hello there, every time I attempt to activate the bbPress plugin it throws this error at me.
Plugin could not be activated because it triggered a fatal error.
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 4480 bytes) in /mypool/web/vhosts/PR01088/infpunite.org/www/wp-content/plugins/bbpress/includes/replies/functions.php on line 213
How can I fix this? I’ve been really wanting to use bbPress for a while and still can’t get it to work.
Paragraph Line Spacing
Published on April 12th, 2016 by semperayeThere are no spaces between paragraphs in forums, unless I double space, but on the blog posts and other pages where I use the visual editor, there are proper spaces. I realize that the visual editor was removed from bbpress because of issues. I am using a plugin called “bbPress Enable TinyMCE Visual Tab” to re-activate it because for me, the forums are useless without it.
Any ideas on how to fix this, or if there is another solution such as a different plugin? Any info/news when bbpress will be creating a built in visual editor?
Thank you!
Reply count for topics issue – bbp_topic_reply_count
Published on April 12th, 2016 byHi there,
I am currently working on my first bbPress site and thoroughly enjoying it! I have one issue though…
On my home page I have a list of 8 latest posts on the site. They include news (standard WP posts), events (custom post type) and bbPress topics and are displayed with query_posts().
I am trying to display the reply count of topics but can’t using bbp_topic_reply_count(), it simply returns 0.
<?php if ( 'topic' == get_post_type() ) : ?>
<article class="bit-4 newsPost grid-sizer grid-item">
<div class="eventInner homePost">
<p class="postLabel">Discussion</p>
<h1 class="eventListTitle"><a href="<?php the_permalink(); ?> "><?php the_title(); ?></a></h1>
<p class="postedOn"><?php bbp_topic_reply_count(); ?> comments, starting on<?php the_date('d M Y'); ?></p>
<p><?php echo get_excerpt(); ?></p>
</div>
</article>
<?php endif; ?>
Am I missing something? Can someone help please?
Thanks