This topic has 11 replies, 3 voices, and was last updated 6 years by Radu.

  • Author
  • #162828
     egabillat
    Participant

    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.

    #162893
     Laura
    Moderator

    Hello, 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 solution

    Laura 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 🙂

    #163123
     Radu
    Moderator

    Hi,

    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 solution
    #163137
     egabillat
    Participant

    Hi.
    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.
    #163144
     egabillat
    Participant

    Another video.

    Attachments:
    You must be logged in to view attached files.
    #163309
     Radu
    Moderator

    Hi,

    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 solution
    #163316
     egabillat
    Participant

    Thank you Radu.

    #163444
     Radu
    Moderator

    You’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 solution
    #173912
     egabillat
    Participant

    Hello ! Not resolved…. ?

    #174107
     Radu
    Moderator

    Hi,

    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
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #174485
     egabillat
    Participant

    Hi 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/&#8217;;
    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’ );

    #174729
     Radu
    Moderator

    Hi,

    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
Viewing 12 posts - 1 through 12 (of 12 total)

The forum ‘Bugs & Issues’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?