Search Results for 'bbpress'
-
Search Results
-
Hello,
PHPBB has a facebook style chat mod.
Link: http://www.phpbb3hacks.com/viewtopic.php?f=71&t=367
Demo: http://www.phpbb3.sk/demo/
Accounts:
(username) : (password)
user : useruser
user2 : user2user2
user3 : user3user3
IS there are plugin like this for bbpress?
Thanks,
Danny.
Hello,
If you go to this link:
http://bbpress.org/plugins/topic/support-forums/
You see the layout:
| Description | Installation | Other Notes | Changelog | Stats |
And then the | Download | Button on the right hand side.
Is that a plugin to make that page?
How can you do it, what is the plugin if it is one?
Thanks,
Danny.
[this is probably directed more at JJJ and Pete than anyone else]
With BuddyPress and now bbPress as plugin, does WordPress have an architectural direction for plugins that extend other plugins.
Or perhaps the right way to think about this is plugin dependencies. I see this discussion in WP trac where the consensus seems to be that plugin dependencies should be handled by sub-plugin developers with the neat approach Mark Jaquith suggests there.
This is beautiful in its simplicity, but a little unfriendly to the ordinary user installing a bbPress plugin without bbPress-as-plugin installed and activated.
Is Mark’s approach the plan for bbPress as plugin, or has the thinking evolved since this discussion 6 months ago?
Topic: Hot Tags Filter/Editor
Though I have Akismet installed on the bbpress forum, I keep getting tags added that are showing up in the Hot Tags without being even added to any posts. I found that the only way to remove them is by removing them directly from the database. Is there any kind of filter for hot tags spam and any plugin to remove hot tags from the admin panel?
I am using the bbpress integration plugin to sync my wp and bbpress site up for users to login/logout.
I am having some issues getting my front-page login to work the way that i want it to. Currently (complete code and file setup at bottom) when i try to login initially i have the fields:
Community Login or [link – Register] – [link -Lost Password?]
[field – username] [field – password] [btn – login]
when i input the username and password and hit login it shoots me to the login page where i need to do this again in doer to login.
currently i have this code attributed to my login button:
<input type="image" src="<?php bb_option('uri'); ?>my-templates/discussion_center/images/top_login_btn.png" width="67" height="23" alt="Submit Form" value="<?php _e('Login');?>" />i am guessing thats where the issue lies with that. i would like it to NOT go to another page and to just log in right there.
Next, after i am logged in the set up is like this:
Welcome back, username!
[link – View your profile] [link – logout]
the logout link seems to work, logging me out of my bbpress install, but it doesnt log me out of my wp install… any fix for that?
i added the cookies line to the wp-config.php for the plugin, am i supposed to add it to the bb-config.php too?
Thanks for the help in advance!!!
<b>In my header.php ::</b>
<?php login_form(); ?>
<?php if ( is_bb_profile() ) profile_menu(); ?><b>In my logged-in.php ::</b>
<div id="loginreg" class="clear">
<span id="welclogout"><?php printf(__('Welcome back, %1$s!'), bb_get_current_user_info( 'name' ));?>
<p>
Use the links below to manage your account.
<?php echo bb_get_profile_link('View your profile'); ?>
<?php bb_admin_link( 'before= | ' );?>
<?php bb_logout_link(); ?>
</p>
</span>
</div><b>in my login-form.php ::</b>
<div id="loginreg">
<p>Community Login or <?php printf(__('Register'), bb_get_option('uri').'register.php')?> - Lost Password?</p>
<form method="post" name="loginform" id="loginform" action="<?php bb_option('uri'); ?>bb-login.php">
<div class="left">
Username
<input type="text" name="log" id="user_login" class="text input" value="<?php if (!is_bool($user_login)) echo $user_login;?>" size="20" tabindex="10" />
</div>
<div class="center">
Password
<input type="password" name="pwd" id="user_pass" class="text input" value="" size="20" tabindex="20" />
</div>
<div class="right">
<input name="remember" type="hidden" id="remember" value="forever" tabindex="90" />
<input name="re" type="hidden" value="<?php echo $re; ?>" />
<?php wp_referer_field(); ?>
<input type="image" src="<?php bb_option('uri'); ?>my-templates/discussion_center/images/top_login_btn.png" width="67" height="23" alt="Submit Form" value="<?php _e('Login');?>" />
</div>
</form>
</div>I am using the bbpress integration plugin to sync my wp and bbpress site up for users to login/logout.
I am having some issues getting my front-page login to work the way that i want it to. Currently (complete code and file setup at bottom) when i try to login initially i have the fields:
Community Login or [link – Register] – [link -Lost Password?]
[field – username] [field – password] [btn – login]
when i input the username and password and hit login it shoots me to the login page where i need to do this again in doer to login.
currently i have this code attributed to my login button:
<input type=”image” src=”<?php bb_option(‘uri’); ?>my-templates/discussion_center/images/top_login_btn.png” width=”67″ height=”23″ alt=”Submit Form” value=”<?php _e(‘Login’);?>” />
i am guessing thats where the issue lies with that. i would like it to NOT go to another page and to just log in right there.
Next, after i am logged in the set up is like this:
Welcome back, username!
[link – View your profile] [link – logout]
the logout link seems to work, logging me out of my bbpress install, but it doesnt log me out of my wp install… any fix for that?
i added the cookies line to the wp-config.php for the plugin, am i supposed to add it to the bb-config.php too?
Thanks for the help in advance!!!
<b>In my header.php ::</b>
,
<?php login_form(); ?>
<?php if ( is_bb_profile() ) profile_menu(); ?>
‘
<b>In my logged-in.php ::</b>
,
<div id=”loginreg” class=”clear”>
<span id=”welclogout”><?php printf(__(‘Welcome back, %1$s!’), bb_get_current_user_info( ‘name’ ));?>
<p>
Use the links below to manage your account.
<?php echo bb_get_profile_link(‘View your profile’); ?>
<?php bb_admin_link( ‘before= | ‘ );?>
<?php bb_logout_link(); ?>
</p>
</span>
</div>
,
<b>in my login-form.php ::</b>
,
<div id=”loginreg”>
<p>Community Login or <?php printf(__(‘Register‘), bb_get_option(‘uri’).’register.php’)?> – Lost Password?</p>
<form method=”post” name=”loginform” id=”loginform” action=”<?php bb_option(‘uri’); ?>bb-login.php”>
<div class=”left”>
Username
<input type=”text” name=”log” id=”user_login” class=”text input” value=”<?php if (!is_bool($user_login)) echo $user_login;?>” size=”20″ tabindex=”10″ />
</div>
<div class=”center”>
Password
<input type=”password” name=”pwd” id=”user_pass” class=”text input” value=”” size=”20″ tabindex=”20″ />
</div>
<div class=”right”>
<input name=”remember” type=”hidden” id=”remember” value=”forever” tabindex=”90″ />
<input name=”re” type=”hidden” value=”<?php echo $re; ?>” />
<?php wp_referer_field(); ?>
<input type=”image” src=”<?php bb_option(‘uri’); ?>my-templates/discussion_center/images/top_login_btn.png” width=”67″ height=”23″ alt=”Submit Form” value=”<?php _e(‘Login’);?>” />
</div>
</form>
</div>
,
