kwavewd
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyDrive] Changing BuddyDrive urlnevermind changing the url in pages worked
Forum: Plugins
In reply to: [BP Member Reviews] Adding The Rating Stars to Homepage Under Featured MemberI could use a little more help with this site would you be interested I can pay you?
what’s your email?
Forum: Plugins
In reply to: [BP Member Reviews] Adding The Rating Stars to Homepage Under Featured MemberRESOLVED
Forum: Plugins
In reply to: [BP Member Reviews] Adding The Rating Stars to Homepage Under Featured MemberYES!!!!!!!! It Worked it worked your the BOMB!
Forum: Plugins
In reply to: [BP Member Reviews] Adding The Rating Stars to Homepage Under Featured Membersorry `<?php
/**
* Members list template
*/
$view = bp_featured_members()->get(‘view’);
?>
<?php if ( bp_has_members( bp_ajax_querystring( ‘members’ ) . ‘&scope=featured’) ) : ?>
<ul class=”item-list featured-members-list featured-members-<?php echo $view; ?>” >
<?php while ( bp_members() ) : bp_the_member(); ?>
<li class=”featured-member-item “>
<div class=”item-avatar”>
<a href=”<?php bp_member_permalink() ?>” title=”<?php bp_member_name(); ?>”>
<?php bp_member_avatar(); ?>
</a>
</div>
<div class=”item”>
<div class=”item-title”>
<a href=”<?php bp_member_permalink(); ?>” title=”<?php bp_member_name(); ?>”>
<?php bp_member_name(); ?>
</a><br />
<?php
bp_member_profile_data( ‘field=Address’ );
?> <br /><a href=”<?php bp_member_permalink(); ?>reviews” title=”<?php bp_member_name(); ?>”>
<?php global $BP_Member_Reviews;
$BP_Member_Reviews->embed_rating( $user_id );
?>
</a></div>
<div class=”item-meta”>
<span class=”activity” data-livestamp=”<?php bp_core_iso8601_date( bp_get_member_last_active( array( ‘relative’ => false ) ) ); ?>”>
<?php bp_member_last_active(); ?>
</span>
</div>
</div>
</li>
<?php endwhile; ?>
</ul><?php else: ?>
<div id=”message” class=”info”>
<p><?php _e( ‘Sorry, no members were found.’, ‘bp-featured-members’ ); ?></p>
</div><?php endif; ?>`
Forum: Plugins
In reply to: [BP Member Reviews] Adding The Rating Stars to Homepage Under Featured Memberthis is the code from file i am inserting this into
<?php
/**
* Members list template
*/
$view = bp_featured_members()->get(‘view’);
?>
<?php if ( bp_has_members( bp_ajax_querystring( ‘members’ ) . ‘&scope=featured’) ) : ?>
<ul class=”item-list featured-members-list featured-members-<?php echo $view; ?>” >
<?php while ( bp_members() ) : bp_the_member(); ?>
<li class=”featured-member-item “>
<div class=”item-avatar”>
” title=”<?php bp_member_name(); ?>”>
<?php bp_member_avatar(); ?>
</div>
<div class=”item”>
<div class=”item-title”>
” title=”<?php bp_member_name(); ?>”>
<?php bp_member_name(); ?>
<br />
<?php
bp_member_profile_data( ‘field=Address’ );
?> <br />reviews” title=”<?php bp_member_name(); ?>”>
<?php global $BP_Member_Reviews;
$BP_Member_Reviews->embed_rating( $user_id );
?>
</div>
<div class=”item-meta”>
<span class=”activity” data-livestamp=”<?php bp_core_iso8601_date( bp_get_member_last_active( array( ‘relative’ => false ) ) ); ?>”>
<?php bp_member_last_active(); ?>
</span>
</div>
</div><?php endwhile; ?>
<?php else: ?>
<div id=”message” class=”info”>
<p><?php _e( ‘Sorry, no members were found.’, ‘bp-featured-members’ ); ?></p>
</div><?php endif; ?>
Forum: Plugins
In reply to: [BP Member Reviews] Adding The Rating Stars to Homepage Under Featured Memberthank you so I tried that but it still just shows them ranked at 5 stars not correct. Is there another piece of code I have to insert ?
thank you so much
.em-location-map {
height: 300px !important;
width: 400px !important;
}
.em-locations-map {
height: 300px !important;
width: 950px !important;
}This worked for me however I needed to add it to my themes style.css instead of anything within the plugin folder. I was using the TwentyTwelve theme and it worked great!