Skip to:
Content
Pages
Categories
Search
Top
Bottom

Can’t reply to status updates


  • KylieSocial
    Member

    @kyliesocial

    Hi, I’ve just noticed that since I installed Buddypress 1.5, I can’t reply to status updates. When I tried replying to one I was taken to a page that doesn’t exist. Since then, when I click ‘Comment’ on the status update, the page just scrolls up a bit, instead of the area that you type a response in popping up. Can anyone help? Thanks

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

  • Connor
    Member

    @con101193

    Hi, If its the problem I had then your website is not loading Global.JS you need to backup your functions.php file, (use your childthemes one if you have one) then edit it and add this code below near the bottom:

    if ( !function_exists( ‘bp_dtheme_enqueue_scripts’ ) ) :
    /**
    * Enqueue theme javascript safely
    *
    * @see https://codex.wordpress.org/Function_Reference/wp_enqueue_script
    * @since 1.5
    */
    function bp_dtheme_enqueue_scripts() {
    // Bump this when changes are made to bust cache
    $version = ’20110921?;

    // Enqueue the global JS – Ajax will not work without it
    wp_enqueue_script( ‘dtheme-ajax-js’, WP_PLUGIN_DIR . ‘/buddypress/bp-themes/bp-default/_inc/global.js’, array( ‘jquery’ ), $version );

    // Add words that we need to use in JS to the end of the page so they can be translated and still used.
    $params = array(
    ‘my_favs’ => __( ‘My Favorites’, ‘buddypress’ ),
    ‘accepted’ => __( ‘Accepted’, ‘buddypress’ ),
    ‘rejected’ => __( ‘Rejected’, ‘buddypress’ ),
    ‘show_all_comments’ => __( ‘Show all comments for this thread’, ‘buddypress’ ),
    ‘show_all’ => __( ‘Show all’, ‘buddypress’ ),
    ‘comments’ => __( ‘comments’, ‘buddypress’ ),
    ‘close’ => __( ‘Close’, ‘buddypress’ ),
    ‘view’ => __( ‘View’, ‘buddypress’ )
    );

    wp_localize_script( ‘dtheme-ajax-js’, ‘BP_DTheme’, $params );
    }
    add_action( ‘wp_enqueue_scripts’, ‘bp_dtheme_enqueue_scripts’ );
    endif;


    KylieSocial
    Member

    @kyliesocial

    Thanks for your help, but I’ve still got the same problem.


    Connor
    Member

    @con101193

    :( Look into global.js on your site, the same issue happened to mine.


    KylieSocial
    Member

    @kyliesocial

    Hmm. Tried all I know how to, but I’ve still got the same problem. Thanks anyway Connor.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Can’t reply to status updates’ is closed to new replies.
Skip to toolbar