Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 24 replies - 1 through 24 (of 24 total)

  • kizzywizzy
    Participant

    @kizzywizzy

    Thank you Shane. Topic is resolved.


    kizzywizzy
    Participant

    @kizzywizzy


    kizzywizzy
    Participant

    @kizzywizzy

    Hi Shane. Thank you for that lead. Using the example given Ive successfully filtered my diretory but I cannot make it so that members who selected CAT can only see others who selected CAT in the directory. I guess I need an example of how to put this conditional into t he members loop.


    kizzywizzy
    Participant

    @kizzywizzy

    I doubt the password would be visible in the page source. Even if it is, no one will see it but the user him or herself, if they even think about randomly viewing the page source. Ordinary users dont view page sources, and as I stated before, I doubt the password would be visible in the source.


    kizzywizzy
    Participant

    @kizzywizzy

    twenty twelve


    kizzywizzy
    Participant

    @kizzywizzy

    I think this would be better as a plugin


    kizzywizzy
    Participant

    @kizzywizzy

    @whiteeagle1985 a plugin can be written for this, but what options do you want??

    Add as Co-Worker? Add as Family?


    kizzywizzy
    Participant

    @kizzywizzy

    @stephan83 This worked for me in BP 1.6.
    `
    add_filter(
    ‘bp_core_signup_send_validation_email_message’,
    ‘add_user_data_to_message’,
    10,
    2
    );

    function add_user_data_to_message( $msg, $user_id )
    {
    $user = get_user_by( ‘id’, $user_id );
    return $msg . “\n\n” . var_export( $user, TRUE );
    }
    `


    kizzywizzy
    Participant

    @kizzywizzy

    Omg BP 1.7 = EPIC! Im testing the trunk right now.
    You have all done an EPIC job!


    kizzywizzy
    Participant

    @kizzywizzy

    @gorod thats odd. deactivate all plugins except buddypress and see if the problem persists.


    kizzywizzy
    Participant

    @kizzywizzy

    On the Tersus demo, I see the theme uses Jquery 1.8.1

    If Im not mistaken, BuddyPress currently uses 1.7.1 OR 1.7.2

    Some of the javascript features won’t properly work without resolving this conflict.

    TO see if your theme is the problem, choose the BP -Default theme and try to create a group and send a message. If it works fine, you need to fix your theme javascript.

    You should find it in functions.php
    Hit ctrl+f to quickly search for ‘1.8.1’
    Change it to 1.7.2 and save it. Then try to create groups and send messages with your new theme again.


    kizzywizzy
    Participant

    @kizzywizzy

    When you upload an avatar, does the crop feature work?


    kizzywizzy
    Participant

    @kizzywizzy

    bp works , the problem is on your end.

    1) what theme are you using?
    2) are your permalink’s set to ‘postname’?


    kizzywizzy
    Participant

    @kizzywizzy

    @James – to add more profile fields to registration, go to your dashboard and under ‘Users’, choose Profile Fields. Add as necessary.


    kizzywizzy
    Participant

    @kizzywizzy

    @jakewho yes but it involves the database. Are you comfortable with editing the database?


    kizzywizzy
    Participant

    @kizzywizzy

    @jakewho you can allow them to automatcally login after registration which will set their status as “active”, allowing them to show up in the widget. If they complete activation but don’t login afterwards then they are not acounted as active until having logged in.

    There is a plugin to automatically log users in after registration. You can find one on Buddydev and you can also google for it. I dont have it off the top of my head.


    kizzywizzy
    Participant

    @kizzywizzy

    Buddedev has a plugin “facebook-like activity”
    Search their plugins


    kizzywizzy
    Participant

    @kizzywizzy

    @kraigg you’re super welcome!


    kizzywizzy
    Participant

    @kizzywizzy

    Kraigg, look closely at my code.

    `created_group,new_forum_topic,new_forum_reply`

    The code I originally had works andI tried to modify mine to include your forum and topic strings. In other words, I never used my code to include forum and topics so you’ll have to look into your database and find the action that is saved when a new topic and forum is created.

    It could be `created_forum` – I don’t know but I’ll look into it.


    kizzywizzy
    Participant

    @kizzywizzy

    Try changing this
    `if ( bp_has_activities($args) ) : ?>`

    to this

    `if (bp_has_activities(‘action=created_group,new_forum_topic,new_forum_reply’) ) : ?>`


    kizzywizzy
    Participant

    @kizzywizzy

    I believe I have the answer for this in one of my old codes. Hand on , I’ll search for it


    kizzywizzy
    Participant

    @kizzywizzy

    @echoman thats cool. I can help spruce up some graphics foor you, get you some nice logos. Let me know and I’ll make them available for you, @


    kizzywizzy
    Participant

    @kizzywizzy

    What theme are you using?


    kizzywizzy
    Participant

    @kizzywizzy

    Hi. I havent haf a chance to look through your css but i came up with this as a quick, temporary fix. Open your css file and hit ctrl+f and search for

    –> .container_12 .grid_3

    — add this:–> float:right;

    so that full block should look like this :

    .container_12 .grid_3 {
    width: 220px;
    float: right;
    }

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