Forum Replies Created
-
In reply to: Plugin – Member List
yeah for sure.
You know the address….
Trent
In reply to: Plugin – Member ListI don’t want the permalinks on my forum. If you need to test it with them on, then maybe Spencer will (Here is the link for directions).
https://bbpress.org/documentation/faq/
I would assume be the one test without permalinks on if I could!
Thanks,
Trent
In reply to: Plugin – Member ListThat would be why. Neither of us has pretty permalinks enabled. Not sure why we don’t though….
Trent
In reply to: Site Options PluginThis will defintely change this! No more hard coding options in plugin code! Options saved in db! Yeah! This will be the bridge until Micheal and Matt get this in the core I would imagine?
Trent
In reply to: Plugin – Member ListSpencer. That memberlist link is creating the following for you:
http://spencerp.net/forums/mlist
It needs to create the following link:
http://spencerp.net/forums/mlist.php
Not sure if that is a bug, but I just manually called mlist.php myself, so I didn’t pick that up.
Trent
In reply to: Plugin – Member ListThe error is gone. Thanks for that! Problem I have (not your problem) is that I can delete the users off your list, but because of the integration with WP, I still have to delete the users in there as well. Great idea though!
Trent
In reply to: Plugin – Member Listmlist.php is where I get the error only. I am not calling the plugin anywhere but on that page.
Trent
In reply to: Plugin – Member ListIt works, but it does give me an error at the top of the page:
Warning: Invalid argument supplied for foreach() in /var/www/forum/my-plugins/bb-memberlist.php on line 54
Ideas?
Trent
In reply to: Plugin – Member ListThat is just a great plugin Ardentfrost! You have now just about completed off every single reason why people stay with phpBB with plugins for bbPress and opens the doors to functionality and users we didn’t have before.
Best part about plugins is that you get to choose how bloated you want your forums. That being said, I doubt having all the plugins in this forum would even hinder performance at all!
Great job!
Trent
In reply to: Possible bug with deleting usersI asked around the dev list and quoted this post. Maybe someone will have an answer and figure out what is causing the bug.
Trent
In reply to: About FreshnessIt is a catch22 unfortunetely. Until something is written for users defining their own timezones, you have to weight which is more important to you, proper post times for a particular timezone or having all work off the server time. As most functions for bbPress are off the server time, I recommend that myself. I am lucky I host in my timezone….
Trent
What are you trying to integrate? A theme, functions or logins?
Trent
In reply to: user IPsWhat were you hoping to track specifically. If bbPress has the IP address of a poster, it shows up on their posts and replies. There is also a utility in the admin that can lookup last 30 posts from a particular IP through the utility of:
/bb-admin/view-ip.php
in the form of:
view-ip.php?ip=127.0.0.1
Trent
In reply to: Possible bug with deleting usersI haven’t had a problem because I delete users in WP since the integration. Are you integrated? If yes, does the error disappear if you delete the user in WordPress. If not, do you mean the error is on the users page of the admin area or certain places on the main site?
Trent
In reply to: Private Forum script@topiQ – I am working on permissions for plugin page, but I still don’t have access to that one yet.
@papercuts – Great work on this.
Trent
In reply to: Plugins for WordPress integrationdefine('WP_BB', true);
and
$bb->wp_home = 'http://www.yoursite.com; // WordPress - Options->General: Blog address (URL) // No trailing slash
$bb->wp_siteurl = 'http://www.yoursite.com'; // WordPress - Options->General: WordPress address (URL) // No trailing slash
Hope that helps.
Trent
In reply to: Private Forum scriptSo10. That is beautiful! There are 4 or 5 of you that really are rocking and rolling! I will do some research here because really there are about 20-30 plugins now for bbPress bouncing around. I will try and think of a way to get them listed in one place…..
Trent
In reply to: Plugin: Post NotificationSorry. Favorite is the correct spelling with the “e” at the end.
Cheers! The other plugin for Spencer is wicked as well! Topic notification with a twist.
Trent
In reply to: My first plugin (post count)In reply to: Latest bbPress Posts In WordPressNeeds to be an option though because with that code in there, it will exclude when most users wouldn’t really need anything excluded. As well, that is only for the sidebar part, not the widget.
Trent
In reply to: Plugin: Post NotificationFor english version, you have a typo. Favorite vs. Favorit
Not a big deal though!
Trent
In reply to: Plugin: Post NotificationThat worked. Thanks Thomas!
Trent
In reply to: My first plugin (post count)I put the plugin code under the username. Compare the following code to your post.php in your templates. Make sure you are editing post.php and placing it in /my-templates/post.php.
<div class="threadauthor">
<p><strong><?php post_author_link(); ?></strong><br />
<small><?php post_author_type(); ?></small><br />
<small><?php post_count(); ?></small></p>
</div>
<div class="threadpost">
<div class="post"><?php post_text(); ?></div>
<div class="poststuff"><?php _e('Posted:'); ?> <?php bb_post_time(); ?> <a href="<?php post_anchor_link(); ?>">#</a> <?php post_ip_link(); ?> <?php post_edit_link(); ?> <?php post_delete_link(); ?></div>
</div>
This is the entire post.php, but obviously where I have the code is near the top.
Trent
In reply to: Latest bbPress Posts In WordPressIt isn’t put in as an option, (though it would be easy to do), but all it really is, is adding SQL statement to exclude a forum. Maybe a guy should put a plugin code option for number of posts displayed as well as excluding a forum.
Trent
In reply to: My first plugin (post count)Wow…that was fast! Thanks! Believe it or not that dropped posts in my personal forum from 290 back to 266!
Excellent!
Trent