Forum Replies Created
-
In reply to: Login Widget problem!
ok, thanks glad it is working for you
In reply to: Forum page cached for new users?bbpress doesn’t override permissions, and works fine on several hundred thousand sites. Sever or webpage cache is the almost certainly the culprit – why it was affecting you we will never know.
In reply to: Forum page cached for new users?Once they are logged in they go back to the forum.
went back to the forum
sorry to keep asking , but I keep asking because I cannot fix the issue without knowing PRECISELY what someone is doing.
what does ‘go back’ mean – if it is just hitting the browser back button, then that will always show what was there before. If they are clicking areas on the site, I need to know precisely what areas. ie after creating an account, they log in USING WHAT, and then press WHAT THINGS
In reply to: Login Widget problem!that should work, but the code is not showing up in the browser, so it is not getting loaded.
In reply to: bbpress not inherit our theme headersince you have a paid theme, it would be good to raise this with them
In reply to: bbpress not inherit our theme headergo to
dashboard>settings>bbp style pack>not working?
In reply to: Login Widget problem!where are you putting this code ?
In reply to: bbpress not inherit our theme headerthis plugin will help you style the forum pages
In reply to: Unable to Delete, Edit or Close *Some* Topicsdon’t know what is happening
I’ve just looked at the core close topic code, and it just changes post_status to closed, although it goes via a whole bunch of code in a topic hander function which I haven’t been through line by line.
Suggest you try just changing the status directly in the db, and see if that fixes. You can always change it back !
In reply to: Forum page cached for new users?if they visited the page with forums on before all that
by doing what ?
In reply to: Unable to Delete, Edit or Close *Some* Topicshmm – I can’t see anything obvious here, the fact that sticky topic is 0 says that it is not sticky.
In any case you can just delete a sticky topic, so that shouldn’t stop it.
However since I cannot see why there should be 4 entries, then try just deleting the sticky topic entries in postmeta and try and close again.
If not come back and I’ll take a look at what the bbpres close function does tomorrow
In reply to: Unable to Delete, Edit or Close *Some* Topicsno that’s as good amount of information
for one of these topics that won’t close, can you give us the full post and postmeta entries. (you can blank any sensitive content)
In reply to: Forum page cached for new users?depend what you men by ‘back’ if you mean your browsers back button, then this will simply return to the previous screen.
In reply to: button open close new topic form@brent0r – that would be great – all for having lots of options
In reply to: Login Widget problem!try
input[type=”text”] { width: 50% !important; } .bbp-login-form .bbp-password input { width: 50% !important; }In reply to: Login Widget problem!Put this in your custom css area
input[type=”text”] {
width: 50%;
}.bbp-login-form .bbp-password input {
width: 50%;
}In reply to: Login Widget problem!I’d need a link to the actual site to tell you how to fix this
In reply to: This forum is emptyif you have a child theme, and are happy with ftp, I can give you a revised template
In reply to: button open close new topic formhaving a button at the top which goes to the form at the bottom can be achieved by
dashboard>settings>bbp style pack>buttons
Having the from hidden is quite possible, but I don’t know of any already written code to do that
In reply to: EASY – Multiple Users one IPyes, I frequently have multiple users on different browsers on my one PC when I am testing
In reply to: This forum is emptygreat
than add this
//This function changes the text wherever it is quoted function rew_change_translate_text( $translated_text ) { if ( $translated_text == 'This forum is empty.' ) { $translated_text = 'new text'; } return $translated_text; } add_filter( 'gettext', 'rew_change_translate_text', 20 );Instead of ‘This forum is empty.’ you will get ‘new text’, so just change new text to what you want
eg change the line
$translated_text = 'new text';to
$translated_text = 'Categories listed below';– if you want it blank then have that line say
$translated_text = '';In reply to: This forum is emptydo you know how to add something to your childtheme functions file ?
In reply to: Display number of subscribers of a forum@chumtarou – I’m playing with this in between paid jobs – I have topics working, but replies for a single forum is a bit more tricky.
I’ll then look at forum subscribers
I’ll be back at some stage.
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back