Forum Replies Created
-
In reply to: Branching out by forum ID in bbpress
great – glad you are fixed
In reply to: On Index: Forum description shows in all uppercasethis might also improve things
#bbpress-forums { font-family: "c", Sans-serif !important; }otherwise I see you have style pack installed, so work through the font sections and make them “Playfair Display”, Sans-serif
In reply to: On Index: Forum description shows in all uppercaseagree
on the title this might work
.post-285 h1.entry-title { font-family: "Playfair Display", Sans-serif; }In reply to: On Index: Forum description shows in all uppercaseit is caused by this line
.elementor-kit-26 h1 { font-family:"Playfair Display SC", Sans-serif; }in
post-26.css
related to elementor, so may be a setting in that or your theme.
In essence the Playfair Display SC font is all capitals
https://fonts.google.com/specimen/Playfair+Display+SC
so all your headings will be capitals
In reply to: Plugin name?In reply to: On Index: Forum description shows in all uppercaseprobably theme related – have you a link to an example?
In reply to: login issuesgot 5 minutes this afternoon, so fresh install and bbpress and twenty twenty and login widget in footer exactly as you did, and that logs in fine.
In reply to: Display forum content on frontpageah, I see what you ae getting at – not sure how this site does it, but you can create a link to a page in your site and put
[bbp-topic-index] in that page – that will show the latest 15 topics
If you want better than that, then
once activated go to
dashboard>settings>bbp style pack>shortcode
and check out the
[bsp-display-topic-index] which has lots of settings you can use to control what is shown
dashboard>settings>bbp style pack>Custom CSS
In reply to: Adding description to Tagsif you are able to ftp and edit files, then I can give you a template change
In reply to: Display forum content on frontpageit’s a widget
dashboard>appearance>widgets> (bbpress) Recent Topics
In reply to: Adding description to TagsIf I understand
add_action ('bbp_theme_after_topic_form_tags' , 'rew_tag_desc' ) ; add_action ('bbp_theme_after_reply_form_tags' , 'rew_tag_desc' ) ; function rew_tag_desc () { echo '<p>words here</p>' ; }Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
In reply to: bbp_forum_get_subforums() returns empty arrayno problem – glad you are fixed !
In reply to: login issuesI don’t doubt you have an issue, but there are 300,000 users of bbpress and if they all had this issue it would be well known.
the problem is working out why you have this issue
In reply to: login issueshmmm…. not how it works in my test site.
The bit about some wp login plugin that you have deacivated?? can you explain more about that?
In reply to: Clicking “Subscribe” gives error “undefined”great – glad you are fixed
In reply to: Topics do not work unless permalinks are flushedyou’d need to define down when it happens, always a problem when things just seem to happen – good luck 🙂
In reply to: Missing “All Replies” Pageit could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: Clicking “Subscribe” gives error “undefined”it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: bbp_forum_get_subforums() returns empty arrayjust tried it on my website, and that code works fine.
3 possibilities
1. the 90 is wrong
2. the 90 forum does not have sub forums
3. some other code is filtering the bbp_forum_get_subforums functionIf you are happy it is not 1 or 2, then it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: bbp_forum_get_subforums() returns empty arraytry
$sub_forums = bbp_forum_get_subforums(90); var_dump($sub_forums);In reply to: login issuesit sends the user to the wordpress login screen,
can you define ‘it’ please – what is sending you where?
In reply to: Topics do not work unless permalinks are flushedit could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: Swap Email for Description on Profile Pageyou are correctly editing the template, but it needs to be placed in your child-theme
so
find
wp-content/plugins/bbpress/templates/default/bbpress/user-profile.phptransfer this to your pc and edit
and save
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %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/user-profile.phpbbPress will now use this template instead of the original
In reply to: Font size on new installationno problem – hope you get it all working 🙂
In reply to: Cannot set new password when editing profileno problem 🙂