Forum Replies Created

Viewing 40 posts - 161 through 200 (of 2,796 total)
  • Author
  • in reply to: No search results #208549
     Laura
    Moderator
    Not marked as solution
    in reply to: Reduce size of Nav items #208489
     Laura
    Moderator
    Not marked as solution
    in reply to: change the color of the side menu #208452
     Laura
    Moderator

    Hello, just add this to style.css of child theme to change the color of the text

    COPY CODE
    
    ul#menu-kleonavmenu-2 a {
        color: red !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: members profile fields are not completely visible. #208447
     Laura
    Moderator
    Not marked as solution
    in reply to: Just Purchased and Questions #208304
     Laura
    Moderator
    Not marked as solution
    in reply to: theme update error #207961
     Laura
    Moderator

    Hello, here the css

    COPY CODE
    
    .label {
        background: #7f00c4 !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, you can try the following:
    1- Login to your website ftp or file manager
    2- Find wp-content/themes/kleo
    3- Download the file named single.php
    4- Go to wp-content/themes/kleo-child
    5- Paste the file there

    Edit the file
    Find:

    COPY CODE
    
    <?php
    	if ( $related == 1 ) {
    		get_template_part( 'page-parts/posts-related' );
    	}
    	?>
    
    	<?php
    	if ( sq_option( 'post_navigation', 1 ) == 1 ) :
    		// Previous/next post navigation.
    		kleo_post_nav();
    	endif;
    	?>
    
    	<!-- Begin Comments -->
    	<?php
    	if ( comments_open() || get_comments_number() ) {
    		comments_template( '', true );
    	}
    	?>
    	<!-- End Comments -->
    

    Replace with

    COPY CODE
    
    	<!-- Begin Comments -->
    	<?php
    	if ( comments_open() || get_comments_number() ) {
    		comments_template( '', true );
    	}
    	?>
    	<!-- End Comments -->
    <?php
    	if ( $related == 1 ) {
    		get_template_part( 'page-parts/posts-related' );
    	}
    	?>
    
    	<?php
    	if ( sq_option( 'post_navigation', 1 ) == 1 ) :
    		// Previous/next post navigation.
    		kleo_post_nav();
    	endif;
    	?>
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket 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: Forum Search not working #207721
     Laura
    Moderator

    Hello please follow these steps to enable wp debug:
    -Connect to your server by FTP or using the file manager at the cPanel
    -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.

    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: Header Banner content display in sticky #207680
     Laura
    Moderator

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

    COPY CODE
    
    .header-banner {
        display: block !important;
    }
    

    I am not sure if it would require a few adjustments as i do not know the banner size

    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 loop #207572
     Laura
    Moderator

    Here the fix, add to style.css of child theme, i think its related to custom css you added

    COPY CODE
    
    @media screen and (max-width: 600px) {
    div#item-body {
        margin-left: 0px !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: disable TAG function #207393
     Laura
    Moderator
    Not marked as solution
    in reply to: Remove dropdown menu on Activity page. #207392
     Laura
    Moderator

    Hello, if you add this to style.css of child theme it should fix the height

    COPY CODE
    
    select#activity-filter-by {
        height: 40px !important;
    }
    

    But if you add this instead it will hide it

    COPY CODE
    
    select#activity-filter-by {
        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: Help me please with the lines.. #207323
     Laura
    Moderator
    Not marked as solution
    in reply to: disable TAG function #207320
     Laura
    Moderator
    Not marked as solution
    in reply to: Editing Contact Form 7 Select tag #207294
     Laura
    Moderator
    Not marked as solution
    in reply to: Register page without sidebar #207253
     Laura
    Moderator

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

    COPY CODE
    
    .registration aside.four.columns {
        display: none !important;
    }
    .registration #main .row {
        width: 100% !important;
        margin: 0 auto !important;
    }
    .registration div#main-content {
        float: none !important;
        margin: 0 auto !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: Editing Contact Form 7 Select tag #207217
     Laura
    Moderator
    Not marked as solution
    in reply to: theme update error #207215
     Laura
    Moderator

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

    COPY CODE
    
    span#pmpro_submit_span:first-child {
        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: Members loop #207186
     Laura
    Moderator

    Hello, try

    COPY CODE
    
    .profile form#members-directory-form {
        background: red !important;
    }
    .profile div#item-body {
        padding-left: 0px !important;
        margin-left: 248px;
    }
    .profile .item-wrap {
        background: 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: Help me please with the lines.. #207137
     Laura
    Moderator
    Not marked as solution
    in reply to: Mixed Queries (Registration, Login ) #207132
     Laura
    Moderator

    Hello 🙂
    Just copy the form shortcode

    COPY CODE
    
    [kleo_register_form profiles=1 title="Create an Account" details="Registering for this site is easy, just fill in the fields below and we will get a new account set up for you in no time."]
    

    2- Only the BASE profile fields appear at registration, at Users – Profile fields
    3- (BuddyPress) Log In is the only widget right now to show user profile ( once they login )
    4- You will need to play with Elementor builder to build the category list in a new 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: Members loop #207130
     Laura
    Moderator

    Hello 🙂
    1- Yes!
    Here

    COPY CODE
    
    
    .profile .main-content.container-fluid {
        background: red !important;
    }
    

    If it doesnt work please share access
    2- Yes, use this

    COPY CODE
    
    ul#members-list .item-wrap {
        background: 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: e-mail bar and registration button #207128
     Laura
    Moderator

    Hello 🙂
    1- Add this to style.css of child theme and to quick css of theme options

    COPY CODE
    
    .top-links {
        background: red !important;
        border-color: white !important;
        color: white !important;
    }
    

    Edit the codes as you prefer
    2- Make sure you have the register page selected at Settings – Buddypress – Pages, once the user fills the modal register at the homepage, they will be redirected to the register page

    This register page is not a normal page so you can’t modify it, what you can do is add profile fields to it by adding them to the BASE group of fields at Users – Profile 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: Help me please with the lines.. #207119
     Laura
    Moderator
    Not marked as solution
    in reply to: Sorting group members #207082
     Laura
    Moderator
    Not marked as solution
    in reply to: Group’s page buttons are looking strange #207076
     Laura
    Moderator

    Hello, this css should fix it

    COPY CODE
    
    .groups div#item-nav {
        margin-top: -5% !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: Help me please with the lines.. #207074
     Laura
    Moderator
    Not marked as solution
    in reply to: Styling media #207028
     Laura
    Moderator

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

    COPY CODE
    
    .rtmedia-container #drag-drop-area label {
        display: block !important;
    }
    .rtm-album-privacy label {
        color: #aaaaaa;
        font-size: 20px;
    }
    
    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 design #206995
     Laura
    Moderator

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

    COPY CODE
    
    @media only screen and (max-width: 940px) {
    div#object-nav li {
        padding-top: 80px;
        margin-top: -15%;
    }
    div#subnav {
        padding-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: Header settings and Elementor #206992
     Laura
    Moderator
    Hello :) All codes should be added to style.css of child theme 1- Here, where you see "to top" it means the gradient direction, change to bottom, to right or to left
    div#header {
        background: linear-gradient(to top, rgba(19,19,19,1) 0%, rgba(79,8,8,1) 53%, rgba(189,2,2,1) 100%);
    }
    
    rgba(19,19,19,1) are the color codes 2- Here form css
    .form-header {
        border-left: 10px solid rgb(163, 3, 3) !important;
        border-top: 10px solid rgb(163, 3, 3) !important;
        border-right: 10px solid rgb(163, 3, 3) !important;
    }
    .form-search, .form-header, div.alert-box, div.pagination span.current {
        background: rgb(163, 3, 3) !important;
    }
    .form-search {
        border-left: 10px solid rgb(163, 3, 3) !important;
        border-right: 10px solid rgb(163, 3, 3) !important;
    }
    .form-search .notch {
        border-top: 10px solid #a30303 !important;
    }
    .form-search.custom input[type="text"], .form-search.custom input[type="password"] {
        border: 1px solid #a30303 !important;
    }
    .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: #8c1818 !important;
    }
    .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;
        background-color: #070201 !important;
        border: 1px solid #070000 !important;
    }
    
    in reply to: Help me please with the lines.. #206920
     Laura
    Moderator
    Not marked as solution
    in reply to: dynamic side menu not handy #206780
     Laura
    Moderator

    Hello, about super cache question: that is when i make modifications that don’t appear when I refresh pages, that’s when I need to empty cache isn’t it?

    Yes, super cache is much better because it doesnt use to have cache issues but total cache does
    Sorry i do not speak french.
    Add this to style.css of child theme and to quick css of theme options to fix the menu open to left issue

    COPY CODE
    
    .kleo-toggle-submenu.dropdown-menu.sub-menu {
        left: -190% !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: Translation of certain sections #206749
     Laura
    Moderator

    Hola, prueba con este css, agregalo a style.css y a quick css

    COPY CODE
    
    select#activity-filter-by {
        height: 30px !important;
    }
    

    Para lo de las sugerencias buddypress no tiene ese tipo de funcion por lo que no esta disponible

    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: pricing table content editing #206743
     Laura
    Moderator

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

    COPY CODE
    
    .extra-description {
        padding: 0px !important;
    }
    .extra-description li.list-group-item {
        color: grey !important;
        position: absolute;
        width: 90% !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: home search #206670
     Laura
    Moderator

    Hello, maybe with a small css, try by adding this to style.css of child theme

    COPY CODE
    
    body.logged-in .form-footer {
        display: block !important;
    }
    body.logged-in span.notch {
        display: block !important;
    }
    .form-footer {
        display: none;
    }
    span.notch {
        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: Members loop #206657
     Laura
    Moderator

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

    COPY CODE
    
    .directory.members .main-content.container-fluid {
        background: red !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: Sidebar only on register page and not on other pages #206636
     Laura
    Moderator
    Not marked as solution
    in reply to: Height problem #206613
     Laura
    Moderator

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

    COPY CODE
    
    .form-wrapper .carousel-profiles li {
        width: 94px !important;
        height: 94px !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: Dropdown menu color #206610
     Laura
    Moderator
    Not marked as solution
    in reply to: Help me please with the lines.. #206556
     Laura
    Moderator
    Not marked as solution
Viewing 40 posts - 161 through 200 (of 2,796 total)

Log in with your credentials

Forgot your details?