Forum Replies Created
-
In reply to: Plugin – Member List
Is the config file the only place function.php looks for path info?
In reply to: Plugin – Member Listarden, here’s what’s in the config file:
$bb->domain = 'http://navfm.org';
$bb->path = '/bbpress/'
Is that what you mean?
In reply to: Plugin – Member ListThis was like one of those light bulb times for me – like years ago when I realized you could have an image link inside an href tag. Now I know you can have a php snippet inside one as well. It’s the little things. Thanks again –
In reply to: Plugin – Member ListThat I can do! (I wasn’t sure if I should delete any <?php ….> stuff, but that works!) Thank you very much for your help and patience!
In reply to: Plugin – Member ListSorry, that was supposed to read, “adding this line:
<li class="view"><a href="<?php bb_memberlist_link(); ?>">Member List</a></li>
“In reply to: Plugin – Member ListThe only bit of code I changed in front_page.php was adding this line:
<li class=”view”>“>Member List
?php if ( $bb_current_user->ID ) : ?>
<div id="viewdiv">
<h2><?php _e('Views'); ?></h2>
<ul id="views">
<?php foreach ( get_views() as $view => $title ) : ?>
<li class="view"><a href="<?php view_link(); ?>"><?php view_name(); ?></a></li>
<?php endforeach; ?>
<li class="view"><a href="<?php bb_memberlist_link(); ?>">Member List</a></li>
</ul>
</div>
<?php endif; else : // $forums ?>
I’m sure it’s something simple but i don’t know php.
In reply to: Plugin – Member Listeeek. me again. I have bbpress installed in a folder called ‘bbpress’ (not ‘forum’) in my root directory. (Site is here: http://navfm.org/bbpress) The members link shows up fine in the Views list, but takes me to this error:
“The requested URL /forums/mlist.php was not found on this server.”
I do have pretty permalinks enabled, if that matters. I tried to find where it calls the /forums directory in the plugin files but don’t know what I’m looking for exactly.
In reply to: Plugin – Member ListThanks guys! Y’all are a huge help to way unpolished hacks like myself.
In reply to: Plugin – Member ListHi – I downloaded v.73c of this plugin and have a couple of questions about directories and where to put the link.
1. I created a my-plugins and a my-templates directory in the root of my bbpress directory, and uploaded the files as directed in the README file. Is that correct, or do those new my- directories go someplace else?
2. Into which file would I insert the link to the member list?
Thanks for your patience with this bbpress newb.