Forum Replies Created

Viewing 40 posts - 2,721 through 2,760 (of 2,796 total)
  • Author
  • in reply to: Only allow registration with facebook. #41915
     Laura
    Moderator

    Hello, try this:

    COPY CODE
    
    .reveal-modal .button.facebook {
    display: inline !important;
    }
    .reveal-modal .button {
    display: none !important;
    }
    

    Be sure you have child theme activated.

    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 🙂

    in reply to: Only allow registration with facebook. #41902
     Laura
    Moderator

    Hello, use this to hide the button but show facebook.
    Add this to style.css in child theme (remember that anyone who goes to yourwebsite.com/register will be allowed to register, this only hides the button in the modal)

    COPY CODE
    
    .reveal-modal .button.facebook {
    display: inline !important;
    }
    .reveal-modal .button {
    display: none;
    }
    
    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 🙂

    in reply to: rtmedia and http error on download video #41863
     Laura
    Moderator

    Hello, can you create a file in your root folder and name it phpinfo.php then inside of it put:

    COPY CODE
    
    <?php
    
    // Show all information, defaults to INFO_ALL
    phpinfo();
    
    ?>
    

    Then go to yourwebsite.com/phpinfo.php
    And search for your memory limit and tell me what it is , 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 🙂

    in reply to: Search form background color #41769
     Laura
    Moderator

    Hello, add this to your style.css in child theme, customize as you wish:

    COPY CODE
    
    /* Search Box Borders Color */
    .form-header {
    border-left: 10px solid rgba(56, 49, 52, 0) !important;
    border-top: 10px solid rgba(146, 66, 93, 0) !important;
    border-right: 10px solid rgba(146, 66, 93, 0) !important;
    }
    .form-search {
    border-left: 10px solid rgba(221, 39, 101, 0) !important;
    border-right: 10px solid rgba(146, 66, 93, 0) !important;
    }
    /* Form Background color */
    .form-search, .form-header, div.alert-box, div.pagination span.current {
    background: rgba(54, 54, 54, 0.51) !important;
    }
    /* Border color of the buttons */
    .form-search.custom div.custom.dropdown a.selector, .form-search.custom div.custom.dropdown a.current, .form-search.custom select {
    border: solid 1px #363636 !important;
    }
    /* Background color of the buttons */
    .form-search.custom div.custom.dropdown a.current, .form-search.custom input[type="text"], .form-search.custom input[type="password"], .form-search.custom select {
    background-color: #363636 !important;
    }
    /* Search Button colors */
    .button:hover, .button:focus, .form-search .button, .form-search .button:hover, .form-search .button:focus, .wpcf7-submit:focus, .wpcf7-submit:hover, #rtmedia-add-media-button-post-update:hover, #rt_media_comment_submit:hover, .rtmedia-container input[type="submit"]:hover {
    color: #ffffff !important; /* Text color */
    background-color: #363636 !important; /* Background Color */
    border: 1px solid #363636 !important; /* Border Color */
    }
    /* Form Footer  */
    .form-footer {
    color: #FDF9F9 !important; /* Text Color */
    padding: 20px 20px 10px !important;
    border-left: 10px solid #363636 !important;
    border-bottom: 10px solid #363636 !important;
    border-right: 10px solid #363636 !important;
    background: #363636 !important;
    width: 360px !important;
    }
    /* Photos Border */
    .carousel-profiles li {
    border: 3px solid #363636 !important;
    }
    /* Arrows Color */
    a:not(.button), div#main a:not(.button), #header .form-footer a:not(.button) {
    color: #F7F4F4 !important;
    }
    /* Text color, change #FFF to the color of the text you need */
    #header, #header .form-header .lead, #header label {
    color: #FFFFFF !important;
    }
    
    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 🙂

    in reply to: I feel i miss something on my install #41741
     Laura
    Moderator

    Hello, here are the solutions:
    1. You need to add this code to your functions.php in child theme folder then customize it with your fields

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_member_data');
    function kleo_my_member_data() 
    {
        global $kleo_config;
        //this is the details field, right now it take the "About me" field content 
        $kleo_config['bp_members_details_field'] = 'About Me';
        //this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there
        $kleo_config['bp_members_loop_meta'] = array(
            'I am a',
    		'Marital Status',
            'City',
    		
        );
    }
    

    2. Be sure you have the last update of sweetdate (2.7)
    It should be a button called SHORTCODES instead of the pink one.

    3. For match compability you need to customize your match system with the fields you want and the point they give, follow the instructions on the code:

    COPY CODE
    
     //change matching system
    add_action('after_setup_theme','kleo_my_match');
    function kleo_my_match() {
    global $kleo_config;
    $kleo_config['matching_fields']['starting_score'] = 1;
    //If we want to match by members sex. values: 0|1
    $kleo_config['matching_fields']['sex_match'] = 0;
    //single value fields like select, textbox,radio
    $kleo_config['matching_fields']['single_value'] = array (
        'Marital status' => 5,
        'Sect' => 5,
        'Age' => 5,
        'City' => 2,
        'Country' => 5,
    );
    //multiple values fields like multiple select or checkbox
    $kleo_config['matching_fields']['multiple_values'] = array (
        'Interests' => 10,
        'Looking for' => 10,
    );
    }
    

    3.5 For the profile tabs use this code but with the group of fields that you have, just follow the instructions here:
    https://archived.seventhqueen.com/forums/topic/how-to-add-tabs-next-to-profile-image-extended

    4. Sorry i did not understand this point.

    5. In point 3.5

    6. Will answer soon

    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 🙂

    in reply to: "Create an account" change text in [pmpro_levels]? #41456
     Laura
    Moderator

    Hello, looking to your code i see you already changed it, this is the button:

    COPY CODE
    
    [kleo_button url="register" style="standard" size="large" round="radius" icon="0,before" target="_self"] Kostenlos Anmelden [/kleo_button] 
    
    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 🙂

    in reply to: Profile image tabs revisit #40873
     Laura
    Moderator

    Hello, you need to add a – for each space of the name in :

    COPY CODE
    
    <strong>$bp_tabs['About'] = array(</strong>
                'type' => 'regular',
                'name' => __('About Me', 'kleo_framework'),
                'group' => 'About',
                'class' => 'regulartab'
        );
    

    If your field group names About Me (in admin area) then you should have it like:

    COPY CODE
    
    $bp_tabs['About-Me'] = array(
                'type' => 'regular',
                'name' => __('About Me', 'kleo_framework'),
                'group' => 'About Me',
                'class' => 'regulartab'
        );
    
    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 🙂

    in reply to: error #40838
     Laura
    Moderator

    Hello, try this:
    All in child theme.
    Functions.php :

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_hearts_actions');
    
    function kleo_my_hearts_actions() 
    {     
    
        /* Replace the heart over images */
        add_filter('kleo_img_rounded_icon', 'my_custom_icon');
    
        /* Replace the heart from register modal */
        add_filter('kleo_register_button_icon', 'my_custom_icon_register');
    
        /* Replace the heart from About us widget */
        add_filter('kleo_widget_aboutus_icon', 'my_custom_icon_about_widget');
    }
    
    /* Replace the heart with a camera icon function */
    function my_custom_icon () {
        return 'camera';
    }
    
    /* Replace the heart from register modal with a user icon function */
    function my_custom_icon_register () {
        return 'user';
    }
    /* Replace the heart from about us widget with a user icon function */
    function my_custom_icon_about_widget () {
        return 'user';
    }
    

    Style.css

    COPY CODE
    
    .circular-item .hearts {
    display: none;
    }
    
    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 🙂

    in reply to: Restrict Looking for the Opposite #40834
     Laura
    Moderator

    Hello, will work on a solution for you, but for Arrowchat you would need to contact their support.
    2.You should contact a developer to do this for you as it requires extra custom work.
    3.Check out this post https://archived.seventhqueen.com/forums/topic/membership-auto-in-registration#post-5411
    To disable changing gender after registration use this code:

    COPY CODE
    
    function disable_name_change( $data ) {
    
    if ( 852 == $data->field_id )
    
    $data->field_id = false;
    
    
    
    return $data;
    
    }
    
    add_action( 'xprofile_data_before_save', 'disable_name_change' );
    

    IMPORTANT Change 852 for the “I am a” Field ID (located in the url when you edit the field)
    If they try to change gender and save, it will show an error message.

    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 🙂

    in reply to: Show name in members carousel #40832
     Laura
    Moderator

    Hello, please follow my instructions in order to show members name in the profile carousels.

    1. Create a folder in your sweetdate-child theme and call it custom_buddypress
    2. Then create a file inside that folder, with the name bp-functions.php
    3. Edit the file and paste the attachment text inside of it, then save it.
    4. Go to style.css in child theme and paste the following:

    COPY CODE
    
    .form-wrapper .carousel-profiles {
    max-height: 125px;
    }
    .carousel-profiles.responsive .caroufredsel_wrapper {
    height:125px !important;
    }
    .member-carousel-title {
    font: bold 13px 'Arial';
    color: rgb(124, 124, 124);
    }
    
    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 🙂

    Attachments:
    You must be logged in to view attached files.
    in reply to: Need to delete Groups members counting in home page #40637
     Laura
    Moderator

    Hello, add this to you style.css in child theme:

    COPY CODE
    
    #groups .circular-item {
    display: none;
    }
    #groups-list .meta {
    display: none;
    }
    
    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 🙂

    in reply to: Modification help #40397
     Laura
    Moderator

    Hello, first step done, i added the following code to your functions.php in child theme, then added the following css code to remove only the hearts in the match circle, all done in functions.php and style.css of child theme:

    Functions.php :

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_hearts_actions');
    
    function kleo_my_hearts_actions() 
    {     
    
        /* Replace the heart over images */
        add_filter('kleo_img_rounded_icon', 'my_custom_icon');
    
        /* Replace the heart from register modal */
        add_filter('kleo_register_button_icon', 'my_custom_icon_register');
    
        /* Replace the heart from About us widget */
        add_filter('kleo_widget_aboutus_icon', 'my_custom_icon_about_widget');
    }
    
    /* Replace the heart with a camera icon function */
    function my_custom_icon () {
        return 'camera';
    }
    
    /* Replace the heart from register modal with a user icon function */
    function my_custom_icon_register () {
        return 'user';
    }
    /* Replace the heart from about us widget with a user icon function */
    function my_custom_icon_about_widget () {
        return 'user';
    }
    

    Style.css

    COPY CODE
    
    .circular-item .hearts {
    display: none;
    }
    
    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 🙂

    in reply to: Need help with sever things ASAP, thanks! #40124
     Laura
    Moderator

    Hello, let me try to help you 🙂
    1. You can customize your profile tabs by going to your profile in frontend then in sub-menu Profile > Edit, then you will be able to edit it 🙂

    2. Delete this

    COPY CODE
     [kleo_one]
    
    
    	 
    
    
    	[kleo_h2] Sweet stories from [kleo_colored_text color="#F00056"] our Lovers[/kleo_colored_text][/kleo_h2]
    
    
    	 
    
    
    	[kleo_lead_paragraph] Here you have some success stories from our blog section. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. [/kleo_lead_paragraph]
    
    
    	 
    
    
    	[/kleo_one]
    

    3. First you need to enable that user can create groups, then in groups directory from frontend they will see a button to create it 🙂

    4. Go to Subscriptions /Memberships in your wp-admin menu, Create a new level and when you finish, it will appear in the memberships page to choose it and pay for it. Also, you can restrict certain functions for each or all levels in Sweetdate > Subscriptions / Memberships

    5. When you import the revolution slider from the demo content, you will have it, if not you will find it in Demo Content> Revolution Slider > Images from your .zip

    6. You can change it from Sweetdate > Buddypress in wp-admin

    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 🙂

    in reply to: User dashboard #39865
     Laura
    Moderator

    Hello, that is a widget located at Appearance > Widgets
    If you have problems with users being redirected to admin panel, try this code in bp-custom.php in wp-content/plugins folder:

    COPY CODE
    
    /*Make sure profile is default component*/
    define('BP_DEFAULT_COMPONENT','profile');
    
    /*let us filter where to redirect */
    add_filter("login_redirect","bpdev_redirect_to_profile",10,3);
     
    function bpdev_redirect_to_profile($redirect_to_calculated,$redirect_url_specified,$user)
    {
    if(empty($redirect_to_calculated))
    $redirect_to_calculated=admin_url();
     
    /*if the user is not site admin,redirect to his/her profile*/
    if(!is_site_admin($user->user_login))
    return bp_core_get_user_domain($user->ID );
    else
    return $redirect_to_calculated; /*if site admin or not logged in,do not do anything much*/
     
    }
    
    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 🙂

    in reply to: sub menu of profil #39641
     Laura
    Moderator

    Hello, go to plugins folder in your ftp, locate bp-custom.php and add this after <?php and before ?>

    COPY CODE
    
    define(‘BP_DEFAULT_COMPONENT’,’profile’);
    global $bp;
    $bp->bp_nav[‘profile’][‘position’] = 10;
    $bp->bp_nav[‘notifications’][‘position’] = 20;
    $bp->bp_nav[‘messages’][‘position’] = 30;
    $bp->bp_nav[‘friends’][‘position’] = 40;
    $bp->bp_nav[‘forum’][‘position’] = 50;
    $bp->bp_nav[‘posts’][‘position’] = 60;
    $bp->bp_nav[‘groups’][‘position’] = 70;
    $bp->bp_nav[‘activity’][‘position’] = 80;
    $bp->bp_nav[‘settings’][‘position’] = 90;
    }
    add_action( ‘bp_init’, ‘tricks_change_bp_tag_position’, 999 );
    }
    add_action( ‘wp_head’, ‘tricks_change_bp_tag_position’,9 );
    

    If this code doesnt move ALL ,then please tell me what are the following:
    Q&A
    Réglages du Profil
    Evennements
    Petites annonces

    I mean their original name. Not translated or the plugin that added it

    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 🙂

    in reply to: Sweetdare and buddypress #39400
     Laura
    Moderator

    Hello, i need your website link in order to add it for you, i will share the code and tell you how to do it 🙂
    Go to sweetdate child theme functions.php and add the following:

    COPY CODE
    
    //Profile tabs
     
    add_action('after_setup_theme','kleo_my_custom_tabs');
    function kleo_my_custom_tabs() 
    {
        global $bp_tabs;
        $bp_tabs = array();
    /* This is the code you need to use as a base for each profile tab, the display changes if you use 
    Regular type or Cite tab, cite is a quote, bigger style for a lot of text, while regular is small
    When wanting to change the style, change it at type and class , citetab , regulartab 
    You can start to copy the custom code from here */
        $bp_tabs['CUSTOMGROUP'] = array(
                'type' => 'regular',
                'name' => __('Profil', 'kleo_framework'),
                'group' => 'Profil',
                'class' => 'regulartab'
        );
    /* To here, the above code is what you need to copy and paste to make new tabs.
    The order of the tabs changes as it is in the code. */
                 $bp_tabs['A-propos-de-moi'] = array(
                'type' => 'regular',
                'name' => __('A propos de moi', 'kleo_framework'),
                'group' => 'A propos de moi',
                'class' => 'regulartab'
        );
        /* rtMedia tab - only if plugin installed */
        if (class_exists('RTMedia')) 
        {
            $bp_tabs['rtmedia'] = array(
                    'type' => 'rt_media',
                    'name' => __('Photos', 'kleo_framework'),
                    'class' => 'mySlider'
            );
        }
     
        /* Bp-Album tab - only if plugin installed */
        elseif (function_exists('bpa_init')) {
            $bp_tabs['bp-album'] = array(
                    'type' => 'bp_album',
                    'name' => __('My photos', 'kleo_framework'),
                    'class' => 'mySlider'
            );
        }    
        
    } 
    

    Acteur – comédien – figurant are separated groups? or 1? I suggest to not use special symbols as names like –
    This code explains how to do it, also check:
    https://archived.seventhqueen.com/forums/topic/how-to-add-tabs-next-to-profile-image-extended

    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 🙂

    in reply to: revolution slider and .rev_slider_wrapper #39304
     Laura
    Moderator

    Hello, just add it to your style.css in child theme :

    COPY CODE
    
    .page-template-page-templatesfront-page-php .rev_slider_wrapper {
        min-height: 0px;
    }
    
    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 🙂

    in reply to: hide upload image name #39303
     Laura
    Moderator

    Hello, no problem, try this:

    COPY CODE
    
    .rtmedia-list.masonry .rtmedia-list-item a h4 {
    font-size: inherit;
    padding: 5px 2px;
    display: none !important;
    }
    .mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtm-ltb-title a {
    text-decoration: none;
    color: #fff;
    opacity: 0.7;
    display: none !important;
    }
    

    Also copy footer.php to child theme then add this before </body>

    COPY CODE
    
    <script type="text/javascript">
    jQuery('document').ready(function($){
    	$('[title]').removeAttr('title');
    });
    </script>
    

    This is for hiding title tooltip that shows the title of the image.

    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 🙂

    in reply to: hide upload image name #39226
     Laura
    Moderator

    Hello, add this to your style.css

    COPY CODE
    
    .rtmedia-list.masonry .rtmedia-list-item a h4 {
    display: none;
    }
    
    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 🙂

    in reply to: Add "Last Active" In Members list #39203
     Laura
    Moderator

    Hello, sure, just copy edit members-loop.php in child theme, find

    COPY CODE
    
     <div class="search-body">
                  <?php do_action( 'bp_directory_members_item' ); ?>
    

    And add after it:

    COPY CODE
    
    <span class="activity"><i class="icon-time"></i> <?php bp_last_activity(bp_get_member_user_id()); ?></span>
    
    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 🙂

    in reply to: Sweetdate account creation #39088
     Laura
    Moderator

    Hello, for 10:
    To redirect user to his profile once logged in, use this inside of bp-custom.php (in plugins folder)

    COPY CODE
    
    /*Make sure profile is default component*/
    define('BP_DEFAULT_COMPONENT','profile');
    
    /*let us filter where to redirect */
    add_filter("login_redirect","bpdev_redirect_to_profile",10,3);
     
    function bpdev_redirect_to_profile($redirect_to_calculated,$redirect_url_specified,$user)
    {
    if(empty($redirect_to_calculated))
    $redirect_to_calculated=admin_url();
     
    /*if the user is not site admin,redirect to his/her profile*/
    if(!is_site_admin($user->user_login))
    return bp_core_get_user_domain($user->ID );
    else
    return $redirect_to_calculated; /*if site admin or not logged in,do not do anything much*/
     
    }
    

    Home page should be like this:

    COPY CODE
    
    [kleo_section border=1 bg="http://seventhqueen.com/demo/sweetdatewp/wp-content/uploads/2013/06/gray_pattern.gif"]
    	 
    	[kleo_call_to_action bg="http://seventhqueen.com/demo/sweetdatewp/wp-content/uploads/2013/06/map-bg.png"]
    	 
    	[kleo_one]
    	[kleo_h1]It all starts with a [kleo_colored_text color="#F00056"] Date [/kleo_colored_text][/kleo_h1]
    	 
    	[kleo_lead_paragraph] You find us, finally, and you are already in love. More than 5.000.000 around the world already shared the same experience and uses our system. <span style="color: #000000;"><strong>Joining us today just got easier!</strong></span>[/kleo_lead_paragraph]
    	 
    	[kleo_button url="register" style="standard" size="large" round="radius" icon="0,before" target="_self"] Join us for FREE [/kleo_button] [kleo_button_video url="http://www.youtube.com/embed/FtquI061bag" style="alert" size="large" round="radius" icon="film,after"] Our TV Commercial [/kleo_button_video]
    	 
    	 
    	 
    	[/kleo_one]
    	[kleo_one]
    	 
    	[kleo_status_icon type="total" subtitle="Members in total"] [kleo_status_icon type="members_online" subtitle="Members online"] [kleo_status_icon type="women_online" subtitle="Women online"] [kleo_status_icon type="men_online" subtitle="Men online"]
    	[/kleo_one]
    	 
    	[/kleo_call_to_action][/kleo_section]
    	 
    	[kleo_section centered=1 border=1]
    	 
    	[kleo_row] [kleo_one]
    	 
    	[kleo_h2] Sweet stories from [kleo_colored_text color="#F00056"] our Lovers[/kleo_colored_text][/kleo_h2]
    	 
    	[kleo_lead_paragraph] Here you have some success stories from our blog section. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. [/kleo_lead_paragraph]
    	 
    	[/kleo_one]
    	 
    	[kleo_one]
    	 
    	[kleo_posts_carousel]
    	 
    	[/kleo_one]
    	 
    	[/kleo_row][/kleo_section]
    	 
    	[kleo_section bg="http://seventhqueen.com/demo/sweetdatewp/wp-content/uploads/2013/06/gray_pattern.gif" centered=1 border=1][kleo_row] [kleo_one][kleo_h2] Top [kleo_colored_text color="#F00056"] Members [/kleo_colored_text][/kleo_h2][kleo_top_members] [/kleo_one] [/kleo_row][/kleo_section]
    	 
    	[kleo_section centered=1]
    	 
    	[kleo_row][kleo_one][kleo_h2]Recently Active [kleo_colored_text color="#F00056"] User Groups [/kleo_colored_text][/kleo_h2][/kleo_one]
    	 
    	[kleo_recent_groups]
    	 
    	[/kleo_row]
    	 
    	[/kleo_section]
    

    12, In what browser are you testing it? i used chrome and see it perfectly.
    15, All your shortcodes are not working.

    So…actually your website is having some kind of blocking… i would suggest disabling the plugins that are not suggested, and until it works, then activate them one by one, checking if everything is ok. It could be also some functions that doesnt work, any file you could have edited… Try what i told you, if not, then i suggest replacing sweetdate for the original.

    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 🙂

    in reply to: Main Menu Creation #39072
     Laura
    Moderator

    Hello, this theme only has messages and Friendship request counters, for the other you should hide a developer to do it for you, and for the question to add it to your menu, you can do the following: Copy Header.php to your child theme, edit it and find “Main Navigation”

    Then right after

    COPY CODE
    <div class="eight columns"</*div>

    Paste this:

    COPY CODE
    
    <ul class="button-group radius left">
    <?php if (is_user_logged_in()): ?>
    							
    		<?php if (function_exists('bp_is_active')): ?>
    							<?php 
    							$profile_menu = array();
    							
    							if( bp_is_active('messages')) {
    								$profile_menu['messages'] = '<li style="list-style:none"><a href="' . bp_loggedin_user_domain().'messages/">'. __("Messages", "buddypress").' <small class="label">'. messages_get_unread_count().'</small></a></li>';
    							}							
    							
    							if (bp_is_active('friends')) {
    								$profile_menu['friends'] = '<li style="list-style:none"><a href="' . bp_loggedin_user_domain().'friends/requests">'. __("Friend requests", 'kleo_framework').' <small class="label">'. bp_friend_get_total_requests_count().'</small></a></li>';
    							}						
    														
    							
    							$profile_menu = apply_filters('header_profile_dropdown',$profile_menu);
    							?>
    							
    							<li class="relative btn-profile">
    								<?php if (!empty($profile_menu)) { ?>
    									<div href="#" class="" data-options="is_hover:true">
    								<?php } ?>
    								<span></span><div class="kleo-notifications"><?php if( bp_is_active('messages') && messages_get_unread_count() > 0 ) { ?><a>" data-width="210" title="<?php _e("New messages", 'kleo_framework');?>" class="kleo-message-count has-tip tip-left"><?php echo messages_get_unread_count(); ?></a><?php } ?><?php if (bp_is_active('friends') && bp_friend_get_total_requests_count() > 0): ?> <a>" data-width="210" title="<?php _e("Friend requests", 'kleo_framework');?>" class="kleo-friends-req has-tip tip-right"><?php echo bp_friend_get_total_requests_count(); ?></a><?php endif; ?> </div>
    								<ul style="list-style:none">
    								<?php 
    								if (!empty($profile_menu)) {
    									foreach($profile_menu as $prm):
    										echo $prm;
    									endforeach;
    								} 
    								?>
    								</ul>
    								<?php if (!empty($profile_menu)) { ?>
    									</div>        
    								<?php } ?>
    								
    							</li>
    							<?php endif; ?>
    							
    							
    
                            <?php else: ?>
    
    							
    
                                <?php if(get_option('users_can_register')) { ?>
    							
    							<?php } ?>
    
    						<?php endif; ?>
    					</ul>
    

    Then paste this to your style.css in child theme:

    COPY CODE
    
    .usermenuactive {
    color: #fff !important;
    display: block;
    font-size: 13px;
    font-weight: bold;
    padding: 0 15px;
    float: left;
    listy-style:none !important;
    }
    
    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 🙂

    in reply to: hide upload image name #39017
     Laura
    Moderator

    Hello, put this inside of style.css in child theme to hide rtmedia photo titles.

    COPY CODE
    
    .rtmedia-list-item .rtmedia-item-title {  
    	display: none;  
    }
    
    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 🙂

    in reply to: Problems with theme items. Help me #38819
     Laura
    Moderator

    Hello, check out the fontawesome icons here http://fortawesome.github.io/Font-Awesome/3.2.1/icons/ then the icon you choose, look for the UNICODE and add it to style.css in child theme:

    COPY CODE
    
    .icon-pinterest-sign: before {content: “\ f0d3″;}
    

    change UNICODE number for the “f0d3”

    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 🙂

    Attachments:
    You must be logged in to view attached files.
    in reply to: Problems with theme items. Help me #38674
     Laura
    Moderator

    Hello, working on a code for point 5, lets move to point 6 for the moment,
    Add this to your functions.php

    COPY CODE
    
    //change matching system
    add_action('after_setup_theme','kleo_my_match');
    function kleo_my_match() {
    global $kleo_config;
    $kleo_config['matching_fields']['starting_score'] = 1;
    //If we want to match by members sex. values: 0|1
    $kleo_config['matching_fields']['sex_match'] = 1;
    //required for initial match. If the sex preference matches it will continue to the specified fields below
    $kleo_config['matching_fields']['sex'] = 'I AM A FIELD NAME HERE';
    $kleo_config['matching_fields']['looking_for'] = 'LOOKING FOR FIELD NAME HERE';
    //sex percentage
    $kleo_config['matching_fields']['sex_percentage'] = 49;
    //single value fields like select, textbox,radio
    $kleo_config['matching_fields']['single_value'] = array (
        'FIELDNAME' => 20,
        'FIELDNAME' => 5,
    'FIELDNAME' => 5
    );
    //multiple values fields like multiple select or checkbox
    $kleo_config['matching_fields']['multiple_values'] = array (
        'FIELDNAME' => 10,
        'FIELDNAME' => 10,
    );
    }
    

    To setup this matching system, first you need to know what fields will count as matching for the users, you want that if they are from the same city it gives a 5% of match? those settings can be done from the code, as you see sex percentage is set to 49, but you can change it as you want, this means if a man wants a woman, and woman wants a man, they both will have 49% of match.

    To add more fields to match just copy
    ‘FIELDNAME’ => 10,
    And add it after the others depending on if the field is multiple value or simple value (As set in users > profile fields)

    You can also change the 10 for the % you want that field to count.

    Read the comments carefully and follow the steps 🙂

    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 🙂

    in reply to: Problems with theme items. Help me #38579
     Laura
    Moderator

    Hello, awesome! lets move to point 2.
    Replace the redirect code for this and change the url to your activity page

    COPY CODE
    
    if( !function_exists('custom_user_login_redirect') ) {
    function custom_user_login_redirect() {
    $redirect_to = 'http://mysite.com/activity';
    return $redirect_to;
    }
    add_filter('login_redirect','custom_user_login_redirect',10,3);
    }
    
    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 🙂

    in reply to: Profile page "header tabs" #38504
     Laura
    Moderator

    Hello, try to add this to your style.css in child theme

    COPY CODE
    
    .pricing-table kleo-level-6 {
    display:none !important;
    }
    .pricing-table kleo-level-5 {
    display:none !important;
    }
    
    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 🙂

    in reply to: Profile page "header tabs" #38472
     Laura
    Moderator

    Hello, for your questions:

    1. Try this solution https://buddypress.org/support/topic/how-to-make-certain-profile-fields-editable-by-admin-only/
    2. You can use this code https://archived.seventhqueen.com/forums/topic/membership-auto-in-registration#post-5411
    3. Same as above, create a membership plan for women and men, then use that code. https://archived.seventhqueen.com/forums/topic/membership-auto-in-registration#post-5411
    4. Use this code inside bp-custom.php of your plugins folder

    COPY CODE
    
    /**
     * Hide User Friends from Other Users
     * Only Admin or the user himself can see friends
     */
    add_action('bp_friends_setup_nav','bpdev_custom_hide_friends_if_not_self');
    function bpdev_custom_hide_friends_if_not_self(){
        if( bp_is_my_profile() || is_super_admin() )
            return ;
        bp_core_remove_nav_item( 'friends' );
    }
    
    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 🙂

    in reply to: Profile page "header tabs" #38452
     Laura
    Moderator

    Hello, for the first question, you need to create custom tabs in functions.php ,because when changing that name, the code doesnt find Looking for, so it doesnt shows it. You need the custom code to create it with your own names.

    For that just add this code to your functions.php in your child theme:
    Please read the comments inside of the code for more explanations.

    COPY CODE
    
    //Profile tabs
     
    add_action('after_setup_theme','kleo_my_custom_tabs');
    function kleo_my_custom_tabs() 
    {
        global $bp_tabs;
        $bp_tabs = array();
    /* This is the code you need to use as a base for each profile tab, the display changes if you use 
    Regular type or Cite tab, cite is a quote, bigger style for a lot of text, while regular is small
    When wanting to change the style, change it at type and class , citetab , regulartab 
    You can start to copy the custom code from here */
        $bp_tabs['CUSTOMGROUP'] = array(
                'type' => 'regular',
                'name' => __('CUSTOMGROUP', 'kleo_framework'),
                'group' => 'CUSTOMGROUP',
                'class' => 'regulartab'
        );
    /* To here, the above code is what you need to copy and paste to make new tabs.
    The order of the tabs changes as it is in the code. */
                
        $bp_tabs['Beskriv dig selv'] = array(
                'type' => 'regular',
                'name' => __('Beskriv dig selv', 'kleo_framework'),
                'group' => 'Beskriv dig selv',
                'class' => 'regulartab'
        );
        
        /* rtMedia tab - only if plugin installed */
        if (class_exists('RTMedia')) 
        {
            $bp_tabs['rtmedia'] = array(
                    'type' => 'rt_media',
                    'name' => __('Photos', 'kleo_framework'),
                    'class' => 'mySlider'
            );
        }
     
        /* Bp-Album tab - only if plugin installed */
        elseif (function_exists('bpa_init')) {
            $bp_tabs['bp-album'] = array(
                    'type' => 'bp_album',
                    'name' => __('My photos', 'kleo_framework'),
                    'class' => 'mySlider'
            );
        }    
        
    } 
    

    I have added the missing tab you needed, but for the rest you need to use the custom tab i added for each of them, remember both the name should be the exact name as the group in user fields.

    A quick list of what i explained in the code:

    1. Custom field base code (Add before } and after );

    COPY CODE
    
    $bp_tabs['CUSTOMGROUP'] = array(
                'type' => 'regular',
                'name' => __('CUSTOMGROUP', 'kleo_framework'),
                'group' => 'CUSTOMGROUP',
                'class' => 'regulartab'
        );
    

    2. The names should be the same as the are in Users > Profile Fields ( name=> doesnt really need to be the same, but better put it.)

    3. Styles, (in Attachment 1) You can easy change how the tabs will look by changing “type” and “class”:
    Tab Style 1 :

    COPY CODE
    
     $bp_tabs['CUSTOMGROUP'] = array(
                'type' => 'regular',
                'name' => __('CUSTOMGROUP', 'kleo_framework'),
                'group' => 'CUSTOMGROUP',
                'class' => 'regulartab'
        );
    

    Tab Style 2 :

    COPY CODE
    
    $bp_tabs['CUSTOMGROUP'] = array(
                'type' => 'cite',
                'name' => __('CUSTOMGROUP', 'kleo_framework'),
                'group' => 'CUSTOMGROUP',
                'class' => 'citetab'
        );
    

    4. Order of the tabs, it can be changed as it is in the code, if tab “Base” is up and “Style” is down, in the code, it will look like that in the website, but “Base” first, then next “Style”

    ___________________

    As for your second question, you can translate ALL by using Codestyling Localization Plugin with Buddypress and Sweetdate

    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 🙂

    Attachments:
    You must be logged in to view attached files.
    in reply to: Display only opposite gender #38416
     Laura
    Moderator

    Hello, try this and let me know if its working, remember Man and Woman should be the exact option as you have in I am field.

    COPY CODE
    
    
    class BP_Custom_User_Ids {
     
        private $custom_ids = array();
     
        public function __construct() {
     
            $this->custom_ids = $this->get_custom_ids();
     
            add_action( 'bp_pre_user_query_construct',  array( $this, 'custom_members_query' ), 1, 1 );
            add_filter( 'bp_get_total_member_count',    array( $this, 'custom_members_count' ), 1, 1 );
     
        }
     
    private function get_custom_ids() {
        global $wpdb;
     
        //figure out if the logged-in user is male or female
       $sex = xprofile_get_field_data( 403, bp_loggedin_user_id() );
     
       if ( $sex == 'Man' ) 
          $query = "SELECT user_id FROM {$wpdb->prefix}bp_xprofile_data WHERE field_id = 403 AND value = 'Man'";
       else 
          $query = "SELECT user_id FROM {$wpdb->prefix}bp_xprofile_data WHERE field_id = 403 AND value = 'Woman'";          
     
     
        $custom_ids = $wpdb->get_col( $query );
     
     
        return $custom_ids;
    }
     
        function custom_members_query( $query_array ) {
     
            $query_array->query_vars['include'] = $this->custom_ids;
     
        }  
     
        function custom_members_count ( $count ) {
     
            $new_count = count( $this->custom_ids );
            return $new_count;
     
        }
    }
     
    function custom_user_ids( ) {
     
        new BP_Custom_User_Ids ();
     
    }
     
    add_action( 'bp_before_directory_members', 'custom_user_ids' );
    
    
    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 🙂

    in reply to: Problems with theme items. Help me #38295
     Laura
    Moderator

    Hello, try to add this , i do not know if you use bp album or rtmedia so i added both:

    COPY CODE
    
    //my changes to profile tabs 
    add_action('after_setup_theme','kleo_my_custom_tabs');
    function kleo_my_custom_tabs() 
    {
    	global $bp_tabs;
    	$bp_tabs = array();
    	$bp_tabs['looking-for'] = array(
    			'type' => 'regular',
    			'name' =>  __('Sobre mim', 'kleo_framework'),
    			'group' => 'Sobre mim',
    			'class' => 'regulartab'
    	);
    
    	$bp_tabs['base'] = array(
    			'type' => 'regular',
    			'name' => __('Básico', 'kleo_framework'),
    			'group' => 'Básico',
    			'class' => 'regulartab'
    	);
    
    	/* rtMedia tab - only if plugin installed */
    	if (class_exists('RTMedia')) 
    	{
    		$bp_tabs['rtmedia'] = array(
    				'type' => 'rt_media',
    				'name' => __('Minhas fotos', 'kleo_framework'),
    				'class' => 'mySlider'
    		);
    	}
    
    	/* Bp-Album tab - only if plugin installed */
    	elseif (function_exists('bpa_init')) {
    		$bp_tabs['bp-album'] = array(
    				'type' => 'bp_album',
    				'name' => __('Minhas fotos', 'kleo_framework'),
    				'class' => 'mySlider'
    		);
    	}
    
    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 🙂

    in reply to: Problems with theme items. Help me #38166
     Laura
    Moderator

    Hello, try this code 🙂

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_member_data');
    function kleo_my_member_data() 
    {
        global $kleo_config;
        //this is the details field, right now it take the "About me" field content 
        $kleo_config['bp_members_details_field'] = 'Básico';
        //this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there
        $kleo_config['bp_members_loop_meta'] = array(
            'Eu sou',
    	'Relacionamento',
            'Idade',
    	'Cidade'
        );
    }
    
    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 🙂

    in reply to: Change Indicator color in Menu #37819
     Laura
    Moderator

    Hello, change it to this

    COPY CODE
    
    .label.alert {
    background-color: #f00056 !important;
    }
    .kleo-notifications .no-hover .label {
    background: #2ba6cb !important;
    }
    

    Let me know if its still not working

    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 🙂

    in reply to: Profile Text Opacity/Brightness Issue #37677
     Laura
    Moderator

    Hello, please add this to your style.css in your child theme

    COPY CODE
    
    .tabs.pill.custom dd a, .tabs.pill.custom li a {
    color: #FFF;
    }
    div.generic-button a.friendship-button {
    color: #FFFFFF;
    }
    div.generic-button a {
    color: #FFFFFF;
    }
    

    This also solves your Add friend, Public Message and Private Message buttons text not being visible too, you can change the color to chat you want.

    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 🙂

    in reply to: Problems with theme items. Help me #37636
     Laura
    Moderator

    Hello, to show member details in search just add this to your functions.php in your child-theme

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_member_data');
    function kleo_my_member_data() 
    {
        global $kleo_config;
        //this is the details field, right now it take the "About me" field content 
        $kleo_config['bp_members_details_field'] = 'NAMEOFTHEGROUPFIELD';
        //this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there
        $kleo_config['bp_members_loop_meta'] = array(
            'FIELD',
    	'FIELD',
            'FIELD',
    	'FIELD'
        );
    }
    

    Change NAME OF THE GROUP FIELD for the name of the group that has your fields, for example “Base” That name is in Users > Profile Fields (The one with the primary) For Example this is a sample of how could it be:

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_member_data');
    function kleo_my_member_data() 
    {
        global $kleo_config;
        //this is the details field, right now it take the "About me" field content 
        $kleo_config['bp_members_details_field'] = 'Basic';
        //this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there
        $kleo_config['bp_members_loop_meta'] = array(
            'I am',
    	'Looking for',
            'Age',
    	'City'
        );
    }
    
    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 🙂

    in reply to: Change Indicator color in Menu #37635
     Laura
    Moderator

    Hello, this can be changed, copy this to your child theme style.css and change the background color with the one you want.

    COPY CODE
    
    .label.alert {
    background-color: #f00056;
    }
    .kleo-notifications .no-hover .label {
    background: #2ba6cb;
    }
    
    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 🙂

    in reply to: Members Viewing Profile Pop Up #37476
     Laura
    Moderator

    Hello, you can use this plugin :https://wordpress.org/plugins/buddypress-who-clicked-at-my-profile/ or http://buddydev.com/plugins/recent-visitors-for-buddypress-profile/

    They show the recent visits in a widget (both) and under their profile (buddydev) so i would suggest to use the buddydev one, as it even has a menu for being invisible or not in the user settings, also i have made a css style for buddydev plugin if you choose to use it, the style is this :

    COPY CODE
    
    .recent-visitors h6 {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    width: 130px;
    line-height: 2.3em;
    overflow: hidden;
    clear: left;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
    }
    .recent-visitors img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.12);
    }
    .shortcode-recent-visitors img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
    }
    

    For the live notification if someone is viewing your profile, i do not know about any plugin that does this, even i would suggest to not use if it exist, as it request too much times to your server if it has lot of users.

    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 🙂

    in reply to: Changing BASE title #37105
     Laura
    Moderator

    Hello, when you want to add a new function just add it on top of everything and after this

    COPY CODE
    
    <?php
    /**
    * @package WordPress
    * @subpackage Sweetdate
    * @author SeventhQueen <themesupport@seventhqueen.com>
    * @since Sweetdate 1.0
    */
    
    /**
    * Sweetdate Child Theme Functions
    * Add extra code or replace existing functions
    */
    
    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 🙂

    in reply to: Canot tranlate text menu tap "Profile" #37104
     Laura
    Moderator

    Hello, try to add this to your functions.php in child theme

    COPY CODE
    
    function mb_profile_menu_tabs(){
    global $bp;
    $bp->bp_nav['profile']['name'] = 'NAMETOCHANGE';
    $bp->bp_options_nav['settings']['profile']['name'] = 'NAMETOCHANGE';
    }
    add_action('bp_setup_nav', 'mb_profile_menu_tabs', 201);
    
    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 🙂

    in reply to: Changing BASE title #37059
     Laura
    Moderator

    Hello, if you have your own tabs in your child theme functions.php ,change this

    COPY CODE
    
       $bp_tabs['base'] = array(
                'type' => 'regular',
                'name' => __('About me', 'kleo_framework'),
                'group' => 'Base',
                'class' => 'regulartab'
        );
    

    And base for the new name, if you dont have it you can use this code:
    https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-image

    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 🙂

Viewing 40 posts - 2,721 through 2,760 (of 2,796 total)

Log in with your credentials

Forgot your details?