Forum Replies Created
-
In reply to: How do I change font color in closed forum topics
it’s just that we are both writing amendments to the same code.
if you go to
dashboard>tools>bbp toolkit>information you will see a line saying
Change the separator between the subforums on the forum index page to
change that to newline and you should be good to go
In reply to: I can’t edit new posts anymoreI suspect an update has caused a conflict
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: How to Sort Ascending in 1 Forum Onlymy style pack plugin let you do that
dashboard>settings>bbp style pack>topic order tab
and then you can set an alternate for one or more forums
In reply to: How to hide from publicAdd this to your functions file
add_filter( 'bbp_get_reply_content', 'rew_remove_code_tags', 10, 2 ); function rew_remove_code_tags ($content, $reply_id) { if (!is_user_logged_in()) { $content = preg_replace("/<code>.+?<\/code>/i", "", $content); } return apply_filters( 'rew_remove_code_tags', $content, $reply_id ); }In reply to: Is there a way to export and filter?you can export topics and replies using wordpress to an xml
go to
dashboard>tools>export>and select topics and replies
or if you want csv, this plugin may work (it is quite old, but as you’re exporting might be worth a try)
In reply to: New installMySQL 5.2 does not appear to be a supported version
https://www.mysql.com/support/supportedplatforms/database.html
that may (or may not) be the issue ๐
In reply to: More “newbie” problemswe need to be able to see your site – see other thread and once site is visible come back
In reply to: Performance probleminstalling and uninstalling will not impact performance.
In reply to: Help! “newbie” bbpress login problemsWe were all newbies once, so please don’t worry about not being able to explain in technical terms !
The problem of course is that I can’t see your site, so it is like you phoning me up and saying your car is making a funny noise, what’s wrong? ๐ ๐
I’d suggest we get to something you can publish, and then when you have I can give better help once I can see the site.
So try this :
install
and activate
Once activated go to
Dashboard>settings>bbp style pack>login and you’ll see setting that will let you add a login and register in the menu rather than a widget.
You will also see that you can style lots of things, so the text size on the forum page is changed by
Dashboard>settings>bbp style pack>Forums Index Styling>5. links
In reply to: How do I change font color in closed forum topicsI think you have your forums set as private
In dashboard>forums>all forums>edit forum you can change a forum to be public.
If this is not the case come back.
There is not a specific importer for Microsoft dynamics 365, but importing from a sql database is possible if you know where the data is stored.
If you download bbpress, you can find an example importer in
includes/admin/convertors/example.php
if you can map where the data is in the source, then this can be tailored to import
In reply to: Performance problemSorry that did not translate well, can you try again
In reply to: Performance problembbpress powers some very large forums, including this one.
Performance could be down to many many factors, and I’m not sure that we can help.
In reply to: New installwhat version of MySQL are you on ?
I don’t understand quite what โbbPress Forum Redirect’ does – the plugin page seems to say it just takes you to an external site?
1. What are you putting into the url on the metabox,
2. I don’t understand what the user is doing can you give an example of what they are clicking/typing to start
3. Can you then say what happens without and what happens with that is different ?what other plugins do you have ?
In reply to: Page securityThere are miscreants out there who just have bad things on their minds.
๐
In reply to: Page securityif you want to restrict to just registered users, then simply set the forum to private
dashboard>setting>forums>all forums>edit forum and just set to private on then right hand side.
If you want something more complex, then my private groups plugin gives lots of granularity
In reply to: Import parent and child relationshipsthanks
In reply to: How do I change font color in closed forum topicsthat link shows no topics.
But if you can give me a link with an example, then I can help
In reply to: Display number of subscribers of a forumok, I’ve done a very basic version in my style pack plugin, which would let you use a shortcode in say a widget.
once installed go to
dashboard>settings>bbp style pack>shortcodes and see the last one
In our case, we have only 5 forums and we were thinking it would be nice to show the same information available in the โForumsโ section in the backend of WordPress where it displays a column of the number of subscribers for each forum.
Pascals tollkit will show the number of sucsbribers in the backend as a column
I need to do much more to do what you want for the rest.
ok, I played with this for a while, and any solution would be site/theme specific and beyond free help I’m afraid.
In reply to: Import parent and child relationshipsDid you do a bbpress to bbpress importer? I know it was mentioned some time ago.
In reply to: One topic in multiple forums – possible?Possible? – not without a load of bespoke code – I’m afraid
In reply to: No back button to parent forumforums have breadcrumbs to help navigation.
Yours appear to be switch off, possible by your theme?