Forum Replies Created
-
In reply to: Plugin – Messengers
I would suggest to use the usermeta table to store this..
that way the table structure will remain constant
In reply to: Private Forums Pluginnope this wouldnt do it..
In reply to: get_rowget_row gives out object of the row.. to obtain the variables you need to use -> pointer to the variable..
if you want to print what is the content of the variable., use print_r($var);
In reply to: Private Forums PluginPrivate Forum Version 1.1 Released
http://www.adityanaik.com/projects/plugins/bb-private-forums/
Please report any bugs here
In reply to: Site Options Pluginhanbit,
download the latest version of the Private Forums plugin from
http://www.adityanaik.com/projects/plugins/bb-private-forums/
please report any bugs here
http://www.adityanaik.com/forums/forum/4
thanks for you help..
In reply to: Private Forum scriptPrivate Forum Version 1.1 Released
http://www.adityanaik.com/projects/plugins/bb-private-forums/
Please report any bugs here
In reply to: Private Forum scriptrichard.. the plugin does not make the rss feeds private..
In reply to: Site Options PluginI have updated the plugin with release 1.02. it will check for other requirements. if also has migration function from site options to bbpress get option function.
In reply to: Site Options Pluginhttps://bbpress.org/documentation/faq/#customization-folders
do the default plugin installation routine..
please note that you need site-options plugin and the latest code from the bbpress repository
In reply to: Private Forum scriptnick..
im on it.. will be out in a few days..
In reply to: Private Forum scripti’ll fix this and get a new version out in the evening
thanks
In reply to: Private Forum scriptsorry.. the theme currently works only with the site_options plugin. i’ll fix the plugin to check for that
thanks
In reply to: Private Forums Plugingr8..
In reply to: Private Forums PluginIn reply to: Private Forums Pluginsorry about the mis communication..
the latest code for bbpress.. coz the is_serialized function is in the latest code but not in blix i think…
In reply to: Private Forums PluginThe plugin currently works on the latest code.. let me check if i can fix the code to work with blix..
Trent:
can you check with the latest code and let know..
In reply to: Private Forum scriptSelectable Private Forums
http://www.adityanaik.com/projects/plugins/bb-private-forums/
In reply to: Site Options PluginA small bug fix release 1.01 update on the release page..
In reply to: Site Options Pluginyes i have used standard functions like get_option and update_options..
and whenever we get the code in the core i will write a function to import all the options from this table to the core..
In reply to: Private Forum scriptyup.. i use the latest on the repository..
cheers
In reply to: Private Forum scriptplease note that the bb hook for initialization was change after the blix release (0.73). it was changed from ‘init’ to ‘bb_init’
check the bb-settings.php file.. check what is the name of the hook for initialization. as i mentioned the hook name was changed from init to bb-init.
if the bb-settings file has this
do_action(‘init’, ”);
then change the last line of the plugin to
add_action( ‘init’, ‘my_check_private_forum’);
In reply to: The secret to making a new page…a small mistake.. its bb_get_header()
cheers!
In reply to: Best way to remove ‘unresolved topics’there are two things you have to do..
- one change the topic tempalte to remove the call to topic_resolved()
<li id="resolution-flipper"><?php _e('This topic is') ?> <?php topic_resolved(); ?></li>
- fix get_views() in the functions.php
to that just write a plugin to remove the unwanted options from the views
function my_no_support_views($views) {
return array_diff($views, array('unresolved' => __('Unresolved topics')));
}
add_filter('bb_views', 'my_no_support_views');
In reply to: Private Forum scriptnothing prevents you from doing that… only thing is tomorrow if you change the template you will have to have this code there too..
if you keep it in a plugin file in the my-plugins dir it will automatically come thru with the new files..
cheers
In reply to: oh another cookie bake offtry changing
$bb->domain = 'http://www.wonderliver.com/bbpress';
$bb->path = '/';
to
$bb->domain = 'http://www.wonderliver.com';
$bb->path = '/bbpress/';
- one change the topic tempalte to remove the call to topic_resolved()