Members list not showing – BP1.2
-
My install.
* BP1.2 Beta
* WP2.9.1
* Hybrid – Parent Theme
* Hybrid News – Child theme (modified with BP1.2 beta folders, functions & styles)
On the members page, /members, the number of members is displayed, but the list of members is not displayed. Checking the files, I tried un-commenting the following from /members/index.php, which is now in they Hybrid News folder:
<div id="members-dir-list" class="members dir-list">
<?php
// The loop will be loaded here via AJAX on page load to retain selected settings and not waste cycles.
// If you're concerned about no-script functionality, uncomment the following line.
locate_template( array( 'members/members-loop.php' ), true );
?>
</div><!-- #members-dir-list -->That worked to get the active users showing, but I’m afraid I’m missing the AJAX functionality because the ajax files can’t be found due to my crazy structure.
Where is the call to the ajax and where is it looking for it? What else should I do?
On the same page, the link for “All Members” doesn’t work because (in my structure) it’s pointing to wrong location. My crazy structure works for version control, but plugins HATE IT! http://designodyssey.org/sharing/structure1.ppt
<a href="<?php bp_root_domain() ?>"><?php printf( __( 'All Members (%s)', 'buddypress' ), bp_get_total_member_count() ) ?></a>
Where is this function (bp_root_domain) found and should I try to change it or make some other modification? Right now it points to where the files are /core, but not the root of my installation /projectname
Thanks in advance. I’m excited it’s working this well as a Child of Hybrid at this point.
- The topic ‘Members list not showing – BP1.2’ is closed to new replies.