Forum Replies Created
-
In reply to: How to create members Area?
this is a support forum for bbpress which ruins under wordpress, so if you are not wordpress then your thread is irrelevant π
In reply to: Logged in as different usernope !
In reply to: All Replies to Topic went to SpamIt 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: Move forum information to the bottomIf you know how to use ftp, 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
Then on your pc create a text file called content-single-forum.php and put the following contents into it
<?php /** * Single Forum Content Part * * @package bbPress * @subpackage Theme */ ?> <div id="bbpress-forums"> <?php bbp_breadcrumb(); ?> <?php bbp_forum_subscription_link(); ?> <?php do_action( 'bbp_template_before_single_forum' ); ?> <?php if ( post_password_required() ) : ?> <?php bbp_get_template_part( 'form', 'protected' ); ?> <?php else : ?> <?php if ( bbp_has_forums() ) : ?> <?php bbp_get_template_part( 'loop', 'forums' ); ?> <?php endif; ?> <?php if ( !bbp_is_forum_category() && bbp_has_topics() ) : ?> <?php bbp_get_template_part( 'pagination', 'topics' ); ?> <?php bbp_get_template_part( 'loop', 'topics' ); ?> <?php bbp_get_template_part( 'pagination', 'topics' ); ?> <?php bbp_single_forum_description(); ?> <?php bbp_get_template_part( 'form', 'topic' ); ?> <?php elseif ( !bbp_is_forum_category() ) : ?> <?php bbp_get_template_part( 'feedback', 'no-topics' ); ?> <?php bbp_get_template_part( 'form', 'topic' ); ?> <?php endif; ?> <?php endif; ?> <?php do_action( 'bbp_template_after_single_forum' ); ?> </div>FTP this file to the directory you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/content-single-forum.php
bbpress will then use this file.
In reply to: Logged in as different userI cannot say – that would require access to your sites files, database and admin, and I suspect your users PC – and well beyond any free help.
all I can say is that wordpress is used on 74 million sites, and bbpress just uses wordpress logon, nothing more.
In reply to: Logged in as different userit is highly likely that it is user pc/browser/cookie/remember me issue.
In reply to: Replies Created & Subscribed Forumsnashraf was a spam post
So where is buddypress is the replies created template stored – give me the full path, and where in your theme are you putting it – again the path (you can use example.com if you want)
In reply to: Odd slow-querynot directly, but bbpress does call wordpress functions via wp_query, and suspect this is the result of one of those.
In reply to: How to create members Area?will depend on what exactly you want but this might be what you need
In reply to: Logged in as different userbut it isn’t
In reply to: Logged in as different userbbpress just uses wordpress login, so at best this is a wordpress issue, so suggest you log it there
In reply to: Logged in as different userthat’s not what the text you quoted says – she states that it is an old username.
Anyway this is a wordpress not bbpress issue, and is highly likely that it is user pc/browser/cookie/remember me issue.
Wordpress powers 10% of the internet, if this happened then it would be a major security issue for the whole of the internet π
In reply to: bbpress with Mailsterbbpress just uses wordpress registration, so the question is
Is there any way that we can automatically send a welcome email to the people that have registered using Mailster plugin?
and ask mailster π
In reply to: Logged in as different userit has my old username in the log in boxes
this is a setting/saving on her browser, nothing to do with the site.
In reply to: Logged in as different userlog in is a wordpress issue, bbpress just uses the wordpress login
when you say ‘being logged in as a different user.’ is this logging in as user ‘a’ and getting user ‘b’, or on entering the site being already logged in as user ‘b’.
In reply to: Horizontal at Bottom of Forumsyour theme is doing this, but I can’t say why.
In reply to: Main landing page is just a long string of textgreat – glad you are fixed
In reply to: Replies Created & Subscribed Forumssorry, I have been tied up elsewhere, I will try and return to this in the next few days, but family business is keeping me away
In reply to: New Topic Button ?sorry, best I can do – you could always crack the plugin open and work out where the code is that does this
In reply to: New Topic Button ?easiest way is using my plugin
once activated go to
dashboard>settings>bbp style pack>buttons
In reply to: Cannot Create New Forumok, the best I can suggest is that you create a test site where you can try a different theme to eliminate
In reply to: Replies Created & Subscribed Forumscan you post the entire template for me please, and tell me which template it is replacing
In reply to: Cannot Create New ForumI know you have done plugins in turn, but all at once ? – usual advice is
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: Replies Created & Subscribed Forumsok, quick debug of the function, so this won’t error (and will hopefully work!)
function rew_filter_for_user ($args) { //not sure if the next two lines are needed, so have commented out //global $current_user; //get_currentuserinfo(); $uid = bbp_get_current_user_id(); $args[βauthorβ] = $uid ; return $args ; }In reply to: Problem with bbp_is_forum_category functiongreat – glad you are fixed