Search Results for '+.+default+.+'
-
Search Results
-
I’ve switched between about 5 different themes, trying to install bbpress with each one. Each time, the result is the same. I get a message saying that bbpress was installed, but when I try to go back to the WordPress dashboard, I just get a completely white page. I can’t even navigate back to delete bbpress, so I have to do it manually through FTP.
Right now I am using the Genesis Framework theme, but the same problem has happened with the default themes (Twenty Twelve, Twenty Thirteen, etc.)
Any ideas what it might be?
My website is http://www.poorpilots.com/
I am using the latest version of WordPress.
Hello All,
I have a buddypress & bbpress integrated site. I am using buddypress groups inside which the bbpress forums exists. There are about 4 groups with 30 members in each group and I have used a “invert subscribe” code (in my functions file), which I came across on one of the threads here. It by default makes the members of the group to be subscribed to the forum and receive email alerts for every thread/topic created.
But now after I installed the Postman email plugin, I noticed that the email notification meant for the members of the group are being sent out to the members of all the group and all the 120+ users on the site. How can I avoid this and see to it that the emails are being sent out only to the particular group members.
Here is the invert subscribe code that I am using:
add_filter( 'bbp_get_user_subscribe_link', 'invert_get_user_subscribe_link', 10, 4 ); //invert forum subscription add_filter( 'bbp_is_user_subscribed_to_forum', 'invert_is_user_subscribed_to_forum', 10, 4 ); //invert forum subscription add_filter( 'bbp_get_forum_subscribers', 'invert_get_forum_subscribers' ); //invert forum subscription add_filter( 'bbp_is_user_subscribed', 'invert_is_user_subscribed', 10, 4 ); //invert forum subscription function invert_is_user_subscribed($retval, $user_id, $object_id, $subscribed_ids) { if (get_post_type( $object_id ) == bbp_get_forum_post_type()) return !$retval; else return $retval; } function strContains($needle, $haystack) { if (strpos($haystack, $needle) !== false) { return true; } else { return false; } } function invert_get_user_subscribe_link ($html, $r, $user_id, $topic_id) { if (strContains( "bbp_unsubscribe", $html )) { $html = str_replace("bbp_unsubscribe", "bbp_subscribe", $html); } else { $html = str_replace("bbp_subscribe", "bbp_unsubscribe", $html); } return $html; } function invert_get_forum_subscribers( $users ) { $args = array('fields' => 'id'); $all_users = get_users($args); $send_to_users = array_diff($all_users, $users); return $send_to_users; } function invert_is_user_subscribed_to_forum( $retval, $user_id, $forum_id, $subscribed_ids ) { return !$retval; } add_action('bbp_theme_after_topic_form_subscriptions', 'subscribed_by_default'); //default subscribe add_action('bbp_theme_after_reply_form_subscription', 'subscribed_by_default'); //default subscribe function subscribed_by_default() { echo '<script type="text/javascript">jQuery("#bbp_topic_subscription").prop("checked","checked");</script>'; } ?>Thanks!
Topic: style my forum like yours
How do I get my forum to look like yours:
default isn’t clear where writing box is, has extra stuff at top like navigation and ‘this forum contains’, has topic type, etc.Thanks,
SamTopic: Few questions about BBPress
I currently have a vbulletin, and used to have vBSEO for thread title to show up in the url. I’ve since lost this.. if I convert to BBpress, can I somehow get the thread titles in the url for seo purposes?
Also, if I install bbpress, will it look like the one on this site by default, with the different forum topics on the left? Thanks.
Currently the default setting is the title of the bbpress forums to be underlined. How can I remove the underline text decoration?
Topic: Alphabetic Pagination
By default in topics([bbp-single-view id="asc"] will give) pagination as
1 2 3 4…..n
Can anyone let me know how to make it alphabetical pagination as
A B C D ….Z
Thanks in advance
WordPress Version: 4.3.1
Theme: Omega
bbPress Version: 2.5.8Issue: I installed the bbPress plug-in. Created a Forum called Forum, and created one Topic so I can test. All bbPress settings are left as default.
I created a Page called Forums and added this page to my site navigation.
My issues are 3 fold.
1) When I click on “Forum” in the site navigation to access the page I created I do not see any forum imbedded on this page, all I see is are the words “Archives” then the title “Forums” in the main body of text.
2) If I click on the title Forums this does direct me to the bbPress Forum I created – How do I integrate the Forum directly onto the “Forums” custom page I created?
3) I notice the Forum URL is <sitename>/forums/forum/forum/ is there a way to remove 2 of these levels so the URL is simply <sitename>/forumsI hope this makes sense and you are able to help.
Kind regards,
Tom.