Forum Replies Created
-
In reply to: Private topics in Global Forum
hmm…this is a buddypress issue I think
see
Don’t think there is anyway to alter these.
you could try
https://wordpress.org/support/plugin/bbp-private-groups
and see if you can integrate this into buddypress.
In reply to: Topic posts can't be seenok, I can your issue
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.
Then come back
In reply to: Increase Font Size for overall forumThanks, glad I can help !
can you post a link/url to an example forum please
In reply to: Topic posts can't be seencan you post a link/url to an example
In reply to: upgrade from 1.2 to 2.5.4er yes, it’s all in the menu tab labelled documentation above 🙂
This can be done, but I’d need to do some work for it, contact me via my website
ok, if you have ftp access then…
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-forum.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/loop-single-forum.php
bbPress will now use this template instead of the originalThen look at line 74
<span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_forum_last_active_id(), 'size' => 14 ) ); ?></span>The ‘size’ => 14 is the avatar size, so reduce this to what you want.
In reply to: BB Wysiwyg Editor errorgreat – so presume you’re fixed.
In reply to: upgrade from 1.2 to 2.5.4In reply to: Nav Menu disappears upon installation of bbPressIt 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.
Then come back
In reply to: How to add custom colors for each Role ?In reply to: How to add custom colors for each Role ?an ugly green backgroundit was an example not a solution !
If you want to get into this side you should learn about developer tools
https://developer.chrome.com/devtools
https://msdn.microsoft.com/en-gb/library/ie/gg589507(v=vs.85).aspx
then you can quickly see what is being used.
In reply to: bbp Style Pack – styling and displaying forumsHey thanks !
new version https://wordpress.org/plugins/bbp-style-pack/
I’ve been doing some testing with another user with this issue, and have now released version 1.4, which should fix this issue
Regards
Robin
In reply to: bbPress User Profile Manipulationok, I’ve kicked the code around an adding this to your functions file will fix it.
I may add it as an option to the profile at some stage, but not likely that soon, so paste this code into your functions file
//* Code addition for bbP Profile Information Plugin add_action('register_form','myplugin_register_form'); function myplugin_register_form (){ $rpi_label1 = ( isset( $_POST['rpi_label1'] ) ) ? $_POST['rpi_label1']: ''; $rpi_label2 = ( isset( $_POST['rpi_label2'] ) ) ? $_POST['rpi_label2']: ''; ?> <p> <p> <label for="rpi_label1"><?php echo $rpi_options['item1_label'] ; ?><br /> <input type="text" name="rpi_label1" id="rpi_label1" class="input" value="<?php echo esc_attr(stripslashes($rpi_label1)); ?>" size="25" /></label> </p> <p> <label for="rpi_label2"><?php echo $rpi_options['item2_label'] ; ?><br /> <input type="text" name="rpi_label2" id="rpi_label2" class="input" value="<?php echo esc_attr(stripslashes($rpi_label2)); ?>" size="25" /></label> </p> <?php } add_filter('registration_errors', 'myplugin_registration_errors', 10, 3); function myplugin_registration_errors ($errors, $sanitized_user_login, $user_email) { if ( empty( $_POST['rpi_label1'] ) ) $errors->add( 'rpi_label1_error', __('ERROR: You must include a first name.','mydomain') ); if ( empty( $_POST['rpi_label2'] ) ) $errors->add( 'rpi_label2_error', __('ERROR: You must include a last name.','mydomain') ); return $errors; } add_action('user_register', 'myplugin_user_register'); function myplugin_user_register ($user_id) { if ( isset( $_POST['rpi_label1'] ) ) update_user_meta($user_id, 'rpi_label1', $_POST['rpi_label1']); if ( isset( $_POST['rpi_label2'] ) ) update_user_meta($user_id, 'rpi_label2', $_POST['rpi_label2']); }In reply to: Moving Forums Root to sub pageok, do keep us updated on your progress, I am interested to see how it turns out, hope it’s you:1 the technology:0 !
In reply to: Increase Font Size for overall forumok, you will need to set it in lots of places.
try my plugin
In reply to: Custom Roles & Capabilitiesahh, so you started again, maybe I won’t suggest others delete their set-up to get it working 🙂
I’ll have another play myself in a few weeks, but thanks for all your testing, and patience – many give up just before they would have fixed it !
In reply to: Custom Roles & Capabilitieswell there you go, sounds like something needs ‘resetting’ to get it to work
so did you deactivate/activate bbppress or what did you do? I’ll then add this as a suggestion in the documentation !
In reply to: Users Can't Login To BBPRESSIt 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.
Then come back
In reply to: Custom Roles & Capabilitiesok, do come back if you get it fixed – it should work, and something is stopping it !!
In reply to: bbpress forum doesnt look rightno problem
Oh and I am using the Houman Theme
can you confirm you mean the hueman theme
and that the plugin is ‘Responsive lightbox’ rather than ‘Responsive lightbox by dFactory’