Reply To: Tag html
Thnx for the quick reply. Just to make sure, you mean the bbpress-functions.php file right? Also, I noticed some other pieces of code that are not directly found in the template files like these. So a...
View ArticleReply To: Tag html
no not that file, the functions file in your child theme. If you don’t have a child theme, or don’t know what that means, use the code snippets plugin.
View ArticleReply To: Tag html
Yea I am working with a child theme right now. I am just asking because I see some other child themes with the file bbpress.php in there. I am still reading up, but just wondered if there is a...
View ArticleReply To: Tag html
some themes will have a bbpress FOLDER, which is where you would put amended bbpress template files. filters generally go in the child theme functions file
View Articlesubforum parent name
hi guys, i would like to know how to add parent forum title for each subforum on the single forum page . something like “if bbp-forum-title has parent then parent name : bbp-forum-title” . Thank you...
View ArticleReply To: subforum parent name
untested but try $forum = bbp_forum_id() ; $parent = wp_get_post_parent_id($forum) ; if (!empty($parent)) { echo esc_html( get_the_title($parent) ) ; }
View ArticleReply To: subforum parent name
Thank you dear for your quick reply ; i copy/past the loop single forum file into my child theme root (what i did is the good way to do that ?) , then i added your script like this : <a...
View ArticleReply To: subforum parent name
change $forum = bbp_forum_id() ; to $forum = bbp_get_forum_id() ;
View ArticleReply To: subforum parent name
Perfect dear Robin Thank you very much btw : did i process in the good way to modify my bbpress template ?
View ArticleReply To: subforum parent name
The recommendation is that the file goes in a directory called ‘bbpress’ in the root of your child theme. ie wp-content/themes/%your-theme-name%/bbpress/xxx.php where %your-theme-name% is the name of...
View ArticleCarrying theme to individual forums
Apologies if all the right info isn’t here- new to wordpress. Just installed bbpress on my site. When I view the forum directory at https://www.tallshipsamerica.org/tsaforums/ the theme is consistent...
View ArticleReply To: Carrying theme to individual forums
I used to take part in the European Tall Ships races in the 1980’s – so recognise the logo! many happy memories. start by reading Step by step guide to setting up a bbPress forum – Part 1 Section 8 is...
View ArticleReply To: I want to create custom user profile template for bbpress users....
Please help me. I am trying to gain it but not getting it right. Just need the proper guidance from you.
View ArticleReply To: I want to create custom user profile template for bbpress users....
so have you essentially done this find wp-content/plugins/bbpress/templates/default/bbpress/content-single-user.php transfer this to your pc and edit and save create a directory on your theme called...
View ArticleReply To: I want to create custom user profile template for bbpress users....
I am in the same situation : i copy/past the content-single-user.php (besides, what is the difference with the user-details.php ?) and edited it .. but i dont know what to do with it (on my profile...
View ArticleReply To: I want to create custom user profile template for bbpress users....
Hi @robin-w, Thank you for the suggestion. But basically what I am trying to do is, show or adding the bbpress profile information to another page that I have created as an “My Account” page. The...
View ArticleReply To: I want to create custom user profile template for bbpress users....
@momomoko bbp_get_template_part( ‘user’, ‘topics-created’ ) will use the template ‘user-topics-created.php’ – basically you put all the words together to make the file (that just how wordpress does...
View ArticleReply To: I want to create custom user profile template for bbpress users....
@nayanboost – what url do they take you to ? this (changed) code from my plugin may help you create a link `$text=__(‘Profile’, ‘bbp-style-pack’) ; $class=’bsp_button1′ ; $current_user =...
View ArticleReply To: I want to create custom user profile template for bbpress users....
But why when i clic on these 2 links (my replies or topics created) the page is not found ? i have tried to create 2 pages that i named user-topics-created and user-replies-created, without success 🙁
View ArticleReply To: I want to create custom user profile template for bbpress users....
@momomoko sorry only so much I can do for free – this is not a bug in bbpress or an easy ‘how to’ – you’ll need to work it out
View Article