Forum Replies Created
-
In reply to: How To Turn off Link Button in Forum
put this is the custom css part of your theme
#qt_bbp_reply_content_link { display : none ; }
In reply to: “No Topics” issue on forum pageif you have style pack installed, can you enable
dashboard>settings>bbp style pack>bug fixes>fix Last Active Time
and let us know whether this makes a difference
this code is from a bbpress convertor – no idea why it is running.
suggest you delete the user and recreate them
In reply to: Wrong Post Numberbbpress is just a custom post type, so in the database entry 2448 just happens to be a topic, 2447 could be a WordPress post, a wordpress page, a revision or another custom post type.
They’re all just database numbers
In reply to: Wrong Post Numbersorry I don’t understand the question?
In reply to: How to paste text to discussion forumyou could enable the visual editor
either
or
once activated go to
dashboard>settings>bbp style pack>Topic/Reply Form
In reply to: Notifications – Date Received = “Sometime Ago”one possibility (that is a workaround) would be to display as the actual date/time rather than ‘ago’
for instance my style pack plugin has the ability to change that.
once activated go to
dashboard>settings>bbp style pack>Freshness Display
In reply to: Notifications – Date Received = “Sometime Ago”great – thanks for posting the answer – and do come back if you work it out.
In reply to: 2.6 doesn’t recognise existing WP forum roleswithout knowing what then fatal error is, hard to help further – can you switch debug on ?
In reply to: How can I change the yellow background?no idea what the ‘reference to what I’m talking about’ link is trying to show
In reply to: 2.6 doesn’t recognise existing WP forum rolesok, thanks for the update.
I loaded your code in my test site and it works fine – eg I can allocate someone to warlord.
what plugins do you have on your site?
It is all quite doable, but sorry, you well into design and beyond free help in a support forum.
In reply to: 2.6 doesn’t recognise existing WP forum rolescustom roles work on my test site under2.6
I’ll load your code onto my test site later and see if it works there.
In reply to: How can I change the yellow background?ok, site specific issue, without being able to view the site, I can’t really help further
In reply to: Last reply author’s name in loop-single-topic?great – glad you are fixed
In reply to: Last reply author’s name in loop-single-topic?ok, understand
if you just want that then
add_filter( 'gettext', 'rew_bbpress_translate', 20 , 3 ); function rew_bbpress_translate( $translated, $text, $domain ) { if ($domain == 'bbpress') { $words = array( 'Reply To:' => 'Svar till:', ); $translated = str_replace( array_keys($words), $words, $translated ); } return $translated; }
Put this in your child theme’s function file – or use
great – glad you are fixed
In reply to: Make Forum Full WidthI saw that you had changed it.
that’s fine, if I am the last remark, then I know it needs no further action.
we leave topics open in case others want to add their views 🙂
In reply to: Make Forum Full Widthnot sure anyone is in charge of WordPress, but if you asked about making bbpress wider then they would say ask bbpress 🙂
anyway as I say, it is your theme, not WordPress or bbpress, that is doing this.
In reply to: Make Forum Full Widthsorry, theme related not bbpress
In reply to: Last reply author’s name in loop-single-topic?is bbpress not translated in Swedish ?
In reply to: Make Forum Full Widthlooks pretty full width to me – have you refreshed your browser?
the theme is setting a width of 90% well before bbpress gets involved.
you could try
.both-sidebars .container { width: 100% !important ; }
but that will affect the whole site