-
Author
-
May 27, 2017 at 17:49 #162828egabillatParticipant
Hello.
When you want to delete a message, there are 2 solutions:
– from the list, by clicking delete. It works.
– opening the message and clicking erase. It does not work.
I have this problem, and it is also present on your demonstration.
Here is a link to a video : https://www.dropbox.com/s/c19jzxms0qg8ic6/delete.mov?dl=0
Thank you.
May 29, 2017 at 16:57 #162893LauraModeratorHello, will assign the ticket to a higher support level who can help and advise you in your query.
Thanks! ?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
May 31, 2017 at 18:49 #163123RaduModeratorHi,
For some reason the video not want to ply on the dropbox link
But I was able to delete private messages from my profile ( localhost/members/admin/messages/ )
Also, i was able to delete a message from here : https://seventhqueen.com/themes/kleo/members/demo/messages/
If you still have that issue, reinstall the theme and de-activate plugins excluding BuddyPress and check.Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMay 31, 2017 at 19:59 #163137egabillatParticipantHi.
on your demo the problem exist !
See the 3 files attached ![attachment file=163138]
[attachment file=163139]
[attachment file=163140]
Attachments:
You must be logged in to view attached files.May 31, 2017 at 20:09 #163144egabillatParticipantAnother video.
Attachments:
You must be logged in to view attached files.June 2, 2017 at 18:32 #163309RaduModeratorHi,
I was able to reproduce that also on my local install now and i confirm that.
I’ve added that in the bug list we will let you know when it’s done.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJune 5, 2017 at 19:02 #163444RaduModeratorYou’re welcome, we will let you know
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 19, 2017 at 16:04 #174107RaduModeratorHi,
Checked right now on my demo and that button works!
Make sure to have latest theme version and check if you have made some modifications in the child theme, de-activate the child theme and check if it works with parent active the delete button.
Let me know
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 23, 2017 at 09:56 #174485egabillatParticipantHi Radu.
not resolved for me…
See my function.php from my child theme.
Thanks, Eric.<?php
/**
* @package WordPress
* @subpackage Kleo
* @author SeventhQueen <themesupport@seventhqueen.com>
* @since Kleo 1.0
*/
/**
* Kleo Child Theme Functions
* Add custom code below
*/add_action( “init”, “my_init”, 1000 );
function my_init() {
remove_action(‘adverts_tpl_single_bottom’, ‘adverts_single_contact_information’);
}add_filter(‘rtmedia_media_tab_position’, ‘reorder_rtmedia_media_tab_position’, 10, 1);
function reorder_rtmedia_media_tab_position( $pos ){
return 1;
}//* Redirect WordPress to Homepage Upon Logout
add_action(‘wp_logout’,create_function(”,’wp_redirect(home_url());exit();’));add_filter(‘geodir_login_url’,’change_geodir_login_url’,10,3);
function change_geodir_login_url($login_url,$args,$gd_page_id){
//change the url to whatever you want.
$login_url = ‘http://localhost:8888/register/’;
return $login_url;
}// Remove admin from the member directory
function bpdev_exclude_users($qs=false,$object=false){$excluded_user=’347′; // Id’s to remove, separated by comma ohe 347
if($object != ‘members’ && $object != ‘friends’)// hide admin to members & friends
return $qs;$args=wp_parse_args($qs);
if(!empty($args[‘user_id’]))
return $qs;if(!empty($args[‘exclude’]))
$args[‘exclude’] = $args[‘exclude’].’,’.$excluded_user;
else
$args[‘exclude’] = $excluded_user;$qs = build_query($args);
return $qs;
}
add_action(‘bp_ajax_querystring’,’bpdev_exclude_users’,20,2);// once admin is removed, we must recount the members !
function bpfr_hide_get_total_filter($count){
return $count-1;
}
add_filter(‘bp_get_total_member_count’,’bpfr_hide_get_total_filter’);// hide admin’s activities from all activity feeds
function bpfr_hide_admin_activity( $a, $activities ) {// … but allow admin to see his activities!
if ( is_site_admin() )
return $activities;foreach ( $activities->activities as $key => $activity ) {
// ID’s to exclude, separated by commas. ID 1 is always the superadmin ohe 347
if ( $activity->user_id == 347 ) {unset( $activities->activities[$key] );
$activities->activity_count = $activities->activity_count-1;
$activities->total_activity_count = $activities->total_activity_count-1;
$activities->pag_num = $activities->pag_num -1;
}
}
// Renumber the array keys to account for missing items
$activities_new = array_values( $activities->activities );
$activities->activities = $activities_new;return $activities;
}
add_action( ‘bp_has_activities’, ‘bpfr_hide_admin_activity’, 10, 2 );function gde_24hour_times( $times ) {
foreach($times as $key=>$val){
$times[$key]=$key;
}
return $times;
}
add_filter( ‘geodir_event_schedule_times’, ‘gde_24hour_times’ );// Add this code to theme’s functions.php
// Remove target blank from edit link.
// Check if function doest not exists.
if ( ! function_exists( ‘rtmedia_wp_footer_add_js_callback’ ) ) {
function rtmedia_wp_footer_add_js_callback() {
?>
<script type=”text/javascript”>
jQuery(document).ready(function($) {
function remove_blank_target() {
jQuery( ‘.rtmedia-list .rtmedia-list-item’ ).each( function(){
var target = jQuery( this ).find( ‘.rtmedia-gallery-item-actions a:first’ ).attr( ‘target’ );
// Checked for the target attribute if it exists or not and is also set to blank.
if ( target != ‘undefined’ ) {
// Replace the blank target attribute to self target attribute.
jQuery( this ).find( ‘.rtmedia-gallery-item-actions a:first’ ).attr( ‘target’, ‘_self’ );
}
});
}
// Function for removing target blank
remove_blank_target();
// Remove target blank when new elements are added
jQuery(‘.rtmedia-list’).bind(“DOMSubtreeModified”,function(){
remove_blank_target();
});
});
</script>
<?php
}
}
add_action( ‘wp_footer’, ‘rtmedia_wp_footer_add_js_callback’ );September 25, 2017 at 16:22 #174729RaduModeratorHi,
The code from your child theme functions.php seems to not interfere with that, but if you have any other files in the child theme (bp templates) it could cause that.
Try to leave only parent theme activated and if you have any cache plugin delete the cache…
Check again, if it’s the same, re-upload the theme files over the existing one by overwriting them.
RE-download the theme files from ThemeForest
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘Bugs & Issues’ is closed to new topics and replies.