Forum Replies Created
-
In reply to: Login problem
Been trying to troubleshoot this by changing my theme back to kakumei and the same error appears. However when i try login in from another page, like topic.php, the problem dosen’t appear. Is there something wrong with my bb-config file?
Would really appreciate som help.
In reply to: Login problemBeen trying to troubleshoot this by changing my theme back to kakumei and the same error appears. However when i try login in from another page, like topic.php, the problem dosen’t appear. Is there something wrong with my bb-config file?
Would really appreciate som help.
Ah never mind. I did my own script with old fashion PHP/MySQL. Here is what I did if someone else are interested.
<?php
$query = (‘SELECT * FROM bb_posts ORDER BY post_id DESC LIMIT 5’);
$result = mysql_query($query) or die(mysql_error());
while($row = mysql_fetch_array($result))
{
echo $row;
$query2 = (‘SELECT * FROM bb_users WHERE ID=”‘ . $row . ‘”‘);
$result2 = mysql_query($query2) or die(mysql_error());
while($row2 = mysql_fetch_array($result2))
{
echo $row2;
}
}
?>
Just put it in your widget area and your are good to go.
Ah never mind. I did my own script with old fashion PHP/MySQL. Here is what I did if someone else are interested.
<?php
$query = (‘SELECT * FROM bb_posts ORDER BY post_id DESC LIMIT 5’);
$result = mysql_query($query) or die(mysql_error());
while($row = mysql_fetch_array($result))
{
echo $row;
$query2 = (‘SELECT * FROM bb_users WHERE ID=”‘ . $row . ‘”‘);
$result2 = mysql_query($query2) or die(mysql_error());
while($row2 = mysql_fetch_array($result2))
{
echo $row2;
}
}
?>
Just put it in your widget area and your are good to go.
Great work jaapmarcus!
Is there any way to control your plugin with template tags. I would like to be able to edit the way the topics are displayed.
Great work jaapmarcus!
Is there any way to control your plugin with template tags. I would like to be able to edit the way the topics are displayed.
In reply to: Language problems with with v.1.0.1Yes i have deep integration and I haven’t tried it without so that might be the reason why it works for most people.
In reply to: Language problems with with v.1.0.1Finally i found a solution!
Apparently your wordpress installation must have the same language as your BBpress for it to take action, so when i changed my wordpress language to sv_SE the language in BBpress changed as well.
In reply to: Language problems with with v.1.0.1Okej, I really cant figure this out and I really need to get this fixed, what do I do?
In reply to: Language problems with with v.1.0.1My 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?
In reply to: Cant include WP documentThanks for your reply.
I made my newsfeed in to a sidebar and called it from my bbpress and now i works great. Im not sure if thats the right way to do it but now it works.
Thanks!
In reply to: Cant include WP documentThanks for your reply.
I made my newsfeed in to a sidebar and called it from my bbpress and now i works great. Im not sure if thats the right way to do it but now it works.
Thanks!
In reply to: Language problems with with v.1.0.1Hi 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?
In reply to: Troubles with registrationThank 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?
In reply to: Troubles with registrationThank 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?
In reply to: Language problems with with v.1.0.1Hi guys!
I am having the same problem as well. Have any of you found a solution?
In reply to: LanguageI have this problem now. I am doing a remake of the kakumei-theme and a have just got a hold on a sv_SE.mo, swedish that is, file witch I have copied into bbpress/my-languages.
I have changed the bb-config.php string to
define( ‘BB_LANG’, ‘sv_SE)’ );
But nothing is happening, still english. What am i doing wrong? Does there need to be some bbpress template tag in the header that I accidentally deleted or something like that?
Really need some input!