Forum Replies Created
-
In reply to: Forum Index Page Display Help
Thanks for posting back
To remove the indent and the left hand border,
put the following into the custom css tab of the plugin#bbpress-forums .bbp-forums-list { border-left: none; padding-left: 0px; }
If you still want the border, then just
#bbpress-forums .bbp-forums-list { padding-left: 0px; }
In reply to: 502 Error on all Replies and on Admin Replies Pagesuggest you go back to basics and try :
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.
In reply to: bbp-messagesI can only suggest that you try this on a non-wamp environment – bbpress can have issues with wamp.
In reply to: I can’t find the option to enable file uploadingno problem !
In reply to: forum display offbbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
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.
In reply to: I can’t find the option to enable file uploadingIn reply to: my forum does not show up anywhereIt is the shortcode, but I think that you probably need to pay someone to do this – different theme work in different ways and clearly this is not within your current skillset
In reply to: my forum does not show up anywhere@parker012 – your forums are here
In reply to: bbp-messagesI’d suggest you post on that plugin’s forum
In reply to: Upload Image@jaakko87 thanks for posting this – I haven’t tried either as I don’t use this – so great to get feedback from someone who is better informed 🙂
In reply to: Forum Index Page Display HelpRegarding the private portion I meant I didn’t want the private groups to display on my main forum index page.
I’m not seeing this, can you say where this is appearing
on the other aspect, I would need a better problem definition – what is clear to you isn’t to me – sorry but I am limited on time I can spend looking for differences.
In reply to: 502 Error on all Replies and on Admin Replies PageIf you have changed nothing, then I would suspect you host/server
see
https://www.theguardian.com/technology/askjack/2013/aug/01/502-bad-gateway-error
In reply to: Login/Logout Top Menu Onlyanswered here
In reply to: Limit what users can seewould need bespoke code.
You can get close by having forums per team and using
https://wordpress.org/support/plugin/bbp-private-groups
but without further code it wouldn’t restrict them to their own topics
In reply to: Upload Imageno idea why it is not in core, but this I think adds that functionality
In reply to: Original post is now blankok so something caused this – what have you changed, added, updated?
In reply to: All topics get wp-sticky class even if not stickybbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
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: bbpress full width on “topics” and “replys”part 8
In reply to: bbpress full width on “topics” and “replys”In reply to: Getting latest replyif you don’t have ftp access to this site, then creating a solution will be difficult.
I’d also have issues with a site where I can’t update plugins.
In reply to: Forum Index Page Display Helpok, so try
https://wordpress.org/plugins/bbp-style-pack/
and go to
dashboars>settings>bbp style pack>forum templates to get one that is closer to what you want
and use
https://wordpress.org/plugins/bbp-private-groups/
to have private groups
In reply to: how to make forum full width?In reply to: rearranging forumsgoto
Dashboard>forums> and edit each forum.
On the right hand side under forum attributes you will see ‘order’ and enter numbers (0,1,2,3) for the order you want.
In reply to: Login/Logout Top Menu Onlydepends what you mean by top menu, I suspect primary, in which case
add_filter( 'wp_nav_menu_items', 'rkk_add_auth_links', 10 , 2 ); function rkk_add_auth_links( $items, $args ) { if (is_user_logged_in() && $args->theme_location == 'primary') { $items .= '<li><a href="'. wp_logout_url() .'">Log Out</a></li>'; } elseif ( !is_user_logged_in() ) { $items .= '<li><a href="'. site_url('wp-login.php') .'">Log In</a></li>'; $items .= '<li><a href="'. site_url('wp-login.php?action=register') .'">Register</a></li>'; $items .= '<li><a href="'. site_url('wp-login.php?action=lostpassword') .'">Lost Password</a></li>'; } return $items; }
In reply to: URGENT: Topics/Replies not appearningall looks fine to me, so have taken out the link on the basis that this may be spam.
If you still have a problem, come back