Search Results for 'bbpress'
-
AuthorSearch Results
-
May 24, 2015 at 5:25 am #162419
In reply to: BBpress post edit causes multiple activity entries
Shaktimaan
ParticipantYou must edit the file activity.php that is located at /wp-content/plugins/bbpress/includes/extend/buddypress/activity.php
find
// Get the activity stream item, bail if it doesn't existand apply the patch manually that i have given in post # https://bbpress.org/forums/topic/bbpress-post-edit-causes-multiple-activity-entries/#post-160330
May 24, 2015 at 4:05 am #162417In reply to: My Forum isn’t displaying correctly
Robin W
ModeratorNo, do you have any idea why i can’t see topics below Forum names?
What you are seeing is the list of forums, you then click a forum to see the topics for that forum.
if you want each forum to have then topics below it, then use shortcodes within a page
[bbp-single-forum id=$forum_id]
[bbp-single-forum id=$forum_id]
[bbp-single-forum id=$forum_id]see
https://codex.bbpress.org/shortcodes/
or use the shortcodes from
https://wordpress.org/plugins/bbp-style-pack/ in a page
Also i was wondering how i can order Forums by some hierarchy?
If not using the shortcodes above, then use dashboard>forums>all forums and edit a forum. On the right hand side you’ll see ‘parent’ and ‘order’ boxes that let you build a hierarchy
May 24, 2015 at 3:20 am #162415In reply to: bbPress causes Category pages to show full posts
Gena2222
ParticipantWhat i found is that this bug is because of your theme and not really bbPress.and no problem.
May 23, 2015 at 11:20 pm #162412Topic: How to find theme like this site style
in forum Themesdebatingday
ParticipantI like this site style
But i can’t find bbpress.org style theme
Where i do find this site forum style theme?May 23, 2015 at 9:18 pm #162411In reply to: Minimum Topic & Reply Length
Chad R. Schulz
ParticipantI know this is an old post. However, I’ve been screwing around with various javascript suggestions from other forums and came up with a solution that works (no problems yet discovered). I’m not exactly a code ninja, so if anyone can help to streamline the code let me know.
Just insert the following lines into a custom javascript for your theme (if you need guidance on this there’s a lot of help available all over wordpress.org and other forums).
jQuery(function($) { var forum_input = $( '#bbpress-forums textarea' ); var forum_button = $( '#bbpress-forums .submit' ); var forum_limit = 50; var forum_class = $( '<div class="forum_limit_info"><span>' + forum_limit + '</span> characters needed</div>' ).insertAfter( forum_input ); forum_button.hide(); forum_class.show(); forum_input.bind( 'keyup', function() { var forum_length = $(this).val().length; var chars_left = forum_limit - forum_length; $( '.forum_limit_info span' ).html( chars_left ); if (forum_input) ( chars_left > 0 ) ? forum_class.show() : forum_class.hide(); if (forum_button) ( chars_left > 0 ) ? forum_button.hide() : forum_button.show(); }); });Basically this function hides the submit button and displays a countdown text counter until the minimum length is reached and then the button appears and the counter disappears.
There are ways of hard-coding a minimum into php but I believe you have to edit core files and then insert these modified php files into a child theme. I couldn’t figured out how to insert a simple php function that would do what I wanted in a clean and simple way. So javascript it is.
The
forum_limitsetting can be anything you want it to be, just change it. And you can customize your topics and replies minimums separately, if needed, with separate javascript functions usingtextarea#bbp_reply_content,textarea#bbp_topic_contentinstead of#bbpress-forums textarea.For my CSS stylings I chose to put a
:beforemessage on the left and the character count on the right using these:.forum_limit_info { text-align: right; font-size: 13px; color: red; line-height: 1.2; margin: 5px 5px 0px; } .forum_limit_info:before { float: left; content: '(Minimum Length: 50)'; color: blue; }CSS Styling is theme dependent and can basically be however you want/need it to be–very flexible.
I also created a similar javascript function for my site’s commenting system. Here’s that code as well:
jQuery(function($) { var comment_input = $( '#commentform textarea' ); var comment_button = $( '#entry-comment-submit' ); var comment_limit = 25; var comment_class = $( '<div class="comment_limit_info"><span>' + comment_limit + '</span> characters needed</div>' ).insertAfter( comment_input ); comment_button.hide(); comment_class.show(); comment_input.bind( 'keyup', function() { var comment_length = $(this).val().length; var chars_left = comment_limit - comment_length; $( '.comment_limit_info span' ).html( chars_left ); if (comment_input) ( chars_left > 0 ) ? comment_class.show() : comment_class.hide(); if (comment_button) ( chars_left > 0 ) ? comment_button.hide() : comment_button.show(); }); });Good luck to all,
Chad
May 23, 2015 at 5:16 pm #162408In reply to: bcc field displays in emails
amckinnell
ParticipantHi Rob,
i mean like does the issue show up in gmail?? why not try in ymail or outlook to see if the emails are just buggy in one place.
Oh! I understand your question now (I thought you meant for sending the mail, which I think wordpress does). No, all my users can see it, so it’s happening in all email providers.
if you havent already you might need to deactivate all plugins but bbPress in your test site.and hopefully see if that fixes anything.
Okay. I’ll give that a shot. I think I tested that before, but I’m not sure now. I’ll try contacting siteground support about it again as well.
Thanks for your help.
Anne.
May 23, 2015 at 5:16 pm #162407In reply to: bbPress causes Category pages to show full posts
juggledad
Participant@robkk: Just to clarify something, the
OR function_exists('is_bbpress')was added (with some other code, to get around a bug that bbpress doesn’t seem to want to acknowledge or fix. see https://bbpress.trac.wordpress.org/ticket/2723May 23, 2015 at 4:12 pm #162406In reply to: BBPress OP background different color
Robkk
Moderatoryou can use something like this.
#bbpress-forums .bbp-body .topic-author { background: #f5f5f5; }May 23, 2015 at 3:57 pm #162404In reply to: Searching by user
Robkk
Moderatorthis has something to search by user.
its not a plugin more of a file to put in a folder called bbpress in your child theme and some PHP code snippets but i will test it out to see if it works.
May 23, 2015 at 3:52 pm #162403In reply to: bcc field displays in emails
Robkk
ModeratorI’m not even sure how I would go about setting up another email service. Hmmm…
i mean like does the issue show up in gmail?? why not try in ymail or outlook to see if the emails are just buggy in one place.
thats probably not it but you can try…
if you havent already you might need to deactivate all plugins but bbPress in your test site.
and hopefully see if that fixes anything.
other than that contact siteground support if you didnt already and see if they know anything.
you can lead them to the topic you posted in this topic and also the links @jjj posted in his reply to that topic and maybe they can find something in your host setup.
May 23, 2015 at 2:45 pm #162399In reply to: Log In, Register and Lost Password buttons
Robin W
ModeratorGreat – glad you’re fixed !
fro anyone looking at this
https://wordpress.org/plugins/bbpress-login-register-links-on-forum-topic-pages/
May 23, 2015 at 12:16 pm #162396Robkk
Moderatoryou probably can put the search widget in a sidebar that only shows in bbPress.
other than that maybe the plugin doesnt support just displaying in bbpress search results pages.
May 23, 2015 at 12:13 pm #162395Topic: My Forum isn’t displaying correctly
in forum TroubleshootingDule95D
ParticipantHello,
I’m having a problem with displaying correctly forum on my website. I copied my template file at my theme folder and renamed it to bbpress.php, but this is how it looks. Here is my forum and there are no topics below Forum names. Can anyone help me with this?
Thank you.
May 23, 2015 at 11:53 am #162394In reply to: Importing Facebook comments as replies
Robkk
Moderatorthe recent comments widget is just displaying any comment from your facebook page most likey,
not that is has any comments on a particular topic from bbPress, but that you just shared a topic as a “status update” and people are commenting on that “status update”.
@herculaas if you want this kind of functionality , which would be pretty difficult to create you should hire a developer and post a job at http://jobs.wordpress.net/May 23, 2015 at 11:32 am #162391In reply to: Edit Page Title
Robkk
Moderatoredit the custom post type/post type archive titles for bbPress which should be these below in your All in one Seo plugin settings.
forum archive
topic archive
forum
topic
replyby default without an seo plugin the titles should display like this
topic: your topic title | yoursite
May 23, 2015 at 11:16 am #162389In reply to: Hierarchical Forum doesn’t work
Robkk
Moderatorwhere did the get the file from?? was it from my github link??
are you heavily editing your files or is your forums having more issues??
because i can see there is no topics but it displays the number in the topic description.
you can try these two plugins if you are not heavy editing and it is just a weird issue.
May 23, 2015 at 10:59 am #162386In reply to: Remove – You may use these HTML tags and attributes
PinkishHue
ParticipantYou can do this either by using CSS to simply hide that information, or in the PHP templates where you can remove it completely.
There’s a couple of similar threads here that may help you:
Hope that helps 🙂
May 23, 2015 at 10:45 am #162382In reply to: Importing Facebook comments as replies
PinkishHue
ParticipantHmm, this sounds a bit complicated as bbpress replies are not technically ‘comments’, they are a separate post type, the same as topics, that are simply connected to their parent topic (as far as I know anyway).
The first thing I would try is to copy the code that displays comments on a regular post, and add this to the template that displays my topics. That way, if comments are attached to the topic, they will display when viewing the topic on the front end.
You want to find the template ‘content-single-topic.php’
This should be at wp-content/themes/your-theme/bbpress/
(If it’s not, read up on theming here: https://codex.bbpress.org/theme-compatibility/)
Then add this code somewhere in that file:
<?php wp_list_comments(); ?>If no comments appear when you view a topic, then I would check in my mysql database to see how the comments are being saved – perhaps they are saving to the database but without being assigned to a specific post (topic). You may need to enable comments for the ‘topic’ post type.
I hope that helps, it is a bit complicated as I said.
May 23, 2015 at 10:45 am #162381In reply to: Change link of registration email
Robkk
Moderatorthis is not really a problem , and its not bbPress
WordPress handles the registration and in a default installation of WordPress your login page is yoursite.com/wp-login.php
bbPress just has a custom registration form.
You can use this plugin for a custom new registration email.
May 23, 2015 at 10:08 am #162379Robkk
Moderatoryou do not have to use the bbPress lost password form if want to.
All of your users will just log in to your site like normal with either one and it should work fine.
But as for the legend being hidden that is normal the label being hidden is probably your theme causing an issue.
if you still want to use bbPress’ login form i will need a link to the lost password page so i can see if its a css issue.
May 23, 2015 at 9:52 am #162377Mr-B
ParticipantHi all
Everything is latest versions.
I have a problem where if bbPress is not activated, the feeds for a subcategory work fine, but as soon as I activate bbPress it “takes over” and the news feed on the same URL displays bbpress topic feeds.
I tried disabling plugins / running some of the fix tools but does not seem to make a difference. Also have tried twenty-fourteen, no difference. Anyone else ever see this?Examples:
without bbPress enabled, the KB or “knowledgbase” feed shows correctly:
===================================
http://engdex.ch/kb/feed/
Engdex.ch » Knowledgebase
English speakers in Switzerland • free business directory and more
Public Holidays in Switzerland 2015
29 May 2014 08:10In Switzerland in each of the 26 cantons the public holidays are established independently,
…. etc …
===================================
With bbPress ENABLED the same knowledgebase feed becomes a forum one:
http://engdex.ch/kb/feed/
Engdex.ch » All Posts
Forum guidelines
21 June 2014 13:56
Engdex Forum guidelines.Welcome! The Engdex forums are a place for seemly discussion about all things Switzerland and
… etc etc..
===================================May 23, 2015 at 9:37 am #162375In reply to: bbPress causes Category pages to show full posts
Robkk
Moderatorok thanks for reminding me …again.
i have been losing track on these topics lately.
What i found is that this bug is because of your theme and not really bbPress. So i recommend contacting your theme developers about this especially since they want to support bbPress.
in the
bfa_post_parts.phpfile in your functions folder, under thebfa_post_bodycopyfunction you will seeOR function_exists('is_bbpress')This is what is causing your issue.
the way i figured out to fix it is to remove this and create my own bbpress.php off of the index.php file from your theme.
this is all the code i used to create the file. So you can copy and paste this into your theme into a bbpress.php file and all should work …hopefully.
I also left the widget areas there if you want them still there user theme/replace them or just remove them.
<?php list($bfa_ata, $cols, $left_col, $left_col2, $right_col, $right_col2, $bfa_ata['h_blogtitle'], $bfa_ata['h_posttitle']) = bfa_get_options(); get_header(); extract($bfa_ata); global $bfa_ata_postcount; ?> <?php /* If there are any posts: */ if (have_posts()) : /* Postcount needed for option "XX first posts full posts, rest excerpts" */ ?> <?php if ($bfa_ata['widget_center_top'] <> '') { echo bfa_parse_widget_areas($bfa_ata['widget_center_top']); } ?> <?php while (have_posts()) : the_post();?> <?php /* Post Container starts here */ if ( function_exists('post_class') ) { ?> <div <?php if ( is_page() ) { post_class('post'); } else { post_class(); } ?> id="post-<?php the_ID(); ?>"> <?php } else { ?> <div class="<?php echo ( is_page() ? 'page ' : '' ) . 'post" id="post-'; the_ID(); ?>"> <?php } ?> <?php bfa_post_headline('<div class="post-headline">','</div>'); ?> <div class="post-bodycopy clearfix"><?php the_content(); ?></div> </div><!-- / Post --> <?php endwhile; ?> <?php if ($bfa_ata['widget_center_bottom'] <> '') { echo bfa_parse_widget_areas($bfa_ata['widget_center_bottom']); } ?> <?php endif; /* END of: If there are no posts */ ?> <?php get_footer(); ?>May 22, 2015 at 11:13 pm #162371In reply to: Populate reply with @username
Robkk
Moderatorim sure when bbPress devs implement the @mentions scripts into bbPress they will have a way for it to work with the visual editor , well depending on their stance to implement the visual editor by default too.
if you really want the @mentions script from BuddyPress to work in the visual editor in bbPress you might need to hire a developer.
post a job at http://jobs.wordpress.net/
May 22, 2015 at 11:05 pm #162370Robkk
Moderatorwell there is the bbpress mark as read plugin which lists all the unread posts a user has in there subscriptions area. of your profile.
the developer does not reccommend the plugin on large sites though
i dont know if he fixed it where its okay , or that the listing all the users unread posts feature might be bad for large sites.
May 22, 2015 at 5:45 pm #162369In reply to: freshness inquiry
joym
ParticipantAre you de-selecting the box to keep a log of the edit?
Sorry I’m no bbpress wiz, just a thought.
-
AuthorSearch Results