Forum Replies Created
-
In reply to: Freshness is way off
try dashboard>tools>forums>repair forums
and run as needed.
this may get it back, and then use
once activated go to
dashboard>settings>bbp style pack>bug fixes and use that fix.
In reply to: bbpress show first post from each topic via popupnothing I know of, could be coded, but requires someone with the time to do this
suggest you ask the plugin authors
https://wordpress.org/support/plugin/yet-another-related-posts-plugin/
In reply to: Forum and topic links lead to empty pagessorry, I don’t understand – can you come back with a series of steps (press this, click that) that lead to the problem
In reply to: Admin cannot logouthmm… I cannot replicate this and have seen no change in behavior in bbpress that would explain.
what other bbpress or login related plugins are you using ?
In reply to: Admin cannot logoutyou can use
http://mysite.com/wp-login.php?action=logout
to logout
In reply to: Admin cannot logoutThanks – some questions please
1. ‘the login widget has stopped working’ not sure what you mean by this – which login widget and has it completely stopped working, or what parts don’t work etc.
2. ‘my login is permanently shown on the site ?!?’ – what is being shown where and to just you or everyone?
and
3. where are you trying to log out ?
In reply to: Topics sub-lists in Forum listno, the main forum page would not list the topics for a forum. If you only have one forum, then you can use shortcodes to display just that forum, and your forum will then be a list of topics.
In reply to: bbpress show first post from each topic via popupalthough not suppprted, I suspect they will both work ok – have you tried them?
In reply to: bbp_keymasterfor clarity the reasons it is left are to do with reinstalling bbpress, which since you have deleted means you can delete the role
In reply to: bbp_keymasteryou can delete it with no problems, but then fact that the role exists will not slow your site downloading, as it is only when you access the backend user that this parameter is accessed in the database.
In reply to: bbp_keymasterI mean that there are reasons why the role is left, but they are too tedious for me to make the effort to explain them, and you would be bored reading them 🙂
In reply to: permalinksdashboard>settimngs>forums>forum root slug and untick the
Prefix all forum content with the Forum Root slugIn reply to: bbp_keymasterbbpress leaves this behind for reasons I won’t bore you with.
Without bbpress, the role has nothing it can do, so you can just leave it.
If you want to get rid of it (and I can understand if you do) then it is just a wordpress role, so see
In reply to: Is there any function to get the Topic URL?almost right! bbp_topic_permalink outputs the result you need the get version.
use
$topic_id = 28282 ; $topic_link = bbp_get_topic_permalink($topic_id) ;
Not sure if this is what you are after
once activated go to
dashboard>settings>bbp style pack>login item 6
In reply to: Participant cannot answer forum topicgreat – thanks for posting back that you are fixed and how ! 🙂
In reply to: Warning problem bbPressso what warning does he get ?
In reply to: Roles change when user logs ingreat – let us know if you get a resolution
In reply to: Participant cannot answer forum topicyou get this error when the user fails moderation.
Admins can edit any post, so you would be able to in all events.
go to
dashboard>settings>discussion and look at the moderatin settings.
In most cases it is an excess of links, and you might want to up that parameter.
Otherwise bad words can be the cause
In reply to: Roles change when user logs inwhat does ‘Nre user auto registered as participants’ mean ?
In reply to: Why are bbPress plugins few and often out of date?your website link doesn’t work, and without explaining what you want, hard to help further.
there are many bbpress plugins – but we rely on people writing these for free and in their spare time, so since you are getting a free product, I’m not sure how complaining about lack of currency helps 🙂
In reply to: Inserted Topic Has No Contentit needs both !
In reply to: Inserted Topic Has No Contentsuspect post status and post parent (which you have commented out) might be the issue
'post_status' => bbp_get_public_status_id(),
and post parent should be the forum it belongs to, so $forum_id in your code
'post_parent' => $forum_id,
In reply to: Inserted Topic Has No Contentyour content is the contents of the variable $output_content which is not defined in the code above, so the function would either fail and do nothing or make contents empty