Forum Replies Created

Viewing 40 posts - 1,001 through 1,040 (of 2,796 total)
  • Author
  • in reply to: Group description on mobile portrait view #159449
     Laura
    Moderator

    Hello, please try by adding this to style.css of child theme found at Appearance > Edite and also At your website files at wp-content/themes/kleo-child

    COPY CODE
    
    .buddypress div#item-header div#item-header-content p:first-child {
        text-overflow: initial !important;
        overflow: initial !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: Showing username instead of public name on profile? #159444
     Laura
    Moderator

    Hello, do you mean the @name ? that is for mentions, you can hide that with css by adding this to style.css of child theme:

    COPY CODE
    
    h4.user-nicename.hover-tip.click-tip {
        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: Designing Contact Forms 7 #159431
     Laura
    Moderator
    Not marked as solution
    in reply to: Singe post gap between image and text #159418
     Laura
    Moderator

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

    COPY CODE
    
    .article-content {
        margin-top: 50px;
    }
    
    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: Line Highte in Paragraphs #159413
     Laura
    Moderator

    Hello, i am very sorry for the delay, please try by adding this to style.css of child theme, then edit it as you prefer 🙂

    COPY CODE
    
    p {
        line-height: 2 !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 🙂

     Laura
    Moderator

    Hello, please try by adding this to style.css of child theme found at your website files wp-content/themes or at Appearance > Edit of wordpress admin dashboard

    COPY CODE
    
    #horizontal_search input {
        float: left !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: Hiding online status? #159214
     Laura
    Moderator

    Hello, that is the last activity, the online status is the small circle at the avatar 🙂
    Here is the css to hide the last activity, just add it to style.css of child theme, at Appearance > Editor or at your website files

    COPY CODE
    
    span.activity {
        display: none !important;
    }
    

    Let me know if that 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 cover #159212
     Laura
    Moderator

    Hello, please try by adding this to style.css of child theme, found at wp-content/themes/kleo-child or at Appearance > Editor at wordpress admin panel

    COPY CODE
    
    div#item-meta {
        background: rgba(0, 0, 0, 0.32);
    }
    

    Let me know if that 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: Can I hide the left menu for not logged in users #159207
     Laura
    Moderator

    Hello, it can be done with some custom codes, please try the following:
    1. Go to your website files using FTP or your hosting file manager
    2. Find wp-content/themes/buddyapp-child (you must have child theme installed and activated)
    3. Find functions.php and edit it
    4. Add the followng below */

    COPY CODE
    
    
    if( is_user_logged_in() ) {  } else {
    echo '
    <style>
    div#sidemenu-wrapper {
        display: none;
    }
    #page-wrapper {
        padding-left: 0px !important;
    }
    header#header {
        padding-left: 0px !important;
    }
    </style>
    ';
    }
    

    Let me know if that 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: Chaging Font Size in Kleo Post Carousel #159202
     Laura
    Moderator
    Not marked as solution
    in reply to: WooCommerce Billing Details Field #159151
     Laura
    Moderator

    Hello, please try by adding this to functions.php of child theme found at wp-contents/themes at FTP or your hosting file manager 🙂

    COPY CODE
    
    add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );
     
    function custom_override_checkout_fields( $fields ) {
        unset($fields['billing']['billing_company']);
        unset($fields['billing']['billing_address_1']);
        unset($fields['billing']['billing_address_2']);
        unset($fields['billing']['billing_city']);
        unset($fields['billing']['billing_postcode']);
        unset($fields['billing']['billing_country']);
        unset($fields['billing']['billing_state']);
        unset($fields['billing']['billing_phone']);
        unset($fields['order']['order_comments']);
        unset($fields['billing']['billing_address_2']);
        unset($fields['billing']['billing_postcode']);
        unset($fields['billing']['billing_company']);
        unset($fields['billing']['billing_city']);
        return $fields;
    }
    
    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 size too small #159082
     Laura
    Moderator
    Not marked as solution
    in reply to: Resize background image #159067
     Laura
    Moderator

    Hola, para el avatar prueba este código 🙂

    COPY CODE
    
    .kleo-menu img.kleo-rounded {
        margin-top: -15%;
    }
    

    Respecto al fondo, no veo ningún video, podrías pasarme un enlace de las páginas donde ocurre el problema?

    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: Shdow behind the info? #159001
     Laura
    Moderator

    Hello, please try the following css and let me know 🙂

    COPY CODE
    
    #item-meta p {
        text-shadow: 2px 2px black;
    }
    
    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: How to remove social links from my wishlist page? #158887
     Laura
    Moderator

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

    COPY CODE
    
    .share-links.kleo-wishlist-share {
        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: Resize background image #158808
     Laura
    Moderator

    Hola, sobre el icono prueba a añadir este código a style.css del child theme

    COPY CODE
    
    i.icon.icon-live-notifications:before {
        font-size: 22px;
        margin-top: 34px !important;
    }
    

    Respecto a los otros problemas podrías compartir unas capturas de pantalla para que pueda ver el problema?

    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: Button Customizing #158718
     Laura
    Moderator

    Hello, for the friends button try to add this to style.css of child theme or at Appearance > Editor 🙂

    COPY CODE
    
    .friendship-button {
        background: black !important;
    }
    

    Can you share access to your site so i can check it out?

    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

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

    COPY CODE
    
    .summary.entry-summary.col-sm-6 {
        width: 100% !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 🙂

     Laura
    Moderator

    Hello 🙂 As its more related to buddypress its not actually a theme feature, i can help you edit that but i would need access to your website and ftp, as its not live yet that wold be difficult, so the files are:
    kleo/buddypress/buddypress-functions.php
    Copy this file
    plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single/blogs.php
    To the child theme so it looks like this:
    wp-content/themes/kleo-child/buddypress/members/single/blogs.php

    Edit the file and you can try by adding this function to it

    COPY CODE
    
    function bp_legacy_theme_group_create_button( $title ) {
    	return $title . ' ' . bp_get_group_create_button();
    }
    

    Let me know if that helps 🙂

    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 Single Post Tiles #158638
     Laura
    Moderator

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

    COPY CODE
    
    h1.page-title {
        display: none !important;
    }
    

    Remember to clean cache if you have a cache plugin 🙂

    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

    Hola, prueba con este código

    COPY CODE
    
    .directory span.kleo-online-status.hover-tip.click-tip {
        margin-left: -12% !important;
        margin-top: -25% !important;
    }
    

    Dime si funciona 🙂

    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: theme has yellow boxes showing #158554
     Laura
    Moderator
    Not marked as solution
     Laura
    Moderator

    Hola 🙂
    Prueba añadiendo el siguiente código en style.css del child theme

    COPY CODE
    
    span.kleo-online-status.hover-tip.click-tip {
        margin-left: -12% !important;
        margin-top: -25% !important;
    }
    

    No soy española pero vivo en españa 🙂

    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: Expand widget area #158493
     Laura
    Moderator

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

    COPY CODE
    
    .inner-content.widgets-container {
        padding: 0px !important;
        width: 400px !important;
    }
    .sidebar.sidebar-main.col-sm-3.sidebar-right {
        width: 400px !important;
    }
    

    Let me know if it helps 🙂

    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 the background color of a KLEO post #158459
     Laura
    Moderator
    Not marked as solution
    in reply to: Change top-bar background color #158446
     Laura
    Moderator

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

    COPY CODE
    
    .top-bar 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: Trouble changing background color of bottom footer #158436
     Laura
    Moderator

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

    COPY CODE
    
    #socket {
        background: black !important;
    }
    #socket .row {
        background: black !important;
    }
    #socket .gap-10 {
        background: black !important;
    }
    #socket p {
        background: black !important;
    }
    #socket .col-sm-12 {
        background: black !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 AREA #158428
     Laura
    Moderator

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

    COPY CODE
    
    #item-header-avatar {
        margin-bottom: 50px !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: spaces between rows after theme update #158427
     Laura
    Moderator
    Not marked as solution
    in reply to: Change top-bar background color #158375
     Laura
    Moderator

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

    COPY CODE
    
    .social-header.header-color {
        background: black !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 AREA #158371
     Laura
    Moderator

    Hello, i can hide it with css but cant replace it 🙂
    here the css

    COPY CODE
    
    h4.user-nicename.hover-tip.click-tip {
        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: CSS PRoblem #158363
     Laura
    Moderator

    Hello, please add this to style.css of child theme

    COPY CODE
    
    .kleo-facebook-connect.btn.btn-default {
        background-color: blue !important;
        border: blue !important;
    }
    

    For the other sections can you share access to that page?

    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: forgotten password link #158278
     Laura
    Moderator

    Hello, hmm well you could add a text widget below it and add a link to the wp-login password recovery, this one http://yourwebsite.com/wp-login.php?action=lostpassword

    At Appearance > Widgets add the text widget and this

    COPY CODE
    
    <a href="http://yourwebsite.com/wp-login.php?action=lostpassword">Lost your password?</a>
    
    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 the background color of a KLEO post #158272
     Laura
    Moderator
    Not marked as solution
    in reply to: I want create private profil #158270
     Laura
    Moderator

    Hello, i do not understand what do you mean with the search box, can you explain a bit more? 🙂
    For the videos please check https://rtmedia.io/docs/features/privacy/

    To center the form you can use this css, add it to style.css of child theme, or at Appearance > Edit

    COPY CODE
    
    .form-wrapper {
        margin-left: 75% !important;
    }
    

    At Pages you can edit any page and restrict it for a membership 🙂

    Please make sure that your members have their profile fields filled so they appear at the search 🙂 Also they need to login at least once to count

    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: Colors on hovering #158268
     Laura
    Moderator

    Hello, try this 🙂

    COPY CODE
    
    .icon-chevron-right:hover:before {
        color: red !important;
    }
    

    That is for quick profile search

    For the hover, do you mean the blog or the pagination?

    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: Feature Image issues #158232
     Laura
    Moderator
    Not marked as solution
    in reply to: Icon size #158055
     Laura
    Moderator

    Hello, for the emoji, here is the css 🙂

    COPY CODE
    
    img.emoji {
        height: 20px !important;
        width: 20px !important;
    }
    

    About the logo, it may be related to the browser, did you test using incognito or another browser?

    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: Top Social Bar colors #158053
     Laura
    Moderator
    Not marked as solution
Viewing 40 posts - 1,001 through 1,040 (of 2,796 total)

Log in with your credentials

Forgot your details?