Forum Replies Created

Viewing 40 posts - 881 through 920 (of 2,990 total)
  • Author
  • in reply to: Search – Change size of dropdown #165395
     Radu
    Moderator

    Hi,

    Use this CSS to increase the dropdown width

    COPY CODE
    
    form.custom div.custom.dropdown.open.expand ul {
        min-width:305px !important;
    }
    

    This will be applied for all dropdowns cuz there is no way to select only that.

    The universities field cannot be turned into autocomplete cuz the autocomplete it’s specific for city/location.

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: CONTACT FORM 7 REDIRECT #165384
     Radu
    Moderator

    Hi,

    Just tested and it works,

    If you will add a form to a new page or existing one the alert it’s shown

    Inside the theme options JS I have this

    COPY CODE
    
    <script>
    
    jQuery(document).ready(function() {
    document.addEventListener( 'wpcf7submit', function( event ) {
        if ( '10032' == event.detail.contactFormId ) {
            alert( "The contact form ID is 10032." );
            // do something productive
        }
    }, false );
    });
    
    </script>
    
    
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    Try to add this CSS to quick CSS area

    COPY CODE
    
    
    #undefined-sticky-wrapper {
        max-height: 110px;
    }
    
    

    Let me know
    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Internet Explorer #165297
     Radu
    Moderator

    Hi,

    For the scroll issue and sticky footer, try to update the theme to latest version we have updated the scrolling logic and sticky footer.

    For the BuddyPress iccons use this css

    COPY CODE
    
    #buddypress div#item-nav ul li a {
        font-size:20px !important;
    }
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Post Button In “Groups” #165266
     Radu
    Moderator
    Not marked as solution
    in reply to: questions #165262
     Radu
    Moderator
    Not marked as solution
    in reply to: questions #165261
     Radu
    Moderator
    Not marked as solution
    in reply to: Embedded Video too Large #165251
     Radu
    Moderator

    Hi,

    Try to use this instead

    For mobile

    COPY CODE
    
    @media(max-width:600px) {
        .mejs-container embed,iframe,object,video {max-width: 100%;max-height: 350px;}
    }
    

    For desktop

    COPY CODE
    
    
    @media(min-width:600px) {
        .mejs-container embed,iframe,object,video {max-width: 100%;max-height: 550px;}
    }
    
    

    Adjust the 300 and 550 values for your needs

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: CONTACT FORM 7 REDIRECT #165029
     Radu
    Moderator

    I see there it’s an IF condition,

    Try to put the snippet as authr has provided as example

    COPY CODE
    
    <script>
    document.addEventListener( 'wpcf7mailsent', function( event ) {
        location = 'http://example.com/';
    }, false );
    </script>
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: making red cross line on old prices #165019
     Radu
    Moderator

    Use this CSS

    COPY CODE
    
    
    ul.pricing-table li.price {
    position:relative;
    }
    
    ul.pricing-table li.price:before {border-bottom:2px solid red !important;content:" ";width: 60%;display:inline-block;top:40px;position:absolute !important;}
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Right search form arrangement #165016
     Radu
    Moderator

    Hi

    Just add this CSS

    COPY CODE
    
    .home .five.mobile-four.columns {
        float: left !important; 
    }
    
    .home .seven.mobile-four.columns.kleo-selectbox {
         float: right !important; 
    }
    
    .home .twelve.columns .row > .five.columns {float:right;}
    
    
    
    .home .mobile-one.columns {
        float: left !important;
    }
    
    .home .mobile-one.columns label.right {
        text-align: left;
    }
    

    Wp-admin -> theme options -> Styling Options -> Quick css

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Drop Down Menu Edits #165009
     Radu
    Moderator

    I see,

    Just use this css

    COPY CODE
    
    .kleo-main-header li.open ul.dropdown-menu {
        opacity: 1 !important;
        visibility:visible; 
    }
    
    .kleo-main-header li ul.dropdown-menu {
        opacity: 0 !important;
        display:block;
        visibility:hidden;
        transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
    
    }
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: upload button missing on activity and profile #164939
     Radu
    Moderator

    hi,

    I cannot login usiing those credentials, please try this css

    COPY CODE
    
    #buddypress #whats-new-options {
        height: auto !important;
        overflow: hidden;
        display:block !important;
        visibility:visible !important;
    }
    

    Let me know

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    In the first instance try to increase the filter priority and check again.

    from

    COPY CODE
    
    add_filter('woocommerce_login_redirect', 'login_redirect', 10, 2);
    

    to

    COPY CODE
    
    add_filter('woocommerce_login_redirect', 'login_redirect', 99, 2);
    

    Let me know

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: questions #164928
     Radu
    Moderator
    Not marked as solution
    in reply to: Simple Question. #164915
     Radu
    Moderator
    Not marked as solution
    in reply to: Right search form arrangement #164748
     Radu
    Moderator

    Hi,

    Use this css

    COPY CODE
    
    .form-search.custom label {
        text-align: left;
    }
    

    Wp-admin -> theme options -> Styling Options -> Quick css

    NOTE : Child theme needs to be installed and activated.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: KLEO Lightbox Style Settings? #164734
     Radu
    Moderator

    Hi,

    Thank you and you’re welcome

    Add also this code

    COPY CODE
    
    .mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-media-single-comments textarea {
        border: 1px solid #ccc !important;
        background-color: #ffffff !important;
        color: #333333 !important;
    }
    

    Please rate us on ThemeForest with 5 stars if you are happy with us.

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Change the color of the first accordion #164639
     Radu
    Moderator

    If you will add a class to the row that contains that or if you add a specific class to the accordion you will have to modify the CSS selector by adding as prefix the class name.

    Example

    COPY CODE
    
    .firstcolored .panel-kleo .panel:nth-of-type(1) {
        background-color: red;
    }

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    Sorry for the late reply, I’ve tried to log in to you dashboard to check that, but the credentials are incorrect.

    Meanwhile, try to add this line of code to your child theme functions.php and try to save again the theme options.

    COPY CODE
    
    add_filter( 'kleo_theme_options_ajax', '__return_false' );
    

    The function needs to be pasted in wp-content/themes/kleo-child/functions.php

    NOTE: Child theme needs to be installed and activated.

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Home-Register page text alignment #164622
     Radu
    Moderator
    Not marked as solution
    in reply to: making red cross line on old prices #164619
     Radu
    Moderator

    Hi,

    Use this CSS

    COPY CODE
    
    .pmpro_strike_through {
        text-decoration: line-through;
    }
    

    Wp-admin -> theme options -> Styling Options -> Quick css

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: searchable profile fields display ascii characters #164446
     Radu
    Moderator

    Hi,

    I see there seems to be encoded, try to add the next filters in functions.php in child theme

    add_filter( 'bp_get_the_profile_field_value', 'convert_chars' );
    OR
    add_filter( 'bp_get_the_profile_field_value', 'bp_xprofile_escape_field_data', 8, 3 );
    OR both

    COPY CODE
    
    add_filter( 'bp_get_the_profile_field_value', 'convert_chars' ); 
    add_filter( 'bp_get_the_profile_field_value', 'bp_xprofile_escape_field_data', 8, 3 ); 
    

    OR

    COPY CODE
    
    function sq7_fix_16072917(){
    add_filter( 'bp_get_the_profile_field_value', 'convert_chars' ); 
    add_filter( 'bp_get_the_profile_field_value', 'bp_xprofile_escape_field_data', 8, 3 ); 
    }
    add_action('init', 'sq7_fix_16072917');
    

    So if you remove from the profile My height is: field the encoding will stop ?

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Drop Down Menu Edits #164439
     Radu
    Moderator

    Hi,

    Wired I’ve tested before providing this.

    COPY CODE
    
    .header-centered .dropdown > .dropdown-menu.sub-menu {
        border:0 !improtant;
        box-shadow:none !important; 
    }
    

    Try with important declaration

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Issue wity dailymotion videos #164437
     Radu
    Moderator

    Hi,

    This should fix also tthe view in masonry listing

    COPY CODE
    
    .kleo-masonry article iframe[src*="dailymotion"] {
        width: 100%;
        max-height: 187px !important;
    }
    

    Add also this CSS to quick CSS area.

    This will be fixed in next theme update

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Change the color of the first accordion #164359
     Radu
    Moderator

    Hi,

    Just use this CSS

    COPY CODE
    
    .panel-kleo .panel:nth-of-type(1) {
        background-color: red;
    }
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Some functionality missing in my swwetdate theme #164349
     Radu
    Moderator

    Empty the cache if you have it if still not works provide admin credentials and url in a private reply.

    Add this css

    COPY CODE
    
    #whats-new-options {
        opacity: 1 !important;
        display: block !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Avatars #164345
     Radu
    Moderator
    Not marked as solution
    in reply to: Home Register #164344
     Radu
    Moderator

    To be clear!

    The “home register” can be the register page only if you don’t have required profile fields in BuddyPress ( Users -> Profile Fields ).
    Then you should redirect users from original register BuddyPress page to the “home-register” page using this code

    COPY CODE
    
    /* Redirect to Profile if Loggedin */
    add_action( 'template_redirect', 'redirect_to_specific_page2' );
    function redirect_to_specific_page2() {
        if ( bp_is_register_page() && !is_user_logged_in () ) {
            $current_user = wp_get_current_user();
            $profileurl = $current_user->user_login;
            wp_redirect( home_url().'/home-register/', 301 );
            exit;
        }
    }
    

    Then replace home-register with your desired from wp_redirect( home_url().’/home-register/’, 301 ); line

    NOTE : Child theme needs to be installed and activated.

    The function needs to be pasted in wp-content/themes/kleo-child/functions.php

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Some Questions #164341
     Radu
    Moderator
    Not marked as solution
    in reply to: KLEO Lightbox Style Settings? #164340
     Radu
    Moderator

    Hi,

    The css to makes that white isntead of black it’s next

    COPY CODE
    
    .rtmedia-container .mfp-content .rtm-lightbox-container { background: #ffffff !important; }
    .mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta { background-color: #fff !important; }
    
    
    #buddypress .rtmedia-like-info {background:#fff !important;}
    
    #buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span a, #buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span button, #buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span button.rtmedia-action-buttons {
        color: #000 !important;
    }
    .rtmedia-container ul#rtmedia_comment_ul li, .rtmedia-activity-container ul#rtmedia_comment_ul li {
        background-color: #fff !important;
        }
    
        .mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-media-single-comments {
        background-color: #fff !important;
    }
    
    #buddypress #rt_media_comment_form {background:#fff !important;}
    
    div#rtmedia-single-media-container {
        background: #fff !important;
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: NO send button after writing public message #164271
     Radu
    Moderator

    Hi,

    Add this css

    COPY CODE
    
    #whats-new-options {
        display: block !important;
        height: auto;
        visibility: visible;
    }
    

    Wp-admin -> theme options -> Styling Options -> Quick css

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Override kleo_ajax_search #164266
     Radu
    Moderator
    Not marked as solution
    in reply to: Sections of Homepage and Search Forms Not Working #164262
     Radu
    Moderator

    Hi,

    Technically each user should log in at least one time to become “active users” then BuddyPress will show the profiles in search results.\
    Try to add this function

    You can try to activate manually accounts with this kind of function that updates the user status in database

    COPY CODE
    <?php 
    $user_id = get_current_user_id();
    add_user_meta( $user_id, 'user_status', '0' );
    ?>

    The function needs to be pasted in wp-content/themes/kleo-child/functions.php

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Menu #164251
     Radu
    Moderator

    Hi,
    For making more spacing available on the sidebars use that CSS

    COPY CODE
    
    .template-page {
        padding: 0 !important;
    }
    
    .sidebar {
        padding: 0 !important;
    }
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    For the headers, I need to see live example, cuz I’m “blind” in this way

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Drop Down Menu Edits #164227
     Radu
    Moderator

    Hi,

    Use this CSS

    COPY CODE
    .header-centered .dropdown > .dropdown-menu.sub-menu {
        border:0;
        box-shadow:none;
    }

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: the online activity time; Important. #164180
     Radu
    Moderator
    Not marked as solution
    in reply to: Home-Register Demo Page is not Responsive #164173
     Radu
    Moderator

    Hi,

    That CSS it’s applied only for mobile. And it not affects the position of the image on desktop just under 991px, under this resolution the image position it’s controlled by

    COPY CODE
    
    background-position: center center !important;
    

    You can set top,right,bottom,left

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: BP Profile Search #164169
     Radu
    Moderator
    Not marked as solution
    in reply to: registration email NOT sent #164080
     Radu
    Moderator

    Hi,

    The email messages cases can be found/edited in wp-admin -> emails ->

    If the debugger says the same

    COPY CODE
    
    2016-01-07 06:07:51	SMTP ERROR: Failed to connect to server: Connection refused (111)
    2016-01-07 06:07:51	SMTP connect() failed.
    

    Ask the hosting support about that

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 40 posts - 881 through 920 (of 2,990 total)

Log in with your credentials

Forgot your details?