Forum Replies Created
-
In reply to: Help – Multiple Profile Trolls
Many plugins are not ‘maintained’ as this take time, and if no functionality is being added, the authors can be working on other things, or have just got bored! I think it is a shame.
However many still work fine, and if not there are usually alternatives.
I haven’t tried it, but take a look at
In reply to: Forum not showing upcan you post the exact code you’re putting into your page
In reply to: Highlight keymaster replyprobably several ways you could do this.
Quickest I can think of is to alter the loop-single reply template
You should really do this in a child theme, as otherwise theme upgrades will overwrite this – google wordpress child theme video for lots of useful videos on how to do this – it’s quick and simple.
Create a bbPress folder in your theme :
Wp-content/%yourthemename%/bbpress
Where %yourthemename% is the name of your theme.
Then go into
Wp-content/plugins/templates/default/bbpress/loop-single-reply-php
Copy this file into the bbPress folder in your theme. bbPress will now use this file instead of the default, and you can amend this file.
line 61 does the content styling, so quickest to alter the background of this file.
so you would put a check I their for keymaster, and if so, use a different class that has a different background.
How up on coding and css are you, so that I don’t spend hours typing what you already know?
In reply to: Forum Icons?no problem, glad you’re fixed !
In reply to: Forum Icons?@zick123 – didn’t quite understand your post.
you just out the code into your functions file and then use the ‘featured image’ part of the forum to add whatever image you wish ie
Dashboard>forums>all forums and edit the forum, on the right ahdn side you’ll see ‘featured image’ and just add whichever one there.
In reply to: Forum Index not displaying properlySuggest this is theme related and you need to get bbpress to use the right theme template
In reply to: Dropdown menu with all forums – How to ?The problem i’m having is on all other pages
so you altered code in “content-archive-forum.php”
how or what are you doing for the other ‘pages’?
In reply to: Forum Icons?just tested worked fine on my twentyten test site
suggest 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 twentyten to prove your code works.
In reply to: 2 roles instead of 1great – glad you’re fixed !
If you want forums to be visible but not accessible to non-logged in users then you need my plugin
https://wordpress.org/plugins/bbp-private-groups/
which gives you loads of options on how your forums display
The admin bar (called the toolbar) can be disabled apart from admins
add
//disable toolbar for non-admins if (!current_user_can('manage_options')) { show_admin_bar(false); }
to you functions file
In reply to: Permissions issuebut got a message to the effect that it contained an ‘invalid header’. Thought you’d like to know.
Yes thanks for letting me know – I just re-tried it and it loaded fine. I did it direct ie
Dashboard>plugins>add new and searched for it. It installed and activated with no issues.
Strange 🙂
In reply to: What does bbp_template_before_forums_loop do?both fairly easy !
Breadcrumbs
Search
Dashboad>settings>forums> look for search and unclick it.
In reply to: What does bbp_template_before_forums_loop do?Actions are ‘placeholders’ to allow you to add code without having to alter the templates, so this line does nothing – it is a hook for you/others see
In reply to: Permissions issuegreat – glad you’re fixed !
In reply to: BBpress topic and posts positioninghmmm, sorry cannot explain why that didn’t work
In reply to: Creating a New Query Object from within a Classsuggest you look at how the forums widget lists the forums
wp-content/plugins/bbpress/includes/common/widgets.php
the forum widget starts at line 497
In reply to: BBpress topic and posts positioningdid you unzip the file?
In reply to: Created Playlistsuggest you contact the plugin author to see if they can help
you could also add the following to your functions file
add_filter('protected_title_format', 'remove_protected_title'); add_filter('private_title_format', 'remove_private_title'); //removes 'private' and protected prefix for forums function remove_private_title($title) { return '%s'; } function remove_protected_title($title) { return '%s'; }
in the same order
1. in the backend you can set a forum to private and it is only visible to logged in users
Visibility is set for each forum, go into Dashboard>forums> and when you add/edit a forum, you will see visibility options on the right hand side in the forum attributes.2. The above will achieve that
3. you can add edit profile to your menu
4. There are some plugins, but my suppers ready, so no time to google them !
5. don’t allow registration
dashboard>settings>general and uncheck anyone can registerIn reply to: Created PlaylistIs your ‘created playlist’ a plugin??
In reply to: Forum not showing upbbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
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 twentytwelve, and see if this fixes.
In reply to: Topics created on front-end don't displaybbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
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 twentytwelve, and see if this fixes.
In reply to: Old version of Bbpresshttps://codex.bbpress.org/ and look at the bottom, every version is available
In reply to: Permissions issueNo problem, set the forums to private and only registered users will see them
If you want some visibility to encourage new users use
https://wordpress.org/plugins/bbp-private-forum-visibility/
to control access