Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

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

  • carstiee09
    Participant

    @carstiee09

    And it is possible to decode the register url? that the user can see the page?


    carstiee09
    Participant

    @carstiee09

    where can i find the settings for mail?


    carstiee09
    Participant

    @carstiee09

    hello megainfo,

    thanks for your answer i try it that way.

    greetz
    Carsten


    carstiee09
    Participant

    @carstiee09

    Hello iwazaru,

    you have to past the code in the: bp-messages-cssjs.php

    try this code:

    <?php

    function messages_add_autocomplete_js() {
    global $bp;

    // Include the autocomplete JS for composing a message.
    if ( $bp->current_component == $bp->messages->slug && ‘compose’ == $bp->current_action ) {
    add_action( ‘wp_head’, ‘messages_autocomplete_init_jsblock’ );

    wp_enqueue_script( ‘bp-jquery-autocomplete’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.autocomplete.js’, array( ‘jquery’ ) );
    wp_enqueue_script( ‘bp-jquery-autocomplete-fb’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.autocompletefb.js’ );
    wp_enqueue_script( ‘bp-jquery-bgiframe’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.bgiframe.min.js’ );
    wp_enqueue_script( ‘bp-jquery-dimensions’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.dimensions.js’ );
    }

    }
    add_action( ‘wp’, ‘messages_add_autocomplete_js’, 2 );

    function messages_add_autocomplete_css() {
    global $bp;

    if ( $bp->current_component == $bp->messages->slug && ‘compose’ == $bp->current_action ) {
    wp_enqueue_style( ‘bp-messages-autocomplete’, BP_PLUGIN_URL . ‘/bp-messages/css/autocomplete/jquery.autocompletefb.css’ );
    wp_print_styles();
    }
    }
    add_action( ‘wp_head’, ‘messages_add_autocomplete_css’ );

    function messages_autocomplete_init_jsblock() {
    global $bp;
    ?>

    jQuery(document).ready(function() {
    var acfb =
    jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . ‘/wp-load.php’ ?>’});

    jQuery(‘#send_message_form’).submit( function() {
    var users = document.getElementById(‘send-to-usernames’).className;
    document.getElementById(‘send-to-usernames’).value = String(users);
    });
    });

    <?php
    }

    i you have installed buddypress via a subdomain.

    Carsten


    carstiee09
    Participant

    @carstiee09

    i have the same problem…

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