Search Results for 'bbpress'
-
AuthorSearch Results
-
February 2, 2011 at 6:36 pm #37355
Ramiuz
ParticipantI´ve modifyed Kakumei to the limit of my knowledge. See yourself at http://www.michaeljackson.no/forum
However, if I want to turn it into something different, I think the CSS is kind of clumsy made.
If you change width on one thing – you have to change it on something like ten other definitions too. Width of content, background, padding, corners etc etc.
So is there some other simplistic theme out there thats coded in a more unified way? Let´s say I want to change the size of the forum, I only want to input this ONCE, and have everything else fall in place automatically.
I know this is possible with CSS, by using percentage in sizes, instead of static pixel definitions.
Where can I find more BBPress themes anyway?
February 2, 2011 at 5:48 pm #94904In reply to: bbPress 2.0 – Updates
tyskkvinna
MemberWonderful, thank you for the clarification!
February 2, 2011 at 4:56 pm #94903In reply to: bbPress 2.0 – Updates
Erlend
Participant@tyskkvinna the two projects are going to co-exist happily
JJJ is the lead developer of bbPress and in the core development team of BuddyPress. The BuddyPress bundled forum as it stands will eventually be replaced by the bbPress plugin, supported by a migration script of course.More information in these threads:
February 2, 2011 at 3:07 pm #94902In reply to: bbPress 2.0 – Updates
tyskkvinna
MemberI’m sorry for just barging into the conversation mid-way but is there going to be BuddyPress progress with this too? Or was that just an unrelated project?
February 2, 2011 at 2:52 pm #98989jaapmarcus
MemberJust commited a new version to the SVN of wordpress plugin.
Change log:
+ Added Support to show date or freshness.
+ Added Possible to change template
+ Added Possible to change widget title instead using translate function
– Fixed a small bug in topics fetched from database when fetching with the WP database connection
– Fixed bug that will show only non deleted topics.
February 2, 2011 at 2:52 pm #104089jaapmarcus
MemberJust commited a new version to the SVN of wordpress plugin.
Change log:
+ Added Support to show date or freshness.
+ Added Possible to change template
+ Added Possible to change widget title instead using translate function
– Fixed a small bug in topics fetched from database when fetching with the WP database connection
– Fixed bug that will show only non deleted topics.
February 2, 2011 at 2:30 pm #98988lespionage
MemberAh 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.
February 2, 2011 at 2:30 pm #104088lespionage
MemberAh 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.
February 2, 2011 at 2:04 pm #94901In reply to: bbPress 2.0 – Updates
wildkyo
MemberI’m waiting for an alpha release in order to update automatically, It will be awesome!
Good job guys!Is a problem of the javascript I think. We’ve to wait to a more stable release…
February 2, 2011 at 1:45 pm #99152In reply to: Not allowed to read posts without being logged in?
intimez
ParticipantGive this a try
February 2, 2011 at 1:45 pm #104252In reply to: Not allowed to read posts without being logged in?
intimez
ParticipantGive this a try
February 2, 2011 at 8:50 am #98987lespionage
MemberGreat 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.
February 2, 2011 at 8:50 am #104087lespionage
MemberGreat 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.
February 2, 2011 at 5:17 am #98846In reply to: Login WP not logging in BBpress
Raam Dev
MemberI had the exact same problem and I tired everything that was suggested, including triple-checking that all my keys matched, the cookie path was set, and the bbPress Integration plugin was installed in WordPress. I still couldn’t get integration working.
Here’s what I did to fix it: I deleted bbPress, installed a new copy, and during installation entered the same database information as I used for WordPress (same database, same username/password, all of which are available in wp-config.php). I also filled in the various salts and keys as required.
That allowed full user integration on both a database and cookie level and now everything works perfectly. Single sign-on, one-time registration, etc.
Hope this helps someone!
February 2, 2011 at 5:17 am #103946In reply to: Login WP not logging in BBpress
Raam Dev
MemberI had the exact same problem and I tired everything that was suggested, including triple-checking that all my keys matched, the cookie path was set, and the bbPress Integration plugin was installed in WordPress. I still couldn’t get integration working.
Here’s what I did to fix it: I deleted bbPress, installed a new copy, and during installation entered the same database information as I used for WordPress (same database, same username/password, all of which are available in wp-config.php). I also filled in the various salts and keys as required.
That allowed full user integration on both a database and cookie level and now everything works perfectly. Single sign-on, one-time registration, etc.
Hope this helps someone!
February 1, 2011 at 7:25 pm #98986csabamarosi
MemberThanks man, I’ll check it out as soon as I can!
February 1, 2011 at 7:25 pm #104086csabamarosi
MemberThanks man, I’ll check it out as soon as I can!
February 1, 2011 at 7:11 pm #98985jaapmarcus
MemberHello csabamarosi,
I just have made some small changes and it will now show as well the fressness. The last version is now on my website. Its slightly different from the plugin on the wordpress website because those features are missing at this moment.
Later on this week i will also update the wordpress plugin with this functionality and and a few other options. Like time format instead of freshness and show / disable time format or author.
February 1, 2011 at 7:11 pm #104085jaapmarcus
MemberHello csabamarosi,
I just have made some small changes and it will now show as well the fressness. The last version is now on my website. Its slightly different from the plugin on the wordpress website because those features are missing at this moment.
Later on this week i will also update the wordpress plugin with this functionality and and a few other options. Like time format instead of freshness and show / disable time format or author.
February 1, 2011 at 6:14 pm #98984csabamarosi
MemberHi jaapmarcus,
Am I able to display latest forum posts with timestamps (freshness) in a WP sidebar with your plugin? I’m currently using another one (https://wordpress.org/extend/plugins/bbpress-latest-discussion) but it doesn’t support displaying any date information, so I’ll give your one a try if it does.
Thanks in advance,
Csaba
February 1, 2011 at 6:14 pm #104084csabamarosi
MemberHi jaapmarcus,
Am I able to display latest forum posts with timestamps (freshness) in a WP sidebar with your plugin? I’m currently using another one (https://wordpress.org/extend/plugins/bbpress-latest-discussion) but it doesn’t support displaying any date information, so I’ll give your one a try if it does.
Thanks in advance,
Csaba
February 1, 2011 at 6:00 pm #94900In reply to: bbPress 2.0 – Updates
John James Jacoby
KeymasterWas in Phoenix at WordCamp, and am working on the BuddyPress side of things as well. Updates will come this week.
February 1, 2011 at 5:43 pm #97806In reply to: Integrate bbpress with an existing WordPress theme?
Ashish Kumar (Ashfame)
Participantdeep integration is easier if you know how to mess around with html & css.
Integration plugin is solely needed for the purpose of generating bbPress admin side cookies when a user logs in from WordPress side. If you don’t use it, everything will be fine, just you won’t be able to access bbPress dashboard unless you login from bbPress side.
but this clearly doesn’t affect regular normal users as they don’t have to access the dashboard, only you have to.
February 1, 2011 at 5:43 pm #102906In reply to: Integrate bbpress with an existing WordPress theme?
Ashish Kumar (Ashfame)
Participantdeep integration is easier if you know how to mess around with html & css.
Integration plugin is solely needed for the purpose of generating bbPress admin side cookies when a user logs in from WordPress side. If you don’t use it, everything will be fine, just you won’t be able to access bbPress dashboard unless you login from bbPress side.
but this clearly doesn’t affect regular normal users as they don’t have to access the dashboard, only you have to.
February 1, 2011 at 4:34 pm #91146_ck_
ParticipantDowngrade tool is on permanent delay.
Sorry, I simply do not have the time.
Restore backups from before upgrading 0.9 to 1.x
-
AuthorSearch Results