Forum Replies Created
-
In reply to: Unwanted ads in bbPress Themes
Okay this topic is resolved because it has a solution but not resolve because that site is still up.
this is the website btw. I thought I put it in the original post: http://www.bbpressthemes.net
In reply to: No plugins are showing in my listmake a my-plugins folder in the same level as bb-plugins
The alternative is pixepoint, i don’t know if you want to test that.
I use deep integration for WP themes that have their own option. When you change something in the option bbPress follows.
In reply to: WordPress integration problemsIf you don’t enter a prefix, bbPress assumes you don’t want the integration.
In reply to: Template URIuse bb_active_theme_uri() instead
In reply to: Latest Discussion Pageawesome, works perfectly with the plugin.
Best Answer: mr_pelle https://bbpress.org/forums/topic/latest-discussion-page#post-69723
In reply to: Latest Discussion PageI have 1.1-alpha installed and no go!
so sad.
In reply to: How to disable Favorites TAB ?all < are LESS THAN SIGNS (the keyboard key next to M) all the > are GREATER THAN SIGNS (the keyboard key next to ?)
In reply to: How to disable Favorites TAB ?you can start with:
add to your style.css
#favorite-toggle{display:none;}
The three tabs will still show up but the option to add to favorites option won’t show up on the posts.
open profile.php
line #25 that starts with
<?php if (bb_current_user_can( 'edit_favorites_of', $user->ID )) : ?>
add BEFORE
<!--
line #27
<?php endif; ?>
add AFTER
-->
I don’t know how to edit the three tabs.. sorry
In reply to: *seamless* wordpress integrationLearn to use an add-on feature on FireFox browser called FireBug. That can help you with what css line you need to edit (to make the grey background), etc, etc.
In reply to: When bbpress 1.0.3?@kevinjohngallagher you will never know the name of the architect! buhhaha (I don’t know either) They might be reading this.
So I have 1.1-alpha
I briefly had 1.03Trunk.
My question is will 1.1 have all 1.03 fixes.
for example bb-config-sample.php of 1.1 is the same as 1.02 but trunk is different (https://trac.bbpress.org/ticket/1282)
In reply to: make my sidebar look like bbpress.org forum sidebarIf you want it like this site…. An easy way to do it is…
the front page of the default theme is broken into two parts.
If you open front-page.php serach for these div codes, everything on the left is between “id=”hottags” role=”main””
Everything on the right is between “div id=”discussions”” JUst move what you want in them.
All you have to do is adjust the width/margin of both css styles.
style.css (line 285) #front-page #hottags for the left side change the width
style.css (line 293) #front-page #discussions change margin left to be 20px more than what you pick for the left column width and the width to fit.
(Why doesn’t this site have a demo on bbpress! I hate changing my theme back to default to answer questions!)
In reply to: *seamless* wordpress integrationThe integration shouldn’t affect WordPress.
In reply to: Questions About Two Pluginsall < are less than signs and all > are greater than signs
In reply to: Questions About Two Plugins<?php $topic = $GLOBALS['topic'] = current( get_latest_topics( array( 'number' => 1, 'forum' => get_forum_id() ) ) ); ?>
<a href="<?php forum_last_post_link();?>"><?php topic_title(); ?></a>works for me
In reply to: When bbpress 1.0.3?You will probably need to grow a third to get that information.
I downloaded trunk, anything I should know? other than I need to change my bb-config.php file not to have a closing thing…
In reply to: BBPress Forum PW reset not workinghttps://bbpress.org/forums/profile/1BadApple/edit
Just by going to their profile you can click on EDIT PROFILE and at the bottom there is a place to change your password.
That will clear the look of it but because of this issue you might want to check if it’s still works.
in BaseStationForum/style.css
add the following.
.mc_error_msg {
color:red;
}
.mc_success_msg {
color:green;
}
.mc_merge_var {
margin:0;
padding:0;
}
#mc_signup_form {
padding:5px;
width:99%;
}
.mc_custom_border_hdr {
}
#mc_signup_form {
float:left;
padding-top:0.5em;
}
#mc_signup_form .mc_var_label, #mc_signup_form .mc_input {
clear:both;
float:left;
margin-left:0.5em;
margin-top:0.1em;
}
#mc_signup_form legend {
margin:0;
padding:0.5em;
}
#mc-indicates-required {
clear:both;
float:left;
}
#mc_display_rewards {
clear:both;
}
#mc_interests_header {
clear:both;
font-weight:bold;
margin-left:0.5em;
padding-top:0.2em;
}
div.mc_interest {
clear:both;
margin-left:0.5em;
}
input.mc_interest {
clear:left;
float:left;
margin-left:0.5em;
margin-top:0.2em;
}
label.mc_interest_label {
clear:right;
float:left;
margin-left:0.3em;
margin-top:0.2em;
}
.mc_signup_submit {
clear:both;
padding:0.2em;
text-align:center;
width:100%;
}
In reply to: When bbpress 1.0.3?@chrishajer thank you!
sooo “When bbpress 1.0.3?”
In reply to: Change size of posting boxAn easy way to do it is Find and Replace 724px to what size you need on style.css
which are these lines:
.postform textarea {
width: 724px;
max-width: 724px;
.postform #tags-input {
width: 724px;
In reply to: Post Count (5 posts +1 more)@chrishajer sorry about that. I’ll write it out just in case someone else sees it
The issue:
this page as an example
Info
* 3 posts
* 3 voices
* Started 19 hours ago by gerikg
* Latest reply from _ck_
Where it says “3 posts” it was appearing “3 posts + 1 more” because I had 4 post and I deleted one. + 1 more will be a link to the deleted post.
@_ck_ yes that would explain it, thank you. I didn’t realize it just freaked me out because I downgraded from WPMU and I had to do some DB editting.
Go to that website fill out the Get involved form, http://bbxf.org/get-involved/ and see if you get a response.
In reply to: Last Post on ForumsThis topic is resolved, I used Forum Last Poster plugin by _ck_ (https://bbpress.org/plugins/topic/forum-last-poster/)
For last topic with link I used
<a href="<?php forum_last_post_link();?>"><?php topic_title(); ?></a>
Why can I paste code anymore?