Forum Replies Created
-
In reply to: Add Featured Image to New Topics in Frontend WYSWYG
You are asking someone to write code in their free time to do something that their code wasn’t intended to do.
it’s that simple
In reply to: Add Featured Image to New Topics in Frontend WYSWYGyou seem to completely misunderstand open software foundation software, so you would clearly not understand a response
In reply to: Error messages are out of sightthis is what I might out in style pack
add_action ('bbp_template_before_single_forum' , 'bsp_template_notices') ; add_action ('bbp_template_before_single_topic' , 'bsp_template_notices') ; function bsp_template_notices() { // Bail if no notices or errors if ( ! bbp_has_errors() ) { return; } // Define local variable(s) $errors = $messages = array(); // Get bbPress $bbp = bbpress(); // Loop through notices foreach ( $bbp->errors->get_error_codes() as $code ) { // Get notice severity $severity = $bbp->errors->get_error_data( $code ); // Loop through notices and separate errors from messages foreach ( $bbp->errors->get_error_messages( $code ) as $error ) { if ( 'message' === $severity ) { $messages[] = $error; } else { $errors[] = $error; } } } // Display errors first... if ( ! empty( $errors ) ) : ?> <div class="bbp-template-notice error" role="alert" tabindex="-1"> <ul> <li> <?php echo implode( "</li>\n<li>", $errors ); ?> <a href="#new-post"> <?php _e('Click here to correct', 'bbp-style-pack') ; ?> </a> </li> </ul> </div> <?php endif; }In reply to: Error messages are out of sightI’ve found that annoying in the past, and not bothered to think about correcting.
This basic code will display the errors at the top, but I might look to improve on that in style pack
add_action ('bbp_template_before_single_forum' , 'bbp_template_notices') ; add_action ('bbp_template_before_single_topic' , 'bbp_template_notices') ;Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
In reply to: Do I have to stay in version 2.5 for life?ok, do come back if you want further help 🙂
In reply to: Do I have to stay in version 2.5 for life?when you restore it, it then becomes a draft – so you need to go into the topic in the tableau de bord and approve it – can you test this please
In reply to: Do I have to stay in version 2.5 for life?If you bin/trash/’corbeille’ a topic, then you can restore it through
tableau de bord>sujets>corbeille>restaurer
dashboard>topics>bin/trash>retore
If you delete permanently/’supprimer’ a topic, then yes any reference to it will produce a 404 error, as that link does not exist.
In reply to: apply js file only to the bbp forumgreat – glad you are fixed !
In reply to: Do I have to stay in version 2.5 for life?sorry, can you retype that last sentence – doesn’t quite make sense
In reply to: How to set reply form under the messageit would need javascript coding – not my area of expertise 🙂
In reply to: developing login re-direct issuesboth the top and bottom login links are the default login, they were there to start with
which probably suggests they are theme related.
bbpress just passes details to WordPress login, and if the theme is also using WordPress login, it may well be that on a single page you have 3 things sending info to WordPress authorisation, so any one might send an ‘after login’ redirect, and it might be different dependant on which is completed.
If you also have membership plugins active, then these might also catch a login and do a redirect.
computers are consistent (often annoying so!) so it might be either different logins, or other changes you are making to membership that are affecting.
I’d start by stripping back and working out what is doing what.
so
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see what changes.
Plugins
If that doesn’t work, also deactivate all plugins, and see what the login at the top and bottom do. Then add bbpress and see what changes.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: developing login re-direct issuesso what are you using to login – bbpress login widgets, shortcodes or what?
In reply to: Do I have to stay in version 2.5 for life?presuming you don’t have anti-spam or moderation plugins, then it will be wordpress moderation settings
dashboard>settings>discussion and check moderation, blacklist and whitelist settings, particularly no. links which is the usual one that users exceed.
In reply to: Forum subscriptions are not displayed in profileok, I can only suggest you look at possible conflicts
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: Forum subscriptions are not displayed in profileis this new, or has been happening always on your forum ?
In reply to: Quoted repliesIn reply to: Quoted repliescan you post a link to the
discussion here is from 2016
you are referring to so that I can understand please
In reply to: Special Feature to keep Spammer outthis plugin lets you set who can post links, and lots of other features.
It still works fine, despite not having been updated for a while
In reply to: Messy Emails to users🙂 thanks 🙂
In reply to: WP database password changed, bbpress erroralways pays to check how someone did something 🙂
the code that is being called at that point just loads the worpdress access details, so that loaded from wordpress.
I’d suggest a chat with your host provider to see if they know anything in their set up that might have cached an old version.
In reply to: Messy Emails to usersare you using the text editor in bbpress, or have you got a visual editor running ?
In reply to: WP database password changed, bbpress errorcan you just confirm that you have changed the password in wp-config.php as well?
In reply to: New Views Code Helpwe’ve all been there 🙂 🙂
In reply to: does not preview any links from instagram or YoutubeI’ve not read this in detail, but seems relevant
In reply to: Do I have to stay in version 2.5 for life?hmmm… that sounds really weird, no idea what could cause that