Forum Replies Created
-
In reply to: Oh no!
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.
In reply to: Users Can Post Bad HTML Content‘One of my users discovered that they can post potentially malicious HTML into the bbPress reply box.’
could you user state what ‘potentially malicious HTML’ they were able to post – that would help
In reply to: How can I change the title of the main forum?If you want help then,
1. state exactly what you issue is. Which part of the site you give a link to, do you consider is the ‘title of the main forum’ – which words in the site ???
2. don’t start asking for help by complaining about software that people have written for free and support for free.In reply to: Oh no!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
In reply to: Edit the bbPress login widgetoften the !important is not needed, it all depends on what order css is being loaded !
In reply to: sub topics not showing@haddly do you have
function custom_bbp_sub_forum_list($args)or as you pasted
function custom_bbp_sub_forum_list() {In reply to: sub topics not showingchange that to
function custom_bbp_sub_forum_list($args) { $args['separator'] = ''; return $args; } add_filter('bbp_after_list_forums_parse_args', 'custom_bbp_sub_forum_list' );and it should be fine
glitch in present version for some people – authors are aware
this helps many
In reply to: Edit the bbPress login widgetshould be
.bbp-login-form { background: white !important; padding: 10px !important; }In reply to: sub topics not showingok, as a TEST, can you try deactivating 1 & 2 (I wrote 3 so know it is not the problem!) and see if sub forums reappear ? You can re-enable immediately afterwards
In reply to: bbp-topic-form won’t show up properly on mobilegreat – glad you are fixed
In reply to: How to noindex member pages?great – thanks for posting your solution 🙂
In reply to: Notification emails content issuesorry, maintaining plugins is a hell of a chore, and many abandon them.
Only one I know, and still works
In reply to: sub topics not showing@haddly – thanks. What other bbpress related plugins do you have ?
In reply to: Give Admin/Keymaster ONLY a forum signature?yes !
In reply to: Freshness – Every post is showed as ” Right Now”2.6.x is having issues with freshness.
Authors will be looking into it
in the meantime try
In reply to: Header Spacingwould require javascipt- sorry beyond free help
beyond free help I’m afraid !
In reply to: Header Spacingok, so you want to hide the form unless what ?
try this
add_action( 'bbp_template_before_user_profile', 'rew_add' ); function rew_add () { echo '<META NAME=”ROBOTS” CONTENT=”NOINDEX, NOFOLLOW” />' ; }In reply to: Header Spacingcan you define/elobarate on what you mean by
‘but i cant get the page ID to work correctly’
In reply to: sub topics not showingok, can anyone who still has this problem let me know if they are using bbp toolkit
If so as a test try deactivating this (you can reactivate after) to see if this fixes.
Please report back
In reply to: Header Spacingtry this in the custom css area of your theme
#bbpress-forums { margin-top: 30px !important; }and adjust the 30px to suit