Hard coded translations can NEVER be translated by a .mo/.po language file, since there’s no indication of it needing a change.
My bb-press root is in a map called “forum” and in that folder I have put the my-languages folder and inserted the sv_SV.mo i that folder. I have edited the bb-config.php only.
I think that I have gone trough these steps a thousend times.
Would i be possible that some code or something is blocking this thing out. I am using a copy of kakumei which I have edited to fit my design and there I have “manually” translated some of the english text that I found in the files. could that be a problem?
Try contacting her, or try changing something in the code so that the bots will be stopped once again.
Either way, spam will always be there.
@ dudd, wildkyo
You can throw the twentyten bbp plugin theme in your original theme folder (excluding files like functions.php, just add those to your existing one). Then make a page with a template (in wp-admin), one with the name Forum Index will show up and you have integrated the bbp theme with your normal theme. ^^
This does kinda clutter up your theme folder, but it works for me. Don’t have time atm to wait for more flexible options.
Not sure! Recheck your steps.
Make sure you have uploaded to the right place. Make sure it is there.
Add the file is to be added in bb-config.php and not bb-config-sample.php
We can generally make mistakes of uploading it somewhere and then trying to figure it out.
Hi Ashfame! Thank you for your response. However I have done exactly as in the description of the link you posted. I have made a folder in my bb_press root folder called my-languages and inserted the sv_SE.mo file on to that folder. In the bb-config file I have changed the code string to
define( ‘BB_LANG’, ‘sv_SE)’ );
Still english on my forum.
What´s up with that?
The news is in trac. There’s one ticket left in 1.1 and then it gets released. No sense in putting out a 1.0.4 to fix one bug that 1.1 will fix. Right now we’re in the middle of a WordPress, BuddyPress, bbPress trifecta release, so there’s three times as much testing to do to make sure nothing breaks.
If you can’t wait for a public release, download the trunk and do some testing.
The news is in trac. There’s one ticket left in 1.1 and then it gets released. No sense in putting out a 1.0.4 to fix one bug that 1.1 will fix. Right now we’re in the middle of a WordPress, BuddyPress, bbPress trifecta release, so there’s three times as much testing to do to make sure nothing breaks.
If you can’t wait for a public release, download the trunk and do some testing.
dudd, or you can wait to a future release where JJJ said will be more flexible to put the forum in our existing theme.
I’m waiting for!
I made a workaround. Not ideal and not performant, but it works for me…
function discover_topics() {
global $bbdb, $frequency, $priority, $bb, $topic;
$topic_query = "SELECT t.topic_id AS tid, t.forum_id as fid, p.post_time AS tim, t.topic_posts AS nposts FROM $bbdb->posts p, $bbdb->topics t WHERE p.topic_id = t.topic_id AND post_status = 0 GROUP BY t.topic_id ORDER BY p.post_time";
$matches = $bbdb->get_results($topic_query);
if ($matches) {
foreach($matches as $match) {
$url = get_topic_link($match->tid);
if ($match->fid!=5) {
$topic = bb_get_topic_from_uri( $url );
$url = str_replace( $bb->uri . ‘faq’, $bb->uri . get_forum( $topic->forum_id )->forum_slug, $url );
}
Note: set $match->fid!=5 the forum_id of the corresponding forum and replace 'faq' with the slug of the corresponding forum.
Hello I have the same problem with the sitemap plugins as OreilleMalade.
As far as I understand the code, the problem lies in the function:
function discover_topics() {
global $bbdb, $frequency, $priority;
$topic_query = "SELECT t.topic_id AS tid, p.post_time AS tim, t.topic_posts AS nposts FROM $bbdb->posts p, $bbdb->topics t WHERE p.topic_id = t.topic_id AND post_status = 0 GROUP BY t.topic_id ORDER BY p.post_time";
$matches = $bbdb->get_results($topic_query);
if ($matches) {
foreach($matches as $match) {
$url = get_topic_link($match->tid);
Here is the url generated every time like this:
domain/topic/topic-name
If we use nicerpermalinks than we have not the topic-directory in our url and the function get_topic_link gives us the url with the name of the first forum or a random forumname (didn´t figured it out yet).
domain/first_forum_name/topic-name
but we have different forum_names now. If I understand the code right, we have to use now get_topic_nicer_link instead of get_topic_link.
How to make it??
I understand that this theme isn't readily downloadable, but is it available for purchase? I wouldn't mind putting a bit of cash up to get it
@RegNatarajan
Have you tried this?
http://bbshowcase.org/themes/WPMimic.zip
I understand that this theme isn't readily downloadable, but is it available for purchase? I wouldn't mind putting a bit of cash up to get it
@RegNatarajan
Have you tried this?
http://bbshowcase.org/themes/WPMimic.zip
*i solved the issue with the forum not showing, I simply went through the install instruc. and undid some of the edits in the php file.
still wondering why I couldn’t get it to work, why it kept refreshing
*i solved the issue with the forum not showing, I simply went through the install instruc. and undid some of the edits in the php file.
still wondering why I couldn’t get it to work, why it kept refreshing
hi,
I don’t know what’s going on but the site is acting weird from time to time (seems bugged)
. Few days ago I couldn’t register and now it seems I can’t post comments in the plugin page.
Anyways, I just recently discovered bbpress and it immediately caught my attention.
I tried to install the following plugin http://bbpress.org/plugins/topic/facebook-graph-connect/ but I’m having some troubles with it. once I have followed the instructions I tried to test it by register via it, so I accepted the FB app req. and then when I got ‘re-directed’ to my site it just kept refreshing and wouldn’t stop. So I went back in to deactivate it however now my forum has ‘disappeared’. you can’t see any of the forums unless you login nor the search bar etc. just wondering if I could get some help. I know it’s in beta and all but if there is a fix let me know otherwise I’ll have to re install bbpress 
* reason to I’m posting this here is of course because I can’t post on the plugin page itself, as I explained above.. weird bug:P
Adam Kayce Says in this forum post:
Apostrophe and or quotation marks cause backslash to appear.
Never mind – I got it, thanks to an old post from two years ago.
The code has changed a bit, so here’s how I fixed it:
1) open up /bb-includes/functions.bb-template.php
2) replace line 1074 with:
return stripslashes(apply_filters( ‘get_topic_title’, $topic->topic_title, $id ));
3) and line 1782:
return stripslashes(apply_filters( ‘get_post_text’, $bb_post->post_text, $bb_post->post_id ));
That did the trick for me.
{This worked for me,too. It worked on the front end and back end.}
AdamKayce says: Never mind – I got it, thanks to an old post from two years ago.
The code has changed a bit, so here’s how I fixed it:
1) open up /bb-includes/functions.bb-template.php
2) replace line 1074 with:
return stripslashes(apply_filters( ‘get_topic_title’, $topic->topic_title, $id ));
3) and line 1782:
return stripslashes(apply_filters( ‘get_post_text’, $bb_post->post_text, $bb_post->post_id ));
That did the trick for me.
{That worked for me too. It did the trick in the frontside and backoffice.}
I have a WP project with a well-established vBulletin forum which I would, in a perfect world, pull into bbPress/BuddyPress to tightly integrate with WP. I am not asking for a vBulletin importer for bbPress 1.2. I know that is a beast that is probably not worth slaying at the moment for Automattic.
With this frame of reference, I have a few questions re: bbPress 1.2 (the plugin). I have done some searching on these forums and have not found answers yet. If they exist, please point me to them.
- I assume 1.2 will cleanly upgrade from previous versions of bbPress. However, reading some of @JJJ’s posts, it looks like 1.2 may function more like a CPT plugin where everything is stored in the posts table. Is this the case? If so, will a clean migration from prior versions be possible?
- Assuming this clean upgrades are part of 1.2, would it be safe to say that following (and improving upon) some of the more cumbersome vBulletin -> bbPress migration paths (link below) would still work?
LINK: http://tinyurl.com/vb4-to-bbp
- Much has been made about how the bbPress used in BuddyPress is not really inline with the core bbPress code. Given it’s apparent design direction, is it safe to say that the 1.2 and the BuddyPress forums will effectively merge and become one code base, whether or not BuddyPress is active? If not, how will they differ?
- Are there any other glaring roadblocks to vBulletin migration that I am simply not seeing?
I am considering writing (or more likely funding the development of) a vBulletin importer script for bbPress 1.2. If I decide to go that route, I plan to give the importer back to the community. So, the goal of these questions is to help me gauge the feasibility and scope of such a project.
Thanks in advance for your feedback.
Doug
Sorry, I didn’t get back, I was MIA. Glad you got it resolved.
Sorry, I didn’t get back, I was MIA. Glad you got it resolved.
Such is life on the edge. 
I’m aware of the login issue and will fix in the next day or two.
Thanks for keeping up with the development though. It’s great to have eyes on it.
Thank you Zaerl! Now that problems is solved.
However the problem with the login field dissapearing when I visit the registration-page is still there. Anny plugin for that?
Thank you Zaerl! Now that problems is solved.
However the problem with the login field dissapearing when I visit the registration-page is still there. Anny plugin for that?