Forum Replies Created
-
Try using my theme “Maximus” back after three yrs
http://strapboot.blogspot.com/2015/02/maximus-buddypress-theme.htmlDelete the Buddypress Template pack if exist
bp.blogs.php line 415
//if ( ‘post’ != $post->post_type )
// return false;
That does the job.
Can someone show a new function to override the above from functions.phpI like to set maximum numbers of user in all groups to 50
@ rich! @ etiviti
how to restrict the number members to joinI got error with this <?php if ( bp_group_has_members(‘max=1’) ) : ?>
Is there is a way to check whether data is available in the field else return blank
Can we define the custom URL SLUG from functions.php?
I will probably love a pluginAny buddypress slug plugin?
I am the owner of Blogcastor.com and is not in anyway harmful. It was a comment with a link (cc.co) that cause the problem. It has been removed and is running fine now.
In that process(reactifying) I have lost my data. Themes will be available for download ASAP.
I think my style is better. Even if buddypress is enabled, I can still control it from the theme option page- what to display
@r-a-y Thank a million for the tip. you saved my day
Won’t it load slower if we add defined( ‘BP_VERSION’ ) did_action( ‘bp_init’ ) function
Thanks for the info. I have not use defined( ‘BP_VERSION’ )
Where will be the proper place to put this code?
You are right, I should have explained.
I am making theme both compatible for WP and BP by using something like this
<?php if (get_option(‘gangmei_switch_platform’) == ‘buddypress’) { ?>
<?php include(TEMPLATEPATH . ‘/_inc/member-search.php’); ?>
<?php } else { include(TEMPLATEPATH . ‘/_inc/search-form.php’); } ?>This work 100%
( If buddypress is enable from theme option page, it will show the buddypress member search form
else it will show the wordpress search form)But i want something like I said.
I think I am in the wrong place
Sorry
Copy the the activity index.php under activity folder
Edit the html to your way
@profitsbuzz Though this method is not exactly what I wanted, I use java script to fetch RSS feed and then I use the profile field data tag to call in. If we can integrate feed url validation this will work.
I have tried it live on my site. But users don’t usually give their correct feed url. So it show up error message and it spoil the whole page.
I can add rss feed but if user don’t give a correct feed URL it screw up everything. That’s the problem I am facing
Guys if you want to set exclude category ID from your theme option page. here is a working code.
‘category__not_in’ => array(get_option(‘gangmei_blog_cat’)),
Where gangmei is your theme shortname.@hnla
Thank you so much for the responseOh I got it
You can now see the member ‘s external blog link and latest update in the member directory page
http://blogcastor.com/members/coming close
<?php $data=bp_profile_field_data( 'field=Feed&user_id=' . bp_get_member_user_id() );if(!empty($data))
{
else
echo ‘Fill up your feed url in your profile’;
} ?>
I found it!
It’s ../members/single/plugins.php