Search Results for '\"wordpress\"'
-
Search Results
-
Hi all
I have been looking for the solution, but only found small hints here and there with no real complete guide on how to do it, so i have made a small one that should explain it in a simple way.
(THIS IS BASED ON WP 2.8.6 AND BBPRESS 1.0.2 WITH WP INTEGRATION VIA BBPRESS ADMIN.) If you have older versions installed, i recommend to read this exelent post by ck:
http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101step one: Add this string to your bb-config file in your bbpress folder:
require_once(‘/home/ your username/public_html/your wordpress folder/wp-blog-header.php’);
NOTE: The path might be different from host to host, but this is what my path looks like……you get the idea ;O)
step two:
Go to your WP template folder, and open up the file: header.php from your chosen template.
Copy over the content you want after the <BODY> tag, and copy it into your BBpress header.php template file after the <BODY> tag.
What i did here was to take a backup of the original BBpress header.php file, so i could paste in the things i needed from this file to the new one i just
created with the WP header content.
step 3 your css files
My approach to this was of course to take backup of both WP css and BB css files first. I used the BBpress css file as my main css file. I then took the css strings from the WP css file i needed, and simply copied them into my BBpress css file. In my case i needed the header and navigation strings.
NOTE: You might also need to copy the WP css body string, if your BB css Body string has different font measures. Some use EM´s and some use %. This will affect how your fonts react.
And that´s it folks. I hope you understand this, and if other people has something to add to this plz. do so we all can learn.
Mike
It has been a while, since the alpha/RC-1 times, that we had a list of working plugins, so I thought to create a list of working plugins with the current version 1.0.2, that we can all add to, in order to help other users. Many plugins are listed as up to v. 9.0, but they do work with the latest release (that should be updated, so it doesn’t look like 1.0.2 has very little options…).
Here is my list at the moment, planning on testing more.
1 – Ajaxed Quote
2 – Allow Images
3 – BB Anonymous Posting
4 – bbPress Recent Replies
5 – bbPress signatures
6 – bbPress Smilies
7 – bbSocialize
8 – bb Topic Views
9 – BBVideo
10 – Check For Updates
11 – Comment Quicktags for bbPress
12 – Human Test for bbPress
13 – Instant Password
14 – Leaderboard
15 – Live Comment Preview
16 – Members Online
17 – New User Notification Email
18 – no duplicate email addresses
19 – OpenID for bbPress
20 – Post Edit Look Behind
21 – Post Meta for bbPress
22 – Post Notification
23 – Reputation (Karma) for bbPress
24 – Subscribe to Topic
25 – Unread Posts
26 – WordPress Latest Post
27 – bbAvatars
28 – Bavatars
29 – bbPolls
30 – After the Deadline
Topic: atahualpa problems
Hello,
I have successfully integrated bbpress 1 and lastest wordpress but having trouble with the header and footer in the forum..
This is what I have done so far…
Copied and renamed kakumei to my-templates/newtheme/
Added <?php get_header(); ?> & <?php get_footer(); ?> to all the required php files.
I then added
define(‘WP_BB’, true);
if ( !defined(‘DB_NAME’) ) {
require_once( dirname(__FILE__) . ‘/../wp-config.php’);
}
define(‘WP_BB’, true);
if ( !defined(‘DB_NAME’) ) {
require_once( dirname(__FILE__) . ‘/../wp-blog-header.php’);
}
to the bb-config.php
& then added
<link rel=”stylesheet” href=”/discussions/my-templates/newtheme/style.css” type=”text/css” media=”screen” />
<link rel=”stylesheet” href=”/discussions/my-templates/newtheme/style-rtl.css” type=”text/css” media=”screen” />
to the WP theme header.php
The forum shows up in the with what looks like the header and footer of my WP theme…
I have a problem with all the css not working… Does adding the url for the css in the WP theme header work or do i need to do this another way?
Thanks
Topic: Help with integration
I’m hoping someone can help me with integration of my wp 2.8 and bbpress 1.1. So far I have:
1) Set everything correctly in bbpress admin for integration
2) Created a “secret key” in wp-config, and copied it to the bbpress config file
3) Installed the bbPress Integration plugin in wordpress
4) Defined the cookie path in wp and bbpress
5) set the AUTH_KEY in wp, and copied that to bbpress
6) cleared cookies and cache numerous times
and still, logging into one does not log me in to another. I see some mention of a SALT key in these forums, is that what I need?
Any help would be appreciated.