Forum Replies Created
-
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
In reply to: Managing login to forum with a set list of emailsNothing I know of to do that – it could be coded but beyond free help.
In reply to: How to list Top Users by most topics?In reply to: Display number of subscribers of a forumI’ve just (today) released a new version of my “bbp topic count” plugin with a new shortcode which will show the top X users across the forums.
I’ll take a quick look to see if I can make this forum specific.
In the meantime take a look at
dashboard>settings>bbp topic count>shortcodes to see what it is and how to use it.
In reply to: Topics not found, only sticky topics showok, can you contact me via my website so we can exchange info
I think I have code that fixes this in
In reply to: Topics not found, only sticky topics showok, I think the key item is that it is repairing the post_parent, so a reply gets back it’s topic ID.
I can only presume this is from the topic_id held in postmeta.
Can you confirm for another reply that you haven’t updated that
1. post_parent is 0 and
2. postmeta has the entry _bbp_topic_id with a number against it.and then randomly check several more.
then update a couple and confirm that post_parent is now complete.
If all that checks out – I can write a quick programme that will go through each reply, pick up the topic_id from postmeta and set post parent.
In reply to: User Registrationbbptress uses wordpress registration, so only one registration needed
In reply to: Fatal error (I can’t even access my dashboard)great – glad you are fixed
In reply to: Topics not found, only sticky topics showoh, and before you do that, you haven’t run a repair – sorry I missed that you hadn’t done that – the stickying and unsticking led me away from that 🙂
go to
dashboard>tools>forums>repair forums and run one at a time – I’d start with the first, it may be all you need to do
In reply to: Topics not found, only sticky topics showok, so for site you are working on look at a single reply ID that is not working
assuming you table have the wp_ prefix, then in sql type
SELECT * FROM
wp_postsWHEREID= xxwhere xx is the name of the reply
copy that line into anything (word, notepad etc.)
then
SELECT * FROM
wp_postmetaWHEREpost_id= xxand copy that.
Then go into dashboard and do whatever you are doing to fix
then repeat
then come back here and say what items have changed if any
that will get us much further forward even if nothing has changed.
ok, I can’t see any reason why that should not work
Can you contact me via my website
did you try the gravity hook ?