Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 258 total)
  • @naijaping

    Participant

    @danbp,

    Thanks so much for your help, I will recheck that theme and update the plugin with new inbuilt css.

    @naijaping

    Participant

    @danbp,

    one of my free theme that I planned to release

    Here:

    front

    u: demo

    p: demo

    thanks

    @naijaping

    Participant

    @shanebp, @danbp,

    I am very sorry for leaving the topic so long, Its been a long time I visited here. been so busy working on some different project plus now enroled in Uni doing IT.

    here is the plugin:

    https://wordpress.org/plugins/bp-facebook-style-friend-lists/

    Thanks for your help

    @naijaping

    Participant

    @danbp, I have just found out that the problem is from one of my plugin, am still very puzzled on how to solve this.

    Any help will be appriciated.

    tahnks

    @naijaping

    Participant

    This is quite funny, I have taken all the custom codes out and the problem still not solved. please any more suggestion from anyone?

    thanks

    @naijaping

    Participant

    @danbp, oh I see, I have lots of codes. I will re create the theme from the scratch to know which code is the culprit.

    Regards

    @naijaping

    Participant

    @myg0t,

    space could be an issue, try a single name and also it is case sensitive.

    regards

    @naijaping

    Participant

    @myg0t,

    did you remember to change the field name (YOUR FIELD NAME)to the name you call it in your?

    I am currently using the code and working fine for me.

    @naijaping

    Participant

    @myg0t, try the code below

    // Enable oembed  in profile
    function bp_youtube_in_profile() {
      add_filter( 'bp_get_the_profile_field_value', 'bp_enable_youtube_in_profile', 9, 3 );
    }
    add_action( 'bp_init', 'bp_youtube_in_profile', 0 );
    
    function bp_enable_youtube_in_profile( $val, $type, $key ) {
    
    	$field = new BP_XProfile_Field( $key );
    	$field_name = $field->name;
    
    	$val = strip_tags( $val );
    	
    	if(  strtolower( $field_name ) == 'YOUR FIELD NAME' ) {
    		return wp_oembed_get( $val, array('width'=>300) );	
    	}
    		return $val;
    }

    @naijaping

    Participant

    @gcskye,

    Try something like this:

    
    function multiple_translate_text( $translated_text ) {
    	switch ( $translated_text ) {
    		case 'Remove Favorite' :
    			$translated_text = __( 'Un Vouch' );
    			break;
                    case 'Favorite' :
    			$translated_text = __( 'Vouch' );
    			break;
                    case 'Favorites' :
    			$translated_text = __( 'Vouchs' );
    			break;
    }
    	return $translated_text;
    }
    add_filter( 'gettext', 'multiple_translate_text',20 );
    
    

    Regards

    @naijaping

    Participant

    @miguelcortereal, it happened to me too, latest update is overiding the buddypress.css, what you can do is to create another file in your CSS folder where you have buddypress.css, call it my-custom.css, copy over any part you want to amend from buddypress.css to your my-custom.css file, amend it and make sure you end it with ! important.

    thats it. you will have your customization back and that way my-custom.css file will be safe even in any future update.

    Naijaping

    @naijaping

    Participant

    @splendorito
    try this, and make sure you amend it to your need, in my case, it was a question page that i redirect to.

    http://pastebin.com/vMjYMGnC

    Naijaping

    @naijaping

    Participant

    @bphelp,

    yes I know about the “All stream”, “Add Photo ” not found. those are the remaining files i need to link. when am back to the UK from Holiday.

    Thanks for your time.
    Best Regards

    @naijaping

    Participant

    @bphelp, thanks boss for the feedback, I will look into the error.


    @henrywright
    , thanks for the feedback, yes I will definately make theme responsive. I have the necessary @media screen css ready to take care of that.

    As a free theme, i dont want to use bootstrap because of my past experience.

    After the release, update will include changing the look (color, layout etc ) from the backend by admin.

    All the functions are hardcoded with the theme without any heavy load. so it will reduce the use of some plugin.

    Naijaping

    @naijaping

    Participant

    @godavid33,@henrywright

    I brought the loading function back in one of the theme am building by using just css.

    1, I added ajax spinner

    2, I changed the button background while loading to make it look disabled.

    below is an example for the post button:

    #buddypress #whats-new-form a.loading,
    #buddypress #whats-new-form input.loading {
    padding-right: 25px ! important;
    background-color:#bbb ! important;
    background-image:url(“/wp-content/themes/your-theme/img/ajax-loader.gif” ) ! important;
    background-position: 93% 50% ! important;
    background-repeat: no-repeat ! important;
    }

    using #buddypress a.loading{} will affect almost all the button.

    Naijaping

    @naijaping

    Participant

    @dugfunny,

    the following thread will solve your problem

    https://buddypress.org/support/topic/block-activity-stream-types/

    Naijaping

    @naijaping

    Participant

    Hi,


    @bphelp
    , @aronprins,

    Am still very busy working on an e-commerce site so am very sorry, have been unable to put up a demo.

    but here is a very rough screen shot. its about 80% finish am not sure about the color scheme for now but will definately ask for feedback when i put it up.

    this is just a pure theme without any plugin, all features are built in.

    BP Timeline theme

    Naijaping

    @naijaping

    Participant

    @aronprins, will send you email.


    @bphelp
    ,

    Sorry for replying late, I did not get any mention notification. I will put up a demo later today and post the link here.

    Thanks boss for your interest.

    Naijaping

    @naijaping

    Participant

    @aronprins,

    you beat me to this, I am currently building a free theme for community aswell.

    Its about 80% done and has a lot of functions

    Naijaping

    @naijaping

    Participant

    @projectfms,
    Can you post a link to the site may be i may be of help.

    @naijaping

    Participant

    @katieswinehart,
    I dont know why you have double search button, there must be something wrong with the theme you are using or a custom script.

    I just change ‘#buddypress div.dir-search ‘

    from -39px 0 0 0; to -3px 0 0 0;

    and everything looks fine and I can see the form.

    Naijaping

    @naijaping

    Participant

    @projectfms, you can make buddypress look whatever you want. the latest BP is compatible with any WP theme and you can customise it to look what you want or just create a custom WP theme to suit your needs.

    Naijaping

    @naijaping

    Participant

    @ronia,

    you now easily do this with custom post type

    @naijaping

    Participant

    @ronia,

    Here is the plugin that does that.

    https://wordpress.org/plugins/bp-you-are-blocked/

    Naijaping

    @naijaping

    Participant

    @djsteveo, @henrywright,

    I have just tested that plugin in one of my installation and it looks so promising.

    it has a lot of useful functions

    1, admin can set the total number of report before the activity go hiding automatically.

    2, admin can customize the email to receive

    3, admin can manage all the reported users and more.

    Unfortunately, some of the functions which fires the report has been deprecated so when you press report it goes to 404 not found.

    I could adopt this plugin and add it to the repo but am currently busy building a free buddypress theme which is about 60% finished.

    Someone out there may adopt it and add it to the repo because its very useful.

    Naijaping

Viewing 25 replies - 1 through 25 (of 258 total)
Skip to toolbar