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?
Thanks for your reply.
I have looked at this in a bit more detail but not got anywhere!
As you suggested I compared two topics for a topic imported vs one entered and the differences don’t seem relevant (e.g. no ip address for the imported ones etc.). I also looked at the records from the postmeta table for the two topics and again don’t think there are relevant differences though again no ip address for the imported, 0 for _bbp_reply_count for the imported.
So no luck there.
I tried looking at the code of bbpress.php but could not work out how it picked up the count or incremented it.
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?
Hi Robin and thanks for your reply.
Unfortunately it doesn’t work. I’ve been trying using both the admin account and another normal user account. Even using the link to “topics created” it doesnt display the topics created by that user. Same for subscriptions.
Using the standard bbPress profile instead everything working properly but of course, I need to have those links as woocommerce Endpoints
do you have any idea about how to fix it please?
In had a quick look at the code above and the call
include get_theme_file_path( '/bbpress/templates/default/bbpress/user-subscriptions.php' );
is looking for that file in your theme, not the bbpress plugin.
as a test, create a directory in your child theme called ‘woo-bbpress’ (it can be called anything) and put a copy of the user-subscriptions in there
then replace then above with
include get_theme_file_path( '/woo-bbpress/user-subscriptions.php' );
and see if that improves
Im using the last bbPress version, and twenty-twenty theme. All fine!
But I need to integrate bbpress with woocommerce in a custom woocommerce dashboard we made, so basically I have to link all bbpress profile links (Topic created, Replies, Engagement…) as Woocommerce Endpoints.
All set up but the problem is the links not showng the correct user information but : “Oh Bother, no topics found here!”. Despite the user has created topics , followed or subscribed.
This is the code I put for the Subscription Endpoint for instance:
add_action( 'init', 'wpsh_subscriptions_endpoint' );
function wpsh_subscriptions_endpoint() {
add_rewrite_endpoint( 'subscriptions', EP_ROOT | EP_PAGES );
}
add_action( 'woocommerce_account_subscriptions_endpoint', 'subscriptions_endpoint_content' );
function subscriptions_endpoint_content() {
include get_theme_file_path( '/bbpress/templates/default/bbpress/user-subscriptions.php' );
}
so, any suggestions please? ๐
Hello,
I am the author of GD bbPress Toolbox Pro. Please, open the new topic in the official support forum, and include any additional information you can, including errors displayed or anything from the PHP server error log, and I will try to help you. So far, I can’t remember anyone has reported anything like that.
Support forum:
https://support.dev4press.com/forums/forum/plugins/gd-bbpress-toolbox/
Regards,
Milan
Hi there,
Since I installed the GD bbPress Toolbox Pro plugin I no longer see my WordPress media library.
I deactivated the plugin and it comes back but cannot find the parameter in the plugin to reactivate it.
I need your help.
Thanks.
How do I create the basic installation so that it looks like the screenshot on the homepage. I just want a basic bbpress installation out of the box. Not sure how to do it. Do I need to create a specific homepage and add widgets?