Forum Replies Created
-
In reply to: Horizontal at Bottom of Forums
your 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
In reply to: Cannot Create New Forumcan you define ‘cannot create a new forum’
what precise steps do you take, and what exactly happens
In reply to: Frustrating Registration Issueregistration is a wordpress thing, rather than bbpress.
what is set is
dashboard>settings>general>email address
and does it match your email server?
1. You should be aware that many spam filters strip messages that do not come from the correct address. So if your site is mysite.com and your email address in wordpress settings>general is fred@gmail.comthen it is likely that messages will be dumped in transit. You need to set up email to come from your site eg fred@mysite.com, your hosting provider can help if needed.
2. Just bbpress?
Then you need to see if this is wordpress wide or just bbpress.
Try https://wordpress.org/plugins/check-email/In reply to: Replies Created & Subscribed Forumsuntested but try
<?php add_filter ('bbp_before_has_replies_parse_args' , 'rew_filter_for_user' ) ; ?> <?php bbp_get_template_part( 'pagination', 'replies' ); ?> <?php bbp_get_template_part( 'loop', 'replies' ); ?> <?php bbp_get_template_part( 'pagination', 'replies' ); ?>
and in your functions file put
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}
loop-replies from memory has the ‘no relies’ part in it, so you shouldn’t need the ‘if’ statement
I’m really pushed at the moment hence no time to test, but if it doesn’t work come back, and if I get time I’ll load it to my test site and debugIn reply to: Disable CommentsI’ve never had an issue with automatic spam, so I would not bother – you can always implement it later if needed.
In reply to: Change the number of forums per pageglad to have helped 🙂
In reply to: Disable Commentsdisallowing comments does not affect topics and replies – it is how I set my websites
In reply to: Change the number of forums per pagenow available in my style pack plugin
once activated go to
dashboard>settings>bbp style pack>Forum Display and set in item 11
In reply to: Change the number of forums per pageadd this to your functions file
add_filter ('bbp_before_has_forums_parse_args', 'rew_number_of_forums') ; function rew_number_of_forums ($args) { $args['posts_per_page'] = 50 ; return $args ; }
I’ll add it to my style pack plugin shortly if you don’t know how to do that
In reply to: Forum single don’t workthat is a buddypress error, report it to their support site
In reply to: 404 Erros accesgreat – glad you are fixed
In reply to: 404 Erros accesIt 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: Import from multiple tablescontact me via my website
I tried enabling the “Alternate Forum template 1” in bbp style plugin.. but didn’t work
.That is possibly because your theme is overriding my templates.
Have you been to
dashboard>settings>bbp style pack>Topic/Not Working?
In reply to: How to Hide Member Profile Photo/AvatarI’ve just added that capability to my style pack
once activated go to
dashboard>settings>bbp style pack>Topic/Rely Styling
and check item 16
should be there
1. 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