Forum Replies Created
-
In reply to: Pagination with threaded replies
From memory I wrote this additional plugin a while ago based on that ticket
Let me know if that helps
In reply to: How to hide column with users that posted threads?having hidden it, you can amend the width of the other columns
eg
li.bbp-forum-freshness, li.bbp-topic-freshness { display: none; } li.bbp-forum-info, li.bbp-topic-title { width: 65%; } li.bbp-forum-reply-count, li.bbp-forum-topic-count, li.bbp-topic-reply-count, li.bbp-topic-voice-count { width: 15%; }
can you just let me know what shortcode you are using, then I can try it out on my test site.
when you go into widgets, you will get a display of what the widget will show.
Click once anywhere in that image, and it will take you to the settings.
Another far from intuitive thing that WordPress now does as it attempts to make itself unusable to anyone but a professional ๐
In reply to: Pagination with threaded repliesI think my fix in this plugin still works
once activated go to
dashboard>settings>bbp style pack>bug fixes
In reply to: Update 2.6.9. TinyEditor is gone. Simple cure?ok, let us know how you get on
you can use the troubleshooting part of this plugin to let you see what happens when you deactivate without needing to affect the live site
In reply to: Update 2.6.9. TinyEditor is gone. Simple cure?๐
In reply to: Topic Text doesn’t appear above textareagreat – glad you are fixed ๐
In reply to: Topic Text doesn’t appear above textareaok so 2 things you can do here
1. add a label
add_action ('bbp_theme_before_topic_form_content' , 'rew_content_title') ; function rew_content_title () { echo '<label for="bbp_topic_content">Topic Content</label><br />' ; }
Just change ‘Topic Content’ to whatever you wish
2. add back the editor
add_action( 'wp_footer', 'rew_supports_js' ); function rew_supports_js() { echo '<script>document.body.classList.remove("no-js");</script>'; }
Put these 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: Update 2.6.9. TinyEditor is gone. Simple cure?is your site public enough to be able to see an example?
In reply to: Cรณmo crear un foro en espaรฑolSolo puedo sugerirle que use el traductor de Google o el traductor de su navegador, para ver este enlace
In reply to: memberpress integration with bbpressyou first questions are I think members press related, so need to be referred to them.
bbpress works on topics and replies – it’s logic is that you can’t reply to nothing, so yes you need a topic ๐
ok, I spent a while looking at this, but with no luck -I’d can 0nly suggest you raise this with your theme author
In reply to: Update 2.6.9. TinyEditor is gone. Simple cure?have you tried this
add_action( 'wp_footer', 'rew_supports_js' ); function rew_supports_js() { echo '<script>document.body.classList.remove("no-js");</script>'; }
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: Topic Text doesn’t appear above textareaok, I’m not sure what you mean – can you post a picture of the area
In reply to: member only 404The easiest way would be to use
once activated go to
dashboard>settings>bbp style pack>Subscription Emails
and tick item 2 and look at the choice of loginThis will then detect if a user is trying to access a private forum and redirect them to a login and then to the topic/reply as appropriate
In reply to: member only 404how is the user getting to a 404 page?
eg are they entering a url, from email, from a page?
the forum is for members only, but it looks exactly like this, it basically goes all the way up to the top of the page, and writes over my page menu/header: https://gyazo.com/ac8e4ee8ca7d772124fac635e9342ea4
Your photo is appreciated, but it is the equivalent of sending me a photo of your car engine and asking me to tell you what’s wrong. It is probably some css that needs changing, but without being able to see what is being downloaded to a web browser I can’t help further – sorry.
I have bb style pack, but can it do something like this? Like for example, to customize search button appearance like here? https://gyazo.com/1a26b445dd8db18ac64b0ad793602b4b
go to dashboard>settings>bbp style pack>search styling
on the search, I would need a link to a live example to see what is happening
on styling – this plugin should help
great – glad you are fixed
is an add-on to bbpress and will let you split your forums into as many groups as you like.
membership plugins tend to assign roles to members if you want different membership types, and then private groups plugin can then assign these to the forum groups
great – have a good 2022 !!
and do post back the solution when you get there
In reply to: How to make anonymous posts pending๐