Forum Replies Created
-
In reply to: I need function "if is home" to bbPress
You can either put the code in
front-page.php
as Kevin told or useif ( bb_is_front() ) { /* Code Here */ }
In reply to: Fatal error: Call to undefined functionHave you deep integrated?
In reply to: bbPress 1.1 – Maybe Soon!We can add the same code (the one I posted in the patch) in bbPress, but BackPress would be a better place for that. Anyone should contact westi as he can fix it.
In reply to: How can I use the same templet for mu and bbPress?Easy way is deep integration but is highly not recommended as it adds unnecessary extra load on the server. Other way is to code a template yourself which looks similar to your WP theme or hire someone to do that.
In reply to: Whoa! (bbPress.org 2.0 is live)And seriously, what is up with these >>> tags? It’s about to span into it’s 3rd month of not working. We can only help so much…
That is a BackPress bug, I think you know about it.. – http://backpress.automattic.com/ticket/25
Here it is – #1261
This has been fixed in the trunk version.
In reply to: bbPress 1.1 – Maybe Soon!More updates
bbPress 1.0.3 milestone now only has 1 ticket left, which depends on this BackPress ticket), while 1.1 milestone has 2 tickets left (both need patches). There’s also another BackPress ticket that needs to be fixed (has patch).
Also, there would be no tag administration in 1.1.
And just for a note, matt also committed a patch about 11 hours back – [2450]
10 hours back, there was a commit by matt – [2450]
In reply to: Fatal error: Call to undefined functionDownload a fresh copy of WordPress and upload it via FTP.
In reply to: ' when i use apostropheLooking at the source of your blog, you’re still running WP 2.9.2.
In reply to: Anonymous UsersThere is already a bug report on that and we’ll fix that soon.
In reply to: Unable to RegisterYou should check this post – https://bbpress.org/forums/topic/wp-30-beta-2-integrated-user-registration#post-70058
In reply to: "The plugin does not have a valid header."bbPress is not a plugin of WordPress, you have to install it separately as you had installed WordPress.
In reply to: ' when i use apostropheYou’re running WP 3.0 right?
In reply to: WP.org improvements and bbPress as a `plugin`You can also check the bbPress WordPress plugin log here – https://plugins.trac.wordpress.org/log/bbpress
In reply to: bbPress 1.1 – Maybe Soon!Lol.. thanks
In reply to: bbPress + AjaxAs I recall it used to a really long time ago, but had the feature taken out or turned off.
That was actually when you yourself add a post and it would get added via AJAX.
If this feature is not currently supported, do you think it can be easily done?
Yup, P2 theme for WordPress also checks for blog/comments updates via AJAX so it should be easy for bbPress too.
In reply to: ' when i use apostropheI have posted a patch in that ticket, can you test it?
In reply to: ' when i use apostropheThere was a report of the same on Trac but I closed it as it wasn’t happening for me. Are you running the trunk version of bbPress or 1.0.2?
Here it is – #1194
Opened up the ticket again
In reply to: bb_get_posts_rss_linkThey are used to generate the URL.
In reply to: All members 'inactive' after converting from MyBBHere’s the SQL:
UPDATE bb_usermeta SET meta_value = 'a:1:{s:6:"member";b:1;}' WHERE meta_value = 'a:1:{s:8:"inactive";b:1;}'
Change
bb_
if you have any other table prefix. Also change " to the correct one.In reply to: ' when i use apostropheDo you load WordPress’
wp-load.php
in bbPress?Because your server would be having the latest version of PHP.
In reply to: bb_get_posts_rss_linkIt is used for the
bb_get_uri
function (which generates the URL).