Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author wordplus

    (@wordplus)

    Hi there!

    Im not sure why you not responding to my email replies, this is not the way to get support.

    Thanks!

    Thread Starter filiippppppp

    (@filiippppppp)

    Because I haven’t seen that your messages were in the spam folder.

    Hi,

    I have discovered some bugs and have some recommendations for improvements.

    views/layout-new.php line 3
            <a href="<?php echo BP_Better_Messages()->functions->get_link(); ?>" class="new-message ajax" title="<?php _e( 'New Thread', 'bp-better-messages' ); ?>"><i class="fas fa-times" aria-hidden="true"></i></a>
    =>
    	<a href="<?php echo BP_Better_Messages()->functions->get_link(); ?>" class="new-message ajax" title="<?php _e( 'Close Thread', 'bp-better-messages' ); ?>"><i class="fas fa-times" aria-hidden="true"></i></a>
    
    assets/js/emojionearea.js and emojionearea.min.js
    
    	buttonTitle : "Use the TAB key to insert emoji faster",
    =>
    	buttonTitle : BP_Messages_Emoji.tab,
    	
    also the text 'SEARCH:' and several other titles is these files are not localized. Most are defined in bp-better-messages.php.
    
    views/layout-bulk.php line 3
            <a href="<?php echo BP_Better_Messages()->functions->get_link(); ?>" class="new-message ajax" title="<?php _e( 'New Thread', 'bp-better-messages' ); ?>"><i class="fas fa-times" aria-hidden="true"></i></a>
    =>
            <a href="<?php echo BP_Better_Messages()->functions->get_link(); ?>" class="new-message ajax" title="<?php _e( 'Close Thread', 'bp-better-messages' ); ?>"><i class="fas fa-times" aria-hidden="true"></i></a>
    
    addons/stickers.php line 208
    	return '<i class="fas fa-sticky-note"></i> ' . __('Sticker', 'bp-better-message');
    =>
    	return '<i class="fas fa-sticky-note"></i> ' . __('Sticker', 'bp-better-messages');
    	
    inc/hooks.php line 390
    	echo '<a href="' . $link . '" class="bpbm-private-message-link-buddypress">' . __('Private Message', 'bp-better-message') . '</a>';
    =>            
    	echo '<a href="' . $link . '" class="bpbm-private-message-link-buddypress">' . __('Private Message', 'bp-better-messages') . '</a>';
    
    inc/hooks.php line 1000	
    	echo '<div class="generic-button bp-better-messages-private-message-link"><a href="' . $this->pm_link() . '">' . __('Private Message', 'bp-better-message') . '</a></div>';
    =>
    	echo '<div class="generic-button bp-better-messages-private-message-link"><a href="' . $this->pm_link() . '">' . __('Private Message', 'bp-better-messages') . '</a></div>';
    
    inc/notifications.php line 225
    	$message->message = __('Sticker', 'bp-better-message');
    =>                                
    	$message->message = __('Sticker', 'bp-better-messages');
    	
    	
    views/layout-thread.php line 60
    	Delete
    =>
    	<?php _e('Delete', 'bp-better-messages'); ?>
    	
    views/layout-thread.php line 60
    	<button type="submit"><i class="fas fa-paper-plane" aria-hidden="true"></i></button>
    =>	
    	<button type="submit" title="<?php _e('Send Message', 'bp-better-messages'); ?>"><i class="fas fa-paper-plane" aria-hidden="true"></i></button>
    	
    	
    inc/functions.php line 792
    	<?php if ( $is_muted ) echo '<span class="bpbm-thread-muted"><i class="fas fa-bell-slash"></i></span>'; ?>
    =>
    	<?php if ( $is_muted ) echo '<span class="bpbm-thread-muted"title="' . __('Mute thread notifications', 'bp-better-messages') . '"><i class="fas fa-bell-slash"></i></span>'; ?>

    I have a problem deleting several threads. When I delete a thread a pink field emerges, but after a refresh, the thread is still there.

    Kind regards,

    Marten

    Plugin Author wordplus

    (@wordplus)

    can you delete 1 thread at least?

    Thanks for solving the bugs and implementing the suggestions.
    There are still buttons without a title. I.e. search the code for class=”fas fa-….” and you will find more.

    Some threads can be deleted and some not. It is not clear to me under what conditions.
    However, the system should not report that a thread is deleted when it isn’t. ??

    I can’t find a bulk delete. Isn’t is available yet?

    Plugin Author wordplus

    (@wordplus)

    Hi there!

    If you find condition under what thread not deleted – let me know!

    Bulk delete is not available and is not planned at the moment.

    Thanks!

    User A sends a message to user B.

    As an administrator you can see the messages and delete it.
    Then a pink field emerges with the message that the tread was deleted, but after a refresh, the thread is still there.

    Plugin Author wordplus

    (@wordplus)

    I will remove that button when viewing another user profile.
    Use user switch plugin to delete other users threads.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Upload files’ is closed to new replies.