the link just gets you to a login page.
Issue is likely to be a combination of theme and/or plugins and/or restrict content.
you don’t say what function you used, what changes you made to feedback-no-topics.php and feedback-no-forums.php or what setting in style pack, so hard to say why those solutions might not be working
Hi Robin,
I tried the workarounds you suggested here:
No forum found message in a members only forum
In feedback-no-topics.php and feedback-no-forums I translated the Oh, bother text directly into the text I want.
In style pack I tried to translate the sencentce and I tried to make it invisible.
Nothing works, it seems to me, that the content restriction plugin cuts all solutions before the can change the sentence…
If you have no solution, can you tell me, what I can say to EDD Support. There are Pippin and Jacoby in the background they should no what to do π
Thanks
Matthias
not sure I can help further, I don’t have content restrict, so I cannot see what is happening.
I suspect that even as a paid plugin they don’t offer compatibility with every other plugin, so suspect that they will just say it is a bbpress problem.
I’d suggest that you try deactivating their plugin and confirming that without it then say style pack solution or function solution works which will tell you that it is a combination.
Hi Robin,
I tell you why there was this strange behavior π
I was using a german umlaut ΓΌ in the sentence…
Changed it into html and everthing is fine!
<?php esc_html_e( ‘Dieses Forum ist nur für Dauerbenutzer!’, ‘bbpress’ ); ?>
ok, no idea why that works !! π
@matthias70 I have something for that in my https://wordpress.org/plugins/bbp-toolkit/ plugin to remove the ‘Oh Bother’, but I should check how it works with 2.6
Thanks to all:
I changed these senctence directly in feedback-no-forum.php and put it in my child theme.
I tried this before, but did not know that this sentence has a problem with german special characters. There is an ΓΌ in this sentence and it works only if I write it in html
ü
code
<div class="bbp-template-notice">
<ul>
<li><strong><?php esc_html_e( 'Dieses Forum ist nur für Dauerbenutzer!', 'bbpress' ); ?></strong></li>
</ul>
</div>
Thanks all for your suggestions
Matthias
@casiepa
you need to change this in your toolkit plugin includes/go-functions.php
lines 55 & 56
from
function bbptoolkit_bbpress_list_forums() {
$args = array();
to
function bbptoolkit_bbpress_list_forums($args) {
This brings through default values, otherwise under 2.6 sub forums don’t get shown.