Search Results for 'bbpress'
-
Search Results
-
Topic: Arabic / English Multisite
How to install bbpress on a multisite where one is in arabic RTL and the other is english ??
Hi there,
I’m working with a custom profile setup (consolidating the profiles from multiple plugins) and and wondering how I can redirect a bbpress user to this central profile when they try to access their forum profile. In other words, how do I make it so that someone who tries to visit:
http://www.example.com/forums/user/johnsmith
is redirected to:
http://www.example.com/profile
I saw a very old post in this forum that discussed this topic, and they suggested using the following method:
add_action('bb_init', 'profile_redirect'); function profile_redirect() { if (is_bb_profile() && $_GET['tab'] != 'edit' && $_GET['tab'] != 'favorites') { $user = bb_get_user($_GET['id']); if ($user) wp_redirect("http://www.example.com/member/" . $user->user_nicename); } }Since it’s so old, it doesn’t work anymore, and honestly, what I’d like to do is slightly different. I’d like to redirect a user away from the profile page (regardless of which section they’re on–whether it be favorites, subscriptions, or edit profile) as long as:
- They are logged in
- They are on their ownprofile page
How could I do that with the current version of WordPress?
Topic: Private
Hi
I am creating a Courses Site at this moment and for each Course i would like to create a Forum which is accessible to the Students of that particular Course only.
Is that possible to do with BBpress and how do i do that?
can i decide which user has access to which parts of the Forum?
FYI: I am using S2 Members to create the Membership site.
All the best and Thank You
Corrado IzzoI have an OLD Yabb board, that uses a flat file storage. I have given up importing it into bbpress, or anything else for that matter, in any automated way. Fortunately, the BB only has about 40 messages, so I was thinking of just importing them manually. Can I easily change the dates and authors of messages on bbpress?
Also, it’s important to me to keep these messages. Long story, but starting over isn’t an option.
Thanks!
Topic: Theme/Page Template
Hi, I have tried everything I can find on the forum and elsewhere to fix this with no luck. Probably an easy fix but I’m new to this.
This is great: http://ace2five.tv/forums/ and most other pages display ok but,
click through into a forum: http://ace2five.tv/forums/forum/bbpress-theme/ or here: http://ace2five.tv/forums/topic/topic-bbpress/ and it fails to display correctly.Theme is True Mag installed this week, bbPress installed latest version yesterday. Any help much appreciated.
Short question: How do I check if I’m on a page (or blog) from within ‘loop-single-reply.php’?
WP 3.8.3
bbpress 2.5.3
URL: 24baby.nl
Long question: I use bbpress for all my comments on articles and blogs: ‘Use a bbPress forum topic for comments on this post.’
On my website this generates a first post along the lines of (my website is in Dutch): ‘This topic belongs to article <LINK>. Share your thoughts!’
This text is visible both under the actual article and on the forums. While it’s a good way to explain the purpose of the thread on the forums, it’s confusing as the first reply on the actual article page. Because of that I don’t want to show this first reply on all my blog / page ‘pages’, but do want to show them on the forums.
It’s fairly easy to remove the first reply within ‘loop-replies.php’, but I don’t know how to test whether I’m on the forums or not? Is_page doesn’t work, is_bbpress always returns true.