Forum Replies Created
-
In reply to: (Weird) Open Cafe
hey thion
i like this.. good work..
so1o
In reply to: Anonymous postinghttps://bbpress.org/plugins/topic/bb-anonymous-posting/
hope this help.. works with 0.9.0.2
In reply to: Is there an Approve Registration plugin?ok.. here it is
https://bbpress.org/plugins/topic/approve-user-registration/
In reply to: Is there an Approve Registration plugin?i have created the plugin.. people willing to test the plugin out for me please mail me.. aditya at adityanaik point com.
oh by the way if any one wants to pay me.. by all means
cheers
In reply to: BBpress Admin for WordPress@raygene can you give me some more details on your install..
you have to initialize bbpress by adding code in your wpconfig file.. have you done that?
@citizenkeith plans – yup.. timeline – nope
In reply to: BBpress Admin for WordPress@_ck_ yes this will work only if you have bbpress running inside of wordpress. But I will release a next version which automatically do it.
i thought so..
In reply to: getting forum to show up on wordpress pagei did that on my site
i added the wordpress loader php file to the bb-config file at the top
it works like a charm
I fixed the error by adding
<?php bb_enqueue_script('jquery'); ?>
just before
<?php bb_enqueue_script('topic'); ?>
in header.php in the theme
In reply to: bbPress 0.9 – plugin compatibility listhttps://bbpress.org/plugins/topic/enhanced-tag-heat-map/
enhanced tag heat map works with 0.9
In reply to: bbPress 0.9 release datewhy not release a RC for bbpress
In reply to: Theme and WordPress Integrationthis make widgets work in forum..
this is only for the 2.3.x wordpress and current version of bbpress .. the new version of wordpress and bbpress might have a different approach
In reply to: Plugin: Forums Moderatorshey kannued..
the plugin is for moderators restriction.. it will not prevent any one from posting..
In reply to: bbPress, visual integration with WordPress?In reply to: Gravatar Pluginyou can check my website.. i have used gravatar for bbpress…
In reply to: Always logini think you can do this by overridding the bb_cookie function and replacing it with
function bb_cookie( $name, $value, $expires = 0 ) {
if ( bb_get_option( ‘cookiedomain’ ) )
setcookie( $name, $value, 0, bb_get_option( ‘cookiepath’ ), bb_get_option( ‘cookiedomain’ ) );
else
setcookie( $name, $value, 0, bb_get_option( ‘cookiepath’ ) );
}
In reply to: Favorites on wordpress profilevlp..
you said you want to show the favorites in the wordpress profile.
http://www.tasty.sk/forum/profile/username/favorites
this is the link to the bbpress profile page.
i am confused now can you try to explain again what are you trying to do?
In reply to: Favorites on wordpress profileyup use it in wordpress.. if i understand you right.. you want to show it on the wordpress profile page right? the one which is
<you website.com>/wp-admin/profile.php
try changing the code to
<?php if ($topics): foreach ( $topics as $topic ) : ?>
..
..
..
..
..
<?php endforeach; endif; ?>
In reply to: Favorites on wordpress profilehere is the hacked code.. this will show the favorites on profile page in the admin section of wordpress. I haven’t tested it but this is the basic idea.
please note that the wordpress must be integrated both ways before you can do this. visit this for more
add_action('show_user_profile',
'my_plugin_show_favorites');
function my_plugin_show_favorites() {
$topics = get_user_favorites( $user->ID, true );
?>
<br clear="all" />
<table width="99%" border="0"
cellspacing="2" cellpadding="3">
<tr>
<th><?php _e('Topic'); ?></th>
<th><?php _e('Posts'); ?></th>
<th><?php _e('Freshness'); ?></th>
<th><?php _e('Remove'); ?></th>
</tr>
<?php foreach ( $topics as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><a href="<?php topic_link(); ?>">
<?php topic_title(); ?></a></td>
<td class="num"><?php
topic_posts();
?></td>
<td class="num"><small><?php
topic_time();
?></small></td>
<td class="num">[<?php
user_favorites_link(
'',
array('mid'=>'x'),
$user_id
);
?>]</td>
</tr>
<?php endforeach; ?>
</table>
<div class="nav">
<?php favorites_pages(); ?>
</div>
<?php
}In reply to: Integrated Live SearchActually im not using Z-index.
the problem was with the original plugin. That’s why I including a hack to fix that in the article. here is the excerpt:
In some cases, the results fluctuate before disappearing. If you are having that problem, replace
onclick=”ls.close(); return false;”
with
onclick=”Field.clear(‘s’); return false;”
In reply to: AdityaNaik.comno. Its gravatar for wordpress integrated for bbpress
In reply to: Plugins for WordPress integrationadd these pluginsin bbpress
https://bbpress.org/plugins/topic/2
https://bbpress.org/plugins/topic/4
and this one in wordpress..
In reply to: AdityaNaik.comi looks like its fixed.. though its clunky at best..
give it a go in IE and let me know what you think.
In reply to: how do I add a custom template name to bbpress?this is what i think can be done.. very hacky and very primitive
create a plugin which filters ‘bb_template’ for template ‘front-page.php’. check for $_GET == listplugins. if so return list-plugins.php
that will load list-plugins.php is the user goes to
go to <bbinstall>/index.php?action=listplugins
here is the plugin
add_filter(‘bb_template’,’my_plugin_change_template’);
function my_plugin_change_template($template) {
return ( ‘listplugins’ == $_GET ) ? ‘list-plugins.php’ : $template;
}
kapish?
In reply to: Plugin: Forums Moderatorsif you set the moderator for the general forum she will not have access to moderate the Annoucement forum.