Forum Replies Created
-
In reply to: Login page table error after plugin update
ok, I’ve taken a look
2.5 just has this section in a
<div>; , 2.6 puts it into a<ul>and you can’t have a table within a<ul>, hence why it is no longer working.I’ll look at where this is coded
In reply to: How to hide the forum and its posts from visitorsgreat
In reply to: Login page table error after plugin update@thefightingperfectionist – the default message is just ‘you must be logged in to reply to this topic.’ can you say how you have extended this message to include your site details
In reply to: Login page table error after plugin update@johnjamesjacoby keep smiling – great that 2.6 is out, and was always going to throw up some issues.
In reply to: Login page table error after plugin updateyes I saw that – it is a link to the actual site so that I can examine what is being sent to the browser
In reply to: Login page table error after plugin updateneed a link to a live example to be able to look further
In reply to: Call to undefined function bbp_get_version()great – thanks for letting us know
ok, there is an issue with threads in some cases, and 2.6.1 is due to be released today – I suspect that may fix you
I suspect update of bbpress to 2.6 may be the issue – have you updated bbpress as well ?
In reply to: Installing a forum wp 5.3this will let you change text if you need it – not as good as having an ‘accepted translation’ but better than English
add_filter( 'gettext', 'rew_bbpress_translate', 20 , 3 ); add_filter( 'ngettext', 'rew_bbpress_translate' , 20 , 3 ); function brexit_translate( $translated, $text, $domain ) { if ($domain == 'bbpress') { $words = array( 'Topic' => 'New-word', 'topic' => 'new-word', ); $translated = str_replace( array_keys($words), $words, $translated ); } return $translated; }just change what you need and add to in the middle section
Put this in your child theme’s function file – or use
In reply to: Edit Profile Shows on WP menusorry, you might need to start again and express a single issue that I can try and help with.
1. At present I understand that you are using style pack, but have set to not have edit profile in the menu. I therefore do not understand what you are pressing/clicking/selecting that you need help with
2. which plugin are you referring to in ‘the workaround is this plugin, but I would rather not add another plugin, especially one that is not updated for the past two years.’
3. I simply don’t understand what you are saying about what works and doesn’t work – can you write it again into one single thread. The default edit for profile is /users/*username*/edit. what have you got set for dashboard>settings>forums>forum user slugs>user base ?In reply to: Edit Profile Shows on WP menuso if you have removed it from the settings, what are you pressing to get to that part?
In reply to: User Avatarsince bbpress just uses the WordPress avatar system, then anything that allows users to upload should work
https://wordpress.org/plugins/search/avatar/
simple local avatar looks like it is worth looking at
no problem
sorry I don’t understand – link to your site and an example please
In reply to: Featured image for all forum pages and topicsany chance of a link to your site ?
In reply to: Wrong user_id in posts, but not in topicok, not sure how to help further –
In reply to: How to hide the forum and its posts from visitorsprivate forums overrides bbpress, and you would simply need to make any ‘hidden’ forums only accessible to a group that say contains admins.
I think this still works
Put this in your child theme’s function file – or use
In reply to: Wrong user_id in posts, but not in topicok, is there any logic in what they are displaying – ie is it al the same name, the same name on any topic, etc. etc.
In reply to: Wrong user_id in posts, but not in topic‘topics’ and ‘replies’ are bbpress, ‘posts’ are WordPress.
What exactly do you mean by ‘posts’?
In reply to: Filter the Admin Links Contentok, the code works in my test site, so a reply edit admin link show ‘hello’ instead of ‘Edit’.
If this is not the case, then it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, 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.
Then come back
In reply to: Allow Forum Moderators to delete usersgreat !
In reply to: Filter the Admin Links Contentah… and are you looking at a reply, not a topic?
In reply to: Filter the Admin Links Contentok, where did you put the code?