looking at the login link, I’d guess you are using
bbPress Login Register Links On Forum Topic Pages
so it would be a setting in there.
/*BBPRESS Favourite Filter*/
function rkk_subscribe_link($args) {
$args['favorite'] = esc_html__( 'Favourite', 'rkk' );
$args['favorited'] = esc_html__( 'Unfavourite', 'rkk' );
return $args;
}
add_filter('bbp_before_get_topic_favorite_link_parse_args', 'rkk_subscribe_link' );
$args['Favorite']
should be$args['favorite']
no capital F !
so
/*BBPRESS Favourite Filter*/
function rkk_subscribe_link($args) {
$args['favorite'] = esc_html__( 'Favourite', 'rkk' );
$args['favorited'] = esc_html__( 'Unfavourite', 'rkk' );
return $args;
}
add_filter('bbp_before_get_topic_favorite_link_parse_args', 'rkk_subscribe_link' );
Hello there,
is there a possibility to map bbPress User Roles to ProfileGrid User Groups? I’d like everyone who signs up for ProfileGrid User Group A to have the capabilites of bbPress User Role 1 and everyone who signs up fpr ProfileGrid User Group B to have the capabilites of bbPress User Role 2. How can I achieve this?
Thank you in advance!
wp-content/themes/%your-theme-name%/bbpress/content-single-topic.php
@terriswiatekyahoocom What is method of placing the content-single-topic.php file in the child theme folder? I put it directly with no result. I created /childtheme/plugins/bbpress/templates/default/bbpress/ and placed it in there with no results also.
I finally put it in the parent theme folder and it works but I know this will get overwritten with updates…
Hi
I have made a like button plugin that allows the ursers to like posts in my website, and then the ID of the liked post is stored in the database.
Now I would like to edit the profile page of each users in bbpress and add a voice where they can see all the posts they liked on the main site under their bbpress profile.
Is this possible to do and where can I edit the profile?
Hey all, need some help with changing the favorite button text to Favourite (Canadian Spelling)
So far I’ve tried:
Switching to Canadian English in WP core, dosent change the button
Js find and replace, has a visible delay
functions.php code per this topic: https://bbpress.org/forums/topic/change-text-in-bbpress-subscribe-favorite-reply/
/*BBPRESS Favourite Filter*/
function rkk_subscribe_link() {
$args['Favorite'] = esc_html__( 'Favourite', 'rkk' );
return $args;
}
add_filter('bbp_before_get_topic_favorite_link_parse_args', 'rkk_subscribe_link' );
Anyone able to change this?
example for loop single repy:
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-reply.php
transfer this to your pc and edit
and save
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpress
where %your-theme-name% is the name of your theme
Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/loop-single-reply.php
bbPress will now use this template instead of the original
it is not very clear (I’m not a bbpress author), but the ‘stick (to front)’ is actually 2 links, if you click the ‘stick’ part it makes it sticky, if you click the ‘(to front)’ part it makes it super sticky.
Hi, this is a bit of an odd problem, but a forum admin stickied a post in a private forum (clicking “sticky” in the top right, not from wp-admin) and it moved the topic to an unrelated public forum, which is a problem of course because the topic was meant to be private. Sounds like a bug in bbpress, has anyone else come across this?
wordpress and bbpress registration do not have a password option or Detalles del perfil, so the layout is not from worpdress or bbpress.
It may be your social login is doing this, so layout would be with that.
Hi all, I have the astra theme as well and youtube won’t embed at all in bbpress forums. (I have the embed option set in bbpress admin)
I have tried using various URLs from you tube to no avail…. Examples here: https://iberianatureforum.com/forums/topic/the-wildside-holidays-you-tube-channel/
regards, 🙂
Hi Robin,
Don’t Understand what exactly do you mean with “bbpress or wordpress registration”.
I’m using miniOrange social login for users that want to login with their google or facebook account.
I’m login to wordpress as admin, from wp-admin.
How can I check that?
If I disable some possible “conflict” plugin, layout will change?!
Thank you!
you are not using the bbpress registration, or wordpress one, so you have something some custom registration maybe using your theme or a plugin
Dear friends,
I don’t remember when and how did I manage to mess up with my forum register page.
Register
Layout is “broken” and on mobile devices looks very bad.
After updating to last version of bbpress…problem still remain.
Bbp style pack is installed and after resetting style settings, register page remain the same.
Please, how can I manage that register page again have “default” layout and looks ok on mobile devices?
Thank you!
I mean we have the same output then
like this :
Youtube Embed
Hi
When i paste a wordpress post link on bbpress, it creates a nice box with featured image & link
but when i paste a topic link, it just creates a grey box with link inside
is it normal ?how could i get something better ? (with author / date etc) is it possible ?
Thank you
sorry, I’m just a guy trying to help, I am not a bbpress author. Expecting every free plugin to work with every other plugin out of the box is a bit hopeful and swapping to another probably won’t help.
I have spent my own time googling the woocommerce function to try and help you. Being annoyed totally understandable, but gets you no further forward 🙂
If you would like me to try and help further, contact me via
Contact me
these functions are held in bbpress\includes\forums\template.php and \bbpress\includes\forums\functions.php
the one changing the count is in functions.php
bbp_bump_forum_topic_count
ok so basically what can I do? Because now bbpress is installed and me and my colleague spent time in setting up.
I’ve been trying every possible solution with php a well.
Even copying the same bpress profile PHP produces the same result.
Its annoying planning to unistall the plugin and take another one
I’m the admin and I have FTP access so no problem for this. I just need to call bbpress links from endpoints, nothing more than this.
Because of course user can only have one profile page instead that 2 so just WooCommerce dashboard as a profile page.
As you mention there is not parameter in the line code :
/woo-bbpress/user-subscriptions.php
I think the page requires some parameters isn’t it?
I suspect that as it is being called from outside bbpress the ‘bbpress dispayed user’ is not set, so it considers that to be blank, so doesn’t know who to display.
It would probably take a few hours to work out how to achieve this, and probably admin and FTP access to your site, so beyond free help I’m afraid.
Interestingly I also tried using the shortcode [bbp-stats] in a test page and that reported the correct number of topics despite the individual forum count being incorrect! How can that be?
I should start by saying that I am not a bbpress author, just someone trying to help 🙂
the [bbp-stats] shortcode does the wordpress function
wp_count_posts( bbp_get_topic_post_type())
so actually counts the number of topics in the database.
the forums page calls a function bbp_get_forum_topic_count in \bbpress\includes\forums\template.php
This looks up the number held in the forum’s post meta under _bbp_topic_count (which you had already worked out)
so how did you delete the post which caused the numnber to fail back?