Forum Replies Created
-
In reply to: Admin rights
nope… anything else?
In reply to: Admin rightsI’ll try thanks
In reply to: bbpress forum on wordpress pageIn reply to: Profile not updating.thanks.
In reply to: Profile not updating.anyone?
In reply to: Request: Plug-in Updatethat plug in doesn’t pull the local data to compare to. It’s a nifty tool to see all the plugins listed on your own site.
In reply to: bb-config & wp-configso sad.
In reply to: bb-config & wp-configChris you’re right. In BBpress I can use all the WP functions (ex. sidebar) but I can’t use any BBpress function (ex. Simple Online list code) in WordPress.
<?php login_form(); ?> <—BBpress code in wordpress will not work.
Thanks sambauers but I want the opposite/reverse. I want BBPress to load in full when people are in wordpress.
My theory is if this work I can put BBPress code in the WPsidebar .
require_once(‘path/to/wp-blog-header.php’); <– to put in BB-config
require_once(‘path/to/????????????.php’); <– to put in WP-config
In reply to: bb-config & wp-configso bb-config.php is relatively the same as wp-blog-header.php?
What do I change
$bb->WP_BB = true;
to?
In reply to: Make BBPress a Page in WordPress???Oh forgot. In the header I put just
<li class="page_item"><a href="/forum/">Forum</a></li>
after the page tag. It’s either going to be in front of all your pages or behind.
In reply to: Make BBPress a Page in WordPress???How I did it… Please back up everything before starting.
You need to find a theme close to your WP to make it easier.
1. BBPress side,I renamed the style.css to styleold.css
2. Copied over the WPress style.css over to BBpress
3. Open both files at the same time. You want to copy over some of the codes from styleold.css to style.css. You might need to play with it. Do not copy “body”.
4. Open both header.php. On the BBpress header copy over from WP header everything after <body> tag. Replacing whatever is there.
5. Open both footer.php. This one is a little tricky.
You can just copy over the whole thing and make sure you have <?php do_action(‘bb_foot’, ”); ?> in the file. You will lose the designers info though OR You need to see on WP side if there is any closing tags. bring that over and delete any closing tags on the BBPress side.
6. Sidebars: depending where the <?php get_sidebar(); ?> tag. For example my <?php get_sidebar(); ?> tag is IN the footer.php Others the <?php get_sidebar(); ?> is in the other php files right before the get_footer tag or after get header tag.
that’s it.
make sure in your bb-config.php
there is
$bb->WP_BB = true;
if (file_exists(‘../wp-blog-header.php’))
require_once(‘../wp-blog-header.php’);
else
if (file_exists(‘../../wp-blog-header.php’))
require_once(‘../../wp-blog-header.php’);
after <?php tag.
Goodluck.
In reply to: Make BBPress a Page in WordPress???kiaspeed2.com like that?
In reply to: Request: Plug-in UpdateI hope that made sense, or people do not know what I’m asking?
In reply to: Reply Bugmaybe it’s bb-attachment plugin??
line 97
// insane bbPress workaround – adds multipart enctype to the new post form via uri patch
function bb_attachments_enctype() {add_filter( ‘bb_get_option_uri’,’bb_attachments_uri’,999);}
function bb_attachments_uri($uri) {remove_filter( ‘bb_get_option_uri’,’bb_attachments_uri’,999);
return $uri. ‘bb-post.php” enctype=”multipart/form-data” hack=”‘;}
let me contact the maker.
In reply to: Reply BugI’m going to check I think it’s a plug-in that did that.
In reply to: Template tag for calling the template directoryThis is a guess
try
BB_CORE_THEME_DIR for bb-template
BB_THEME_DIR for my-template
instead of template_uri
In reply to: Image UploadYea, I’m installing it now but it doesn’t show the image just the icon ( or not yet)
In reply to: Request: Separating Text & SignatureIt was me the last time. The problem with adding
<?php bb_head(); ?>
is that you get this when you visit the main site which is wordpress.
Fatal error: Call to undefined function: bb_head() in /homepages/0/d188981313/htdocs/kiaspeed2/wordpress/wp-content/themes/colorimetry/header.php on line 10
In reply to: No Search Forums Field in Kakumei?Welcome,
You helped me out too. I keep forgetting to add the search and because of you it’s there now.
In reply to: No Search Forums Field in Kakumei?I’m not a php person but I think it’s
<?php search_form(); ?>
For the main page you have to put it in frontpage.php in the Kakumei folder.
In reply to: Request: Separating Text & SignatureI’ve changed it to
border-top:10px solid #ffffff;
(I know 10 is extreme but it to see where it shows)
Nothing happens though. I have dark grey background.
I’m not using BBpress’ header.
In reply to: Image UploadI wrote them a message hopefully they will write back. It was an easy thing and images are hosted somewhere else.
In reply to: Image UploadThere was a program I liked from phpbb that maybe someone can make for bbpress.
It uploaded the image but showed the thumbnail in the post until you clicked on it.
http://www.phpbb.com/community/viewtopic.php?t=332435
It uses PostImage.org
In reply to: Image Uploadditto