Forum Replies Created
-
In reply to: bsp topic display block widget in sidebar
tried those, still cannot replicate.
Can you try changing the forums in
forum='6,8,14'to see if it is one of those affecting?In reply to: bsp topic display block widget in sidebarthat seems to be ok in my test site.
it might be a conflict between certain widgets
can you tell me what widgets you are using?
In reply to: styling forum name besides each topicGreat – glad you are fixed 🙂
In reply to: styling forum name besides each topicnote tested but possibly
#bbpress-forums .bbp-parent-forum-12345 p.bbp-topic-meta .bbp-topic-started-in a { background-color: #328C00; } #bbpress-forums .bbp-parent-forum-12346 p.bbp-topic-meta .bbp-topic-started-in a { background-color: #ff4b33; }In reply to: styling forum name besides each topic#bbpress-forums p.bbp-topic-meta .bbp-topic-started-in a { background-color: #328C00; }put this in your themes custom css area
In reply to: Hide “topic type”do you have FTP capability?
In reply to: Hide “topic type”it is hidden for participants
In reply to: Version 6.1 et derniere version bbpressgreat – glad you are fixed
Thanks for posting – should help someone else coming along later.
I’ve posted a trac ticket
so just for clarity, what lines of what file did you comment out?
In reply to: Version 6.1 et derniere version bbpressit is installed as an additional plugin, so should be in the plugins and settings.
once activated, navigate to
dashboard>settings>bbp style pack, and you should see the first tab called ‘Theme Support’ – if you don’t see this, come back.
In that tab, select
Enable Theme Support
and save
The forums should then display
In reply to: Version 6.1 et derniere version bbpressyou are using twenty twenty two theme.
install
once activated go to
dashboard>settings>bbp style pack>
and you can set to allow forums to work
In reply to: Indicator ‘New post’ remains after readingno problem, glad that you are fixed 🙂
In reply to: topic type and status are not availablethis is only available to ‘moderators’ and ‘keymasters’.
In reply to: Indicator ‘New post’ remains after readingok, that’s not a bbpress function.
It might well be an additional bbpress related plugin, what related plugins do you have ?
In reply to: Indicator ‘New post’ remains after readingthe dot for ‘new thread/response’ remaained for one.sorry, not sure what this means, can you post an image
In reply to: Where to start to change forum layout?@alex198031 for create new topic go to
dashboard>settings>bbp style pack>forum buttons>item 1
In reply to: Where to start to change forum layout?@alex198031 dashboard>settings>bbp style pack>translations
In reply to: Where to start to change forum layout?In reply to: Where to start to change forum layout?This should be what you want
In reply to: Edit text “You cannot create new topics”🙂
In reply to: 404 error in breadcrumbs (topic)🙂
In reply to: Edit text “You cannot create new topics”just can just add it to the other one
add_filter( 'gettext', 'rew_change_must_be_text', 30, 3 ); function rew_change_must_be_text( $translated_text, $text, $domain ) { if ( $text == 'You must be logged in to create new topics.' && bbp_get_forum_id() == 2927 ) { $translated_text = 'new text here' ; } if ( $text == 'You cannot create new topics' && bbp_get_forum_id() == 2927 ) { $translated_text = 'new text here' ; } return $translated_text ; }🙂
in this part
bbp_get_forum_id() == 2927so for your forum, go to
dashboard>forums>all forums and select ‘edit’ of the forum you want
At the top of your browser in the url bat you will see
http://mysite.com/wp-admin/post.php?post=2927&action=edit2927 is the number of that forum, in my case 2927