Forum Replies Created
-
In reply to: Create/Reply/Edit Topics Question
Is this going to conflict with some of the bbPress swnippets I have already implemented. I.e. Login/logout redirection, etc. Or will it conflict with UAM for access to forums.
no idea – you’ll need to test this đŸ™‚
In reply to: i want to replacement bbpress comment editorcan only give you the area for html
so two files
wp-content/plugins/bbpress/templates/default/bbpress/form-topic.php
wp-content/plugins/bbpress/templates/default/bbpress/form-reply.phpcreate a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
Make a copy of the two files above, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/bbpress/form-topic.php
and
wp-content/themes/%your-theme-name%/bbpress/bbpress/form-reply.phpbbPress will now use this template instead of the original
and you can amend thisSuggest your html/php needs to replace
<?php bbp_the_content( array( 'context' => 'reply' ) ); ?>
but you’ll need to work out exactly how yourself !!
In the spirit of sharing stuff, if you work it out, please post the solution to this thread !!
In reply to: Create/Reply/Edit Topics Questioninstall my private groups plugin and enable topic permissions
In reply to: Topics don’t work, eithergood glad you are fixed !
In reply to: Shortcodes and Widgets broken in Betano problem – glad you are fixed !!
In reply to: Shortcodes and Widgets broken in BetaSuspect you are using php 7.1
so 3 fixes
1. downgrade to a lesser version of php
2. upgrade to bbpress 2.6rc3
3. in bbpress 2.5.13 in includes/forums/functions.php
change line 1851 from
$meta_query = $posts_query->get( ‘meta_query’ );
to
$meta_query = $posts_query->get( ‘meta_query’, array() );
and change line 1796 from
$post_stati = $posts_query->get( ‘post_status’ );to
$post_stati = $posts_query->get( ‘post_status’ );
if (!is_array($post_stati)){
$post_stati = array($post_stati);
}In reply to: User functionalitythat’s sort of how it works now.
just set
dashboard>settsings>forums to give the participant role to new users
and set your forums as public.
In reply to: Create main menuThis is a theme rather than bbpress question.
you need to work out how to get your theme to display a menu and then create link items in that menu
In reply to: How to disable access of Forum pagegreat – glad you are fixed !!
In reply to: How to disable access of Forum pageeasiest way I can think of is to set the permalink of a page to the same as the forums slug, and then just have text in this to explain how to access the forums.
In reply to: “Forums” Results in blank page.In reply to: BBpress in twenty sixteen themeyou need to allow it
dashboard>settings>general>anyone can register
In reply to: “Forums” Results in blank page.no problem, glad you are fixed !!
In reply to: How to disable access of Forum pageso you want you to be able to create topics and replies, but your users to just read?
In reply to: How to disable access of Forum pageso who do you want to see the forum page – just you?, just registered users or who?
In reply to: “Forums” Results in blank page.ahh!!
7.1 has some issues with bbpress (or visa versa)
so 3 fixes
1. downgrade to a lesser version of php
2. upgrade to bbpress 2.6rc3
3. in bbpress 2.5.13 in includes/forums/functions.php
change line 1851 from
$meta_query = $posts_query->get( ‘meta_query’ );
to
$meta_query = $posts_query->get( ‘meta_query’, array() );
and change line 1796 from
$post_stati = $posts_query->get( 'post_status' );
to
$post_stati = $posts_query->get( ‘post_status’ ); if (!is_array($post_stati)){ $post_stati = array($post_stati); }
In reply to: “Forums” Results in blank page.ok, can I have a link to the working site?
In reply to: BBpress in twenty sixteen themeok, you have two choices
either use the default wordpress lost password and register
http://mysite.com/wp-login.php?action=lostpassword http://mysite.com/wp-login.php?action=register
obviously changing the ‘mysite.com’ to your sites name
or create pages within your site and use the bbpress shortcodes
and then reference the page urleg create a page called ‘password’ and have it’s permalink as say ‘password’ and put
[bbp-login]
as the page content (you can precede this with any text you like, or have text after) egLost you password?- enter your email and we'll send a new one straight to you [bbp-login]
Then in the widget you would put
http://mysite.com/password/
you can do the same with [bbp-register] to display the register screen.
In reply to: “Forums” Results in blank page.can you check what versions of php each is using.
If you can’t immediately tell from your host details, this plugin will add it to the dashboard
In reply to: BBpress in twenty sixteen themeok, you’ll need to do some elimination
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: “Forums” Results in blank page.so you dev site is working finem, but the live site isn’t – correct?
Is the dev site a local installation?
In reply to: “Forums” Results in blank page.Try
dashboard>settings>permalinks
and just click save
this resets the permalinks, and sometimes gets sites goingIn reply to: Blank PagesAlso, when clicking on a forum from the forum index on the frontend, I get a blank page:
http://hatchnutrition.com/forum/that works fine – do you still have a problem?
In reply to: Logged out users subscribe to replies?I am sure you know, there are plugins that do that for the WordPress comments, so that even commenters who do not have a WordPress account on that site can check a box to receive email alerts of new comments.
wasn’t aware of that.
I don’t know of any plugin that does this for bbpress.
presume you are fixed as it looks left aligned – if not please give us a link to a specific example and state which element