Forum Replies Created
-
In reply to: is it possible to allow all users create new forum ?
@injili Just replied to your shared topic.
In reply to: allow/enable all users create groups under bbpressYou can try the following solutions.
In reply to: 404_template hook fires wronglyI have tested it on my test site using bbPress Version 2.6-rc-3 but i couldn’t reproduce the issue.
The 404_template filter doesn’t get fired for me and is_404 function also returns false as shown here https://imgur.com/a/xmfiM
Could you please describe a bit more in detail how to reproduce it?
In reply to: BUG in wp-adminI can’t confirm the issue on my test site using bbPress Version 2.6-rc-3
Could you please share the screenshot of the issue or describe a bit more in detail how to reproduce it?
In reply to: Problem displaying topicsThis can be your theme issue used on your site so to confirm it just temporary use the any default WordPress theme like Twenty Seventeen theme on your site. If everything works fine then it’s theme issue.
In reply to: reduce main forum spacing@michaellanfield You are always welcome here 🙂
In reply to: Search not finding results@zopfan This is old topic so let’s resolve your issue in your following topic.
In reply to: ‘Forums Search’ returning wrong resultsI have tested it on my test site and it’s working fine for me using latest version of bbPress plugin.
Please make sure you are using latest version of bbPress plugin.
This can be your theme issue on your site so to confirm it just temporary use any default WordPress theme like Twenty Seventeen theme. If everything works fine then it’s your theme issue.
Also this can be due to plugin conflict on your site so please try temporary deactivating all plugins except Unyson plugin and see whether everything works fine and then enable the plugins one by one to see which plugin is conflicting if any.
Could you please share me your site URL where it’s happening so that i can troubleshoot it?
In reply to: reduce main forum spacingI can see the lines in your shared forum.
To reduce spacing you can also try using below CSS code.
.bbp-forum-info .bbp-forum-title { margin-bottom: 0; }
In reply to: forum issue on wordpressJust want to let you know that if your question is related to bbPress plugin then only post in this forum. In this case it is related to BuddyPress plugin so we requested above to post your question on https://buddypress.org/support/
In reply to: Buddypress Messes Up My RSS FeedYour question is related to BuddyPress plugin but this forum is only for bbPress plugin so as requested above please post your question on https://buddypress.org/support/
In reply to: reduce main forum spacingIt’s hard to help you without accessing your site but please try using below CSS code on your site as described here http://freewptp.com/how-to-use-custom-css-in-wordpress-site/ to reduce spacing.
#bbpress-forums .bbp-forum-info .bbp-forum-content { margin: 0 !important; }
In reply to: Single reply redirect to topicActually you have to click on the topic title as shown in the screenshot here http://imgur.com/a/T5aNz to go to the topic where the reply is posted.
In reply to: Change the language in bbpress, HELP!Please make sure you have uploaded files to /wp-content/languages/bbpress/ of your WordPress installation. If the /wp-content/languages/ and /wp-content/languages/bbpress/ folders do not exist, create them.
Also please rename each file of the files to bbpress-language_COUNTRY.extension
eg. bbpress-plugin-pt-br.po to bbpress-pt_BR.po
and bbpress-plugin-pt-br.mo to bbpress-pt_BR.mo.
Note: Ensure you use the – and _ in the correct place per the above example.In reply to: Change the language in bbpress, HELP!To achieve this you have to translate bbPress in your language as described in the following page.
In reply to: Requesting access to edit bbPress documentationYes i am logged in and already read the shard page but i didn’t get “Edit This Page” link in the sidebar which may be because of my user account role.
In reply to: Post templateYou can just hide it using below custom CSS code on your site as described here http://freewptp.com/how-to-use-custom-css-in-wordpress-site/
#bbpress-forums fieldset.bbp-form label[for="bbp_anonymous_website"], #bbpress-forums fieldset.bbp-form #bbp_anonymous_website { display:none; }
Or you can overwrite following bbPress template file in your child theme and remove website field code from it.
/bbpress/templates/default/bbpress/form-anonymous.php
In reply to: Single reply redirect to topic@angelorocha Not sure exactly what you are trying to achieve here so could you please describe it a bit more in detail by sharing screenshot or page URL of it?
In reply to: change forum header textYou can change it by adding following custom code in the functions.php file of your child theme.
function vvd_bbpress_translate_text( $translated_text, $text, $domain ) { if ( 'bbpress' === $domain && 'Voices' === trim($translated_text) ) { $translated_text = 'Voix'; } return $translated_text; } add_filter( 'gettext', 'vvd_bbpress_translate_text', 20, 3 );
In reply to: register page problemJust tested it on my test site and it is working fine for me.
Please make sure you are using latest version of bbPress plugin.
This can be due to plugin conflict on your site so please try temporary deactivating all plugins except bbPress plugin and see whether everything works fine and then enable the plugins one by one to see which plugin is conflicting if any.
Could you please share me the page URL from your site where it is not working correctly so that i can troubleshoot it?
In reply to: Forum not updatingI can see you are using W3 Total Cache on your shared site so cold you please clear the cache from it or temporary disable it?
In reply to: I get HTTP ERROR 500 when trying to acces the forumIt seems you are getting 500 Internal Server Error so please try fixing it as described on the following page.