Forum Replies Created
-
In reply to: user compatability with WP plugin Register Plus?
I think forcing all registrations through WordPress is the way to go:
https://bbpress.org/forums/topic/user-intregation-between-wordpress-038-bbpress-not-work#post-10428
That’s an old post, but it describes the process best.
In reply to: I want to “steal” the style of the search form…You know how sometimes you get along with software and other software you just never click with? I hit it off with Web Developer, but never got into Firebug. I know they do different things, and maybe Firebug is better for development/programming, but for CSS and XHTML/HTML Web Developer toolbar does just fine for me. I think I learned more from using that than reading about CSS.
In reply to: a few set-up questions1. When you are logged in as a moderator or above (admin or keymaster), at the bottom of the topic, you will see “[Stick topic (to front)]” – there are two links there. Stick topic just sticks it in that forum. To front sticks it to the front page.
2. You need a plugin for that.
Old:
https://bbpress.org/plugins/topic/allow-images/
Newer and different:
https://bbpress.org/plugins/topic/bb-attachments/
3. Did you activate them in the admin? Or, what version bbPress are you using? I’m not sure it was included in the earlier versions, so those early version required a plugin. It’s built in now (in the 1.0 alpha releases anyway.)
In reply to: I want to “steal” the style of the search form…> #header div.search input.submit {
> style stuff here;
> }
Well, the cascading part of Cascading Style Sheets means that higher level stuff pertains to lower level stuff, and so on, and so on.
So from the right, an input element, with a class of submit, but only if it’s in a div with a class of search and then only if it’s in an element with an id of header.
So, based on that, the markup in the php file should look something like this:
<div id="header">
<div class="search">
<input class="submit" foo="bar" blah="blarg">Does that make sense?
> I’ve never seen the “div” used like this, and I’m not sure what the “input.submit” is.
The div.search just ties the search class to the div element (man I hope I’m not mixing up my terminology here…) So, if you had another element on the page, maybe a <p> with a class of search, like so
<p class="search">
This div.search would not apply to this element, because the .search was tied to the div element. Same exact thing applies to the input.submit: only an input element with a class of submit will be affected by that specific CSS.
> Also, it’s not clear to me how the “return” button code comes last in the
> php file, but the button displays above/before the login stuff.
I’m afraid I don’t know enough about it to figure that one out. Sometimes, when it works, it’s best not to question why
One thing that helps immensely with the CSS, for me anyway, is to use Firefox with the Web Developer add-on from Chris Pederick. You can hover over an element on the page and display the CSS classes and ids that apply to it, then click and see the actual CSS. You can also make changes to the CSS in the browser and see them immediately, then once you’ve sorted them out, just paste those local changes into the CSS for your template.
http://www.mozilla.com/en-US/firefox/
https://addons.mozilla.org/en-US/firefox/addon/60
Also, be sure to validate the XHTML and CSS both, to ensure the things you’ve done are in order:
http://jigsaw.w3.org/css-validator/
Those two tools are linked from the Web Developer Toolbar.
You will find with CSS there are a lot of invalid things in the stylesheet that don’t hurt anything: they make things look better in some browsers, but don’t do anything and don’t harm anything in other browsers. When adding things to your templates, I would at least validate the XHTML.
HTH.
In reply to: I want to “steal” the style of the search form…Looks like you have it. The buttons look the same to me( in Firefox 3.0.5 on Windows XP ). Are you unhappy with it at this point?
In reply to: I want to “steal” the style of the search form…I think you’d be better off just copying all the styles, and creating a new style called .return or whatever you want. Right now, it’s
#header div.search
which applied only to div.search in the header. I think I would just copy the styles you like, paste them at the end of your stylesheet, then rename them to whatever class you want to use for your button.Do you have access to .htaccess on an Apache server? You could just put this in your .htaccess file:
Redirect 301 /forums/index.php http://www.example.com/forums/forum-1/
Without knowing your two URLs, it’s hard to guess, but it can be done fairly easily like this.
In reply to: Another wp-bb-press integration snafuYes, the 1.0 branch will have integration with WordPress 2.7+
There have been quite a few 1.o alpha releases in the past few months, but they keep changing fast and wouldn’t be suitable for a live site.
In reply to: Hot Topics – Can they be hidden or removed?Where do you see “Hot Topics”? I see Hot Tags and Latest Discussions. Which one do you want to hide?
Yes, it’s possible. You need to find the section in your template that displays them, then just remove that section. For Latest Discussions, it’s in the template file front-page.php. Removing that whole section won’t hurt anything.
If you remove Hot Tags, you will have a big white space over there. After removing that from the template file, you might want to adjust the CSS to make the other part of the page wider so it uses the space where the tags used to be.
Basically, it’s all done in your template files. If you’re using the stock template, you should make a copy of that, then make your modifications there.
https://bbpress.org/documentation/themes/
https://bbpress.org/forums/topic/what-did-i-do-now-login-form#post-13935
https://bbpress.org/forums/topic/template-for-post-form-label#post-11385
https://bbpress.org/forums/topic/a-little-rant-about-bbpress-followed-by-some-questions#post-16722
In reply to: Step 4: Installation failed!What version of bbPress did you try to install?
I’ve seen it before but I’ve figured out why it happens.
http://www.google.com/search?q=site%3Abbpress.org%2Fforums+%22Key+master+could+not+be+created!%22
https://bbpress.org/forums/topic/bbpress-10-alpha-4-released/page/3
This was related to PHP4:
https://bbpress.org/forums/topic/basic-integration-screencast#post-22363
In reply to: Another wp-bb-press integration snafuThe bbPress 0.9* series is designed for integration with WordPress up to 2.5.1.
In reply to: New registered user should default as BozoHow about the “Approve User Registration” plugin:
https://bbpress.org/plugins/topic/approve-user-registration/
In reply to: How to show tags only to logged in users@bamosk – I edited the original to include the <?php. Sorry about that.
In reply to: How to show tags only to logged in usersYou could use the
bb_is_user_logged_in()
function like this:<?php if ( bb_is_user_logged_in() ) { ?>
<div id="hottags">
<h2><?php _e('Hot Tags'); ?></h2>
<p class="frontpageheatmap"><?php bb_tag_heat_map(); ?>
</div>
<?php } ?>You were very close with your guess as to the function name.
In reply to: Forum not visible but installed successfully.Glad you got it.
Did you resolve it? It’s in your WordPress theme CSS.
In reply to: Forum not visible but installed successfully.I think if it were me, I would compare the files on the server with a clean archive to see if there are any differences. Or, you could just re-upload and overwrite everything.
It’s almost like the files aren’t being included, so the files you’re trying to display don’t know those functions exist.
You mean the “Community” section on your WordPress site?
You need to change your .discussions2 style in http://www.audioscribbler.co.uk/wp-content/themes/revolution_magazine-40/style.css:
.discussions2 {
font-weight: none;
}
There’s no such font-weight. You want:
font-weight: normal;
It pays to validate your CSS:
You’ve made the same error in other places as well.
Also, this has nothing to do with bbPress really, it’s more of a Revolution Theme or WordPress question.
In reply to: Help-plugins.You are going to need to find someone locally who can log in as a keymaster and help you troubleshoot these things. We might be at the limit of what can be done long-distance. It’s nothing obvious (like not activating the plugin) that I’ve ever heard of before.
In reply to: Forums started 39 years ago?Please post the version of bbPress you’re using. I haven’t heard of this issue in a long time.
In reply to: Help-plugins.Looks like your website is using WordPress 2.7. Did you integrate the two?
I registered but I haven’t gotten a password email, and there was no password displayed on screen. What was supposed to happen?
In reply to: Help-plugins.Please post the URL to your forum so people might register and try to use the system and see what happens. Also, what version of bbPress did you install, and is it integrated with WordPress? If it’s integrated, what version of WordPress did you install?
Thanks.
In reply to: Upgrade advice needed.Also, if you do attempt to upgrade either bbPress or WordPress, be sure to make a backup (database and filesystem.)
In reply to: Upgrade advice needed.In general I try to keep up with WordPress releases as well. The upgrade from 2.5.1 to 2.6 included these bug fixes:
https://trac.wordpress.org/query?status=closed&milestone=2.6
In 2.5.1 the AUTH keys thing was really sorted out, so they changed that in 2.6 and that’s the main reason 2.6 is not compatible with the 0.9.* branch of bbPress.
If you don’t require integrated logins between the forum and the blog, then you don’t have to upgrade your bbPress to use the latest WordPress. If you do need integrated logins, then you probably need to wait for the 1.0 branch of bbPress to upgrade WordPress to the latest.
In reply to: DE language file for Version 11. What happens? Do you receive an error?
2. Where did you read about 64 bit systems and this problem?