Forum Replies Created

Viewing 40 posts - 1,681 through 1,720 (of 2,796 total)
  • Author
  • in reply to: my site is down #126666
     Laura
    Moderator
    Not marked as solution
    in reply to: scroll down popup #126662
     Laura
    Moderator

    Hello, sorry for the misunderstanding, you can add a button to the slider that links to a title or header with an id, for example
    At visual composer, you will see an element called Heading title, if you add it you will see a field to add an ID, for example “scroll” ( without the “” )

    Now at revolution slider, you add a button with an icon and add the url like http://yourdomain.com/#scroll or if you use code,

    COPY CODE
    
    <a href="http://yourdomain.com/#scroll"></a>
    

    Basically, add the url with the id #scroll at the end. This will make the button scroll down to the element with that id

    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 profile fields display cut off #126655
     Laura
    Moderator
    Hello, For the tabs, try this, add it to style.css of child theme
    #buddypress div.profile .dl-horizontal dt {
        width: 100% !important;
        text-align: left !important;
    }
    #buddypress div.profile .dl-horizontal dd {
        margin: 0 auto !important;
    }
    
    in reply to: Videos won’t upload #126651
     Laura
    Moderator

    Please update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.

    If this is useless please follow these steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    Cheers

    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: Customised pricing table #126637
     Laura
    Moderator

    Hello, if you mean the icon and color for stuff that are not included at a level, add this to style.css of child theme

    COPY CODE
    
    .no-item:before {
        font: 13px 'FontAwesome';
        content: "\f058";
        color: #c20000;
        margin-right: 6px;
    }
    

    And use this to add the stuff

    COPY CODE
    
    <li class=no-item>Unlimited Live Chat </li>
    <li class=no-item>Premium Support </li>
    
    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: Logo too small #126633
     Laura
    Moderator

    Hello, add this to style.css of child theme

    COPY CODE
    
    .logo img {
        max-height: 100% !important;
        max-width: inherit;
        width: 260px;
        margin-left: -13%;
        height: 72px;
    }
    

    And change your logo size to width 260px and heght 72px of just change the code as you prefer

    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: Breadcrumb path change #126629
     Laura
    Moderator

    Hello, try by adding this to bp-custom.php found wp-content/bp-custom.php

    COPY CODE
    
    define ( 'BP_MEMBERS_SLUG', 'users' );
    

    Change users for your slug
    Let me know if it works

    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 Fields #126620
     Laura
    Moderator

    Hello just add this to style.css of child theme

    COPY CODE
    
    .search-body p {
        color: red;
    }
    
    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: Problem with pages and articles #126615
     Laura
    Moderator
    Not marked as solution
    in reply to: size field create member #126264
     Laura
    Moderator
    Hello, hola :) For the tabs, try this, add it to style.css of child theme
    #buddypress div.profile .dl-horizontal dt {
        width: 100% !important;
        text-align: left !important;
    }
    #buddypress div.profile .dl-horizontal dd {
        margin: 0 auto !important;
    }
    
    For the other question, please check https://buddydev.com/buddypress/exclude-users-from-members-directory-on-a-buddypress-based-social-network/
     Laura
    Moderator
    Not marked as solution
    in reply to: Registration page, Logo link,… #126251
     Laura
    Moderator

    Hello, for 1- is this

    COPY CODE
    
    add_action('bp_ajax_querystring','sq7_radu_exclude_users',20,2);
    
    function sq7_radu_exclude_users($qs=false,$object=false){
        //list of users to exclude
    
        $excluded_user = bbp_get_current_user_id();//comma separated ids of users whom you want to exclude
    
        if($object!='members')//hide for members only
            return $qs;
    
        $args=wp_parse_args($qs);
    
        //check if we are searching for friends list etc?, do not exclude in this case
        if(!empty($args['user_id'])||!empty($args['search_terms']))
            return $qs;
    
        if(!empty($args['exclude']))
            $args['exclude']=$args['exclude'].','.$excluded_user;
        else
            $args['exclude']=$excluded_user;
    
        $qs=build_query($args);
    
        return $qs;
    
    }
    

    At functions.php of your child theme
    2- Try adding this to style.css of child theme

    COPY CODE
    
    .description {
        margin-top: -25%;
        position: absolute;
    }
    

    3- Copy the header.php of main theme and paste it at child theme, then edit it and find

    COPY CODE
    
    <a>"><img />" width="294" height="108" alt="<?php bloginfo('name'); ?>"></a>
    

    Replace it with

    COPY CODE
    
    <img />" width="294" height="108" alt="<?php bloginfo('name'); ?>">
    

    4- I suggest to use chrome developer tools to find the class and ids of the elements that you want to edit then create a style for them and paste it at style.css of child theme

    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: problem in strucutre of login form in sidebar. #126117
     Laura
    Moderator
    Not marked as solution
    in reply to: Can’t join group on group detail page #126068
     Laura
    Moderator

    Please update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.

    If this is useless please follow these steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    Cheers

    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: Membership Tier Issue #126063
     Laura
    Moderator
    Not marked as solution
    in reply to: Top left header menu / submenu limit limit #126053
     Laura
    Moderator
    Not marked as solution
    in reply to: Menu set up #126001
     Laura
    Moderator
    Not marked as solution
    in reply to: how to remove this space #125957
     Laura
    Moderator
    Not marked as solution
     Laura
    Moderator
    Not marked as solution
    in reply to: Menu set up #125821
     Laura
    Moderator
    Hello, for 1, go to Appearance > Menus and if you do not have the KLEO section at the sidebar, check at the top of the page to find "Screen Options" , open it and check KLEO Now at the KLEO section of he menu sidebar, add Live Notifications and My Account For Live Notifications, Choose the icon "Megaphone" and next to the icon selector choose "Just the icon" For My Account you do not need to change it 2- You can change thesize with this css
    div#item-nav li a:before {
        font-size: 24px !important;
    }
    
    Change 24 to any number to change the size 3- Which ones do you want to change?
    in reply to: sticky menu on mobile #125809
     Laura
    Moderator
    Not marked as solution
    in reply to: Search Icon #125710
     Laura
    Moderator
    Not marked as solution
    in reply to: Buttons #125707
     Laura
    Moderator

    Hello, just add this to style.css of child theme, it should change it 🙂

    COPY CODE
    
    a.tiny.button.radius.btn-logout {
        font-size: 14px;
    }
    
    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 🙂

     Laura
    Moderator
    Not marked as solution
    in reply to: Groups Header Colour – how to change #125438
     Laura
    Moderator
    Hello, you can change that by adding this to style.css of child theme, then edit it as you wish :)
    .buddypress #header-cover-image {
        background-color: black;
    }
    div#item-header div#item-meta {
        color: white !important;
    }
    
    in reply to: Full Width pages #125435
     Laura
    Moderator
    Not marked as solution
    in reply to: Search Icon #125426
     Laura
    Moderator
    Not marked as solution
    in reply to: How can i block my sidebar #125425
     Laura
    Moderator
    Not marked as solution
    in reply to: Unwanted auto scroll #125370
     Laura
    Moderator
    Not marked as solution
    in reply to: Activity profile images not displaying properly #125356
     Laura
    Moderator
    Hello, seems to be a css issue, just add this to style.css of child theme
    .activity-list span.avatar, #whats-new-avatar, #activity-stream div.avatar, #activity-stream div.activity-avatar {
        height: auto !important;
        width: auto !important;
    }
    
    in reply to: Buddypress comments disappearing #125351
     Laura
    Moderator
    Not marked as solution
     Laura
    Moderator
    Not marked as solution
    in reply to: Form to right side of slider #125120
     Laura
    Moderator
    Hello, to move the search / register form to the right side of the screen, add this css to style.css of child theme
    .home .five.columns {
        float: right;
    }
    
    in reply to: Members page info #125109
     Laura
    Moderator
    Hello, here: You can change the info that displays under the name and the details field by adding this to your sweetdate-child/functions.php file:
    //members page fields 
    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'
        );
          
    }
    
    Also if the fields don't appear add this line, reload the members page and you can remove the line after that(we have added a caching on those fields for better performance):
    delete_transient( 'kleo_bp_meta_fields' );
    
    Just replace those profile field names in the code with our one custom ones. Let me know if it helps :)
    in reply to: Custom member profile page #125105
     Laura
    Moderator
    Not marked as solution
     Laura
    Moderator
    Not marked as solution
     Laura
    Moderator

    Hello, try adding this to style.css of child theme

    COPY CODE
    
    ul#menu-kleonavmenu a {
        color: black;
    }
    @media (max-width: 991px) {
    ul#menu-kleonavmenu a {
        color: white !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: Text under profile in Member’s directory page #124944
     Laura
    Moderator
    Not marked as solution
     Laura
    Moderator
    Not marked as solution
    in reply to: sweetdate options/buddypress /Items #124826
     Laura
    Moderator
    Hello, this is the css you need for the profile tabs
    #profile .generic-button a, .tabs.pill.custom dd:not(.active) a, #profile .callout, .regulartab dt, .regulartab dd {
        background: rgba(255,255,255,0.6);
        color: #ffffff;
    }
    
Viewing 40 posts - 1,681 through 1,720 (of 2,796 total)

Log in with your credentials

Forgot your details?