Forum Replies Created

Viewing 40 posts - 2,601 through 2,640 (of 2,990 total)
  • Author
  • in reply to: Kleo to-menu drop down background. #81629
     Radu
    Moderator

    Hi,

    Please add this CSS snippet to your Wp-Admin -> Theme Options -> Quick CSS

    COPY CODE
    
    .header-color .dropdown-menu li {
        border-bottom-color: #025653;
        background-color: #dd8641;
    }
    

    Let me know if is ok.

    Regards

    RAdu

    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: Styling Problems with Kleo #81618
     Radu
    Moderator

    It should be ok.

    I’ve used these CSS rules

    COPY CODE
    
    
    .kleocustomsection .template-page, .sidebar {
        padding-top: 0 !important;
    }
    
    .kleocustomsection input#bp-login-widget-user-login {
        width: 100% !important;
    }
    

    Regards

    Radu

    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: Mailchimp example form not working #81617
     Radu
    Moderator

    Hi,

    By using the below css you will set color black to response from mailchimp (“Thank you, your sign-up request was successful! Please check your e-mail inbox.”)

    COPY CODE
    
    .mc4wp-form .mc4wp-alert {
    color: #000;
    font-size:1em;
    }
    

    Relace color and font size with your desired settings

    For the input height use this css

    COPY CODE
    
    .mc4wp-form .form-inline input[type="email"] {
        height: 32px;
        display: inline-block;
    }
    

    You need to add this css snippets to Wp-admin -> Theme Options -> General Options -> quick css

    Regards

    Radu

    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: removing logo in nav #81495
     Radu
    Moderator

    Hi,

    You can achieve this by using the css snippet form below

    COPY CODE
    
    
    body.home .sticky-wrapper .kleo-main-header img { display: none;}
    body.home .is-sticky .kleo-main-header img { display: initial; }
    
    

    The logo will be hidden until you scroll and only for homepage if you want for entire site tell me.

    Let me know if is ok.

    Best Regards

    Radu

    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: Fatal error #81493
     Radu
    Moderator

    Hi,

    This error can be caused by folder permission which is excluded or by lack of PHP ZipArchive extension, check if Php ZipArchive is installed on your server by copying the code below intro php file which you will upload on your server, then access the file http://domain.com/yournamedfile.php

    COPY CODE
    
    <?php
    
    if (!extension_loaded('zip')) { echo 'ZipArchive is missing'; } else { echo 'ZipArchive is installed'; }
    
    ?>
    

    If you receive ZipArchive is missing contact your hosting company for enabling this php extension on your server.

    Best Regards

    Radu

    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: Rounded Corners & Social Icons #81487
     Radu
    Moderator

    Hi,

    You can call the kelo share buttons there by using this php code in kleo-child/functions.php

    Add this code by doing this login to FTP go to wp-content/themes/kleo-child/functions.php

    COPY CODE
    
    add_filter('kleo_post_footer','kleo_social_share','99');
    

    NOTE : the icons don’t have enough space to be placed there but the solution is provided above

    REgarding the rounded corners add this css code to : Wp-Admin -> Theme Options -> Quick CSS

    COPY CODE
    
    .post-content.animated.animate-when-almost-visible.el-appear.start-animation { border-radius: 7px !important; }
    

    Regarding the background color, go to Wp-Admin -> Theme Options -> Styling Options -> Main -> Background color.

    Regards

    Radu

    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: Can’t Add Page To Menu or Edit a Text Box #81483
     Radu
    Moderator

    Hi Imintenn,

    COPY CODE
    
     Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 30720 bytes) in /hermes/bosoraweb120/b478/ipg.323workshopcom/323lifeworks/wp-admin/includes/import.php on line 149
    

    This error is cased by php memory limit, i suggest you to increase the php memory limit

    Read here how : http://seventhqueen.com/blog/code-snippets/increase-php-memory-limit-in-wordpress.html

    If that changes have no effect, please contact your hosting company and ask them to increase php memory to 256M

    After you solve the issue with memory limit set debug to false

    COPY CODE
    
    
    define(‘WP_DEBUG’, false);
    define( ‘WP_DEBUG_DISPLAY’, false);
    
    

    Let me know if it works

    Best Regards

    Radu

    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: single post border color and post thumbnails #81479
     Radu
    Moderator

    Hi,

    Add this code to your WP-Admin -> Theme Options -> General Settings -> Quick CSS

    COPY CODE
    
    .main-color .widget_nav_menu a, .main-color .wpex-widget-recent-posts-li, .main-color .widget_categories li, .main-color .widget_recent_entries li, .main-color .widget_archive li, .main-color .widget_display_views li, .main-color .widget_recent_comments li, .main-color .widget_product_categories li, .main-color .widget_layered_nav li {
        border-bottom-color: #FB0303;
    }
    
    .main-color hr, .main-color.container-wrap, .main-color#footer, .main-color#socket, .main-color.social-header, .main-color .top-menu .tabdrop:before, .main-color #top-social .tabdrop:before, .main-color #top-social, .main-color .top-menu > ul, .main-color .kleo-main-header, .main-color .template-page, .main-color .sidebar-right, .main-color .sidebar-left, .main-color .sidebar-extra, .main-color .sidebar-main, .main-color .hr-title, .main-color .nav-tabs, .main-color .nav-pills > li > a, .main-color .kleo-tabs .nav .open > a.dropdown-toggle, .main-color .kleo-tabs .nav .open > a.dropdown-toggle:hover, .main-color .kleo-tabs .nav .open > a.dropdown-toggle:focus, .main-color .kleo-tabs .tabdrop .dropdown-menu, .main-color .dropdown-menu, .main-color .kleo-toggle-menu .kleo-toggle-submenu:before, .main-color #ajax_search_container:before, .main-color #top-social li a, .main-color .top-menu li > a, .main-color .pagination > li > a, .main-color .pagination > li > span, .main-color .callout-blockquote blockquote, .main-color .masonry-listing .post-content, .main-color .list-divider li, .main-color #ajax_search_container, .main-color .form-control, .main-color .feature-item:hover .feature-icon, .main-color .bordered-icons .feature-item.default-icons-size .feature-icon, .main-color .bordered-icons .feature-item.big-icons-size .feature-icon, .main-color input[type="text"], .main-color input[type="password"], .main-color input[type="date"], .main-color input[type="datetime"], .main-color input[type="datetime-local"], .main-color input[type="month"], .main-color input[type="week"], .main-color input[type="email"], .main-color input[type="number"], .main-color input[type="search"], .main-color input[type="tel"], .main-color input[type="time"], .main-color input[type="url"], .main-color textarea, .main-color .activity-timeline, .main-color #buddypress div.item-list-tabs ul li a span, .main-color #buddypress button, .buddypress .main-color a.button, .main-color #buddypress a.button, .main-color #buddypress input[type=submit], .main-color #buddypress input[type=button], .main-color #buddypress input[type=reset], .main-color #buddypress ul.button-nav li a, .main-color #buddypress div.generic-button a, .main-color.bp-full-width-profile div.generic-button a, .main-color #buddypress .comment-reply-link, .main-color #buddypress #whats-new, .main-color #buddypress div.message-search, .main-color #buddypress div.dir-search, .main-color #buddypress .activity-read-more, .main-color #bp-login-widget-submit, .main-color .bbp_widget_login .button.user-submit, .main-color #wp-calendar caption, .main-color .wp-caption, .main-color .widget form#bbp-search-form > div, .main-color .widget_search #searchform > div, .main-color #bp-login-widget-form input[type="text"], .main-color #bp-login-widget-form input[type="password"], .main-color .bbp-login-form input[type="text"], .main-color #buddypress #friend-list .friend-inner-list, .main-color #buddypress #member-list .member-inner-list, .main-color #buddypress #members-list .member-inner-list, .main-color #buddypress #groups-list .group-inner-list, .main-color #buddypress div#item-nav .tabdrop .dropdown-menu, .main-color #buddypress div.profile, .main-color #buddypress #friend-list div.action .generic-button a.send-message, .main-color #buddypress #member-list div.action .generic-button a.send-message, .main-color #buddypress #members-list div.action .generic-button a.send-message, .main-color #buddypress form.standard-form .left-menu img.avatar, .main-color .checkbox-mark, .main-color #buddypress div#group-create-tabs ul li.current a, .main-color .rtmedia-container #rtMedia-queue-list tr td, .main-color #buddypress .standard-form textarea, .main-color #buddypress .standard-form input[type=text], .main-color #buddypress .standard-form input[type=color], .main-color #buddypress .standard-form input[type=date], .main-color #buddypress .standard-form input[type=datetime], .main-color #buddypress .standard-form input[type=datetime-local], .main-color #buddypress .standard-form input[type=email], .main-color #buddypress .standard-form input[type=month], .main-color #buddypress .standard-form input[type=number], .main-color #buddypress .standard-form input[type=range], .main-color #buddypress .standard-form input[type=search], .main-color #buddypress .standard-form input[type=tel], .main-color #buddypress .standard-form input[type=time], .main-color #buddypress .standard-form input[type=url], .main-color #buddypress .standard-form input[type=week], .main-color #buddypress .standard-form select, .main-color #buddypress .standard-form input[type=password], .main-color #buddypress .dir-search input[type=search], .main-color #buddypress .dir-search input[type=text], .main-color .bbp-pagination-links a, .main-color .bbp-pagination-links span, .main-color #bbpress-forums li.bbp-body ul.forum, .main-color #bbpress-forums li.bbp-body ul.topic, .main-color form#new-post, .main-color #bbpress-forums .bbp-form input[type="text"], .main-color .quicktags-toolbar, .main-color .wp_themeSkin tr.mceFirst td.mceToolbar, .main-color .quicktags-toolbar input, .main-color .wp-editor-area, .main-color .rtmedia-container .rtmedia_next_prev a, .main-color .rtmedia-activity-container .rtmedia_next_prev a, .main-color #buddypress div.rtmedia-activity-container .rtmedia_next_prev a, .main-color #rtm-gallery-title-container #rtm-media-options, .main-color #rtMedia-upload-button, .main-color #buddypress #item-body .rtmedia-item-comments .rt_media_comment_form textarea, .main-color .rtmedia-container .rtmedia-editor-main dl.tabs dd > a, .main-color .rtmedia-activity-container .rtmedia-editor-main dl.tabs dd > a, .main-color #buddypress div.rtmedia-activity-container .rtmedia-editor-main dl.tabs dd > a, .main-color .rtmedia-container .imgedit-wrap div.imgedit-settings .imgedit-group, .main-color #buddypress .rtmedia-container textarea, .main-color #buddypress .rtmedia-container input[type=text], .main-color #buddypress .rtmedia-container input[type=text], .main-color #buddypress .rtmedia-container input[type=color], .main-color #buddypress .rtmedia-container input[type=date], .main-color #buddypress .rtmedia-container input[type=datetime], .main-color #buddypress .rtmedia-container input[type=datetime-local], .main-color #buddypress .rtmedia-container input[type=email], .main-color #buddypress .rtmedia-container input[type=month], .main-color #buddypress .rtmedia-container input[type=number], .main-color #buddypress .rtmedia-container input[type=range], .main-color #buddypress .rtmedia-container input[type=search], .main-color #buddypress .rtmedia-container input[type=tel], .main-color #buddypress .rtmedia-container input[type=time], .main-color #buddypress .rtmedia-container input[type=url], .main-color #buddypress .rtmedia-container input[type=week], .main-color #buddypress .rtmedia-container select, .main-color #buddypress .rtmedia-container input[type=password], .main-color .kleo-toggle-menu .kleo-toggle-submenu, .main-color .kleo-toggle-menu a.remove, .main-color .woocommerce .kleo-cart-totals .totals-wrap, .main-color .kleo-toggle-menu .minicart-buttons .btn-default, .main-color .kleo_ajax_results h4, .main-color .ajax_view_all, .main-color #articles-dir-list article.article-container {
        border-color: #FB0303;
    }
    

    Replace #FB0303 with your desired color.

    Regards

    Radu

    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 with row video background and formidable pro #81291
     Radu
    Moderator

    HI,

    The form is operational now,

    I’ve added this class before form render <div class=”nopointerevents”>[form]</div>

    And thiss css in Wp Admin -> Theme Options -> General Settings -> Quick CSS

    COPY CODE
    
    .nopointerevents {
        pointer-events: all !important;
    }
    

    Regards

    Radu

    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: Styling Problems with Kleo #80954
     Radu
    Moderator

    Hi,

    You are welcome

    Use this css

    COPY CODE
    
    .header-color .top-menu li > a span.caret:after {
        color: #fff !important;
        font-weight: bold !important;
    }
    

    Regards

    Radu

    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: intergrating social login plugin with kleo login #80952
     Radu
    Moderator

    Hi,

    It’s ok now.

    I used this CSS

    COPY CODE
    
    .oneall_social_login {
        height: 88px;
        margin: 0 auto !important;
        position: initial;
        padding: 0 24%;
        overflow: hidden;
        text-align: center !important;
    }
    

    Regards

    Radu

    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: headers are not full width #80890
     Radu
    Moderator

    Hi,

    Put this css in Wp-Admin -> Theme Options -> Quick CSS

    COPY CODE
    
    .wpb_single_image .vc_single_image-wrapper { display: block !important; }
    

    Let me know if it works.

    Regards

    Radu

    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: Expires headers #80472
     Radu
    Moderator

    Add this at top of your htaccess

    COPY CODE
    
    <IfModule mod_expires.c>
    # Enable expirations
    ExpiresActive On 
    # Default directive
    ExpiresDefault "access plus 1 month"
    </IfModule>
    

    Let me know if it works

    Regards

    RAdu

    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: Styling Problems with Kleo #80466
     Radu
    Moderator

    Hi,

    Use this CSS

    COPY CODE
    
    .top-menu ul#menu-kleotopmenu li.kleo-menu ul.dropdown-menu a { color:#333 !important; }
    .header-color .top-menu li > a, .header-color #top-social li a { color:#fff !important; }
    

    It should to be ok.

    Let me know if is ok.

    Regards

    Radu

    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: Expires headers #80459
     Radu
    Moderator

    Hi,

    I’ve tested on gtmetrix and i see that the cache for these resources is 30 minutes and the GtMetrix says :

    The following cacheable resources have a short freshness lifetime. Specify an expiration at least one week in the future for the following resources:

    COPY CODE
    
    https://c6c25da9f03548367724b8af95c7bae87f35eec7.googledrive.com/host/0B5JmcUWWXmQBflJZSFJvMTVwOXpvM0x2MzQ5TXpwZy1zcHFJdUk0RVc4c0JnUlJMSFZuV1U/fundo_full.jpg (20 seconds)
    http://connect.facebook.net/en_US/sdk.js (20 minutes)
    http://www.elorural.com.br/wp-content/plugins/buddypress/bp-core/deprecated/js/jquery-scroll-to.min.js (30 minutes)
    http://www.elorural.com.br/wp-content/plugins/buddypress/bp-core/js/confirm.min.js (30 minutes)
    http://www.elorural.com.br/wp-content/plugins/buddypress/bp-core/js/jquery-cookie.min.js (30 minutes)
    http://www.elorural.com.br/wp-content/plugins/buddypress/bp-core/js/jquery-query.min.js (30 minutes)
    http://www.elorural.com.br/wp-content/plugins/buddypress/bp-core/js/widget-members.min.js (30 minutes)
    http://www.elorural.com.br/wp-content/plugins/buddypress/bp-groups/js/widget-groups.min.js (30 minutes)
    http://www.elorural.com.br/wp-content/plugins/js_composer/assets/css/js_composer.css (30 minutes)
    http://www.elorural.com.br/wp-content/plugins/js_composer/assets/js/js_composer_front.js (30 minutes)
    http://www.elorural.com.br/wp-content/plugins/js_composer/assets/lib/isotope/dist/isotope.pkgd.min.js (30 minutes)
    http://www.elorural.com.br/wp-content/plugins/js_composer/assets/lib/waypoints/waypoints.min.js (30 minutes)
    http://www.elorural.com.br/wp-content/plugins/revslider/rs-plugin/css/settings.css (30 minutes)
    http://www.elorural.com.br/wp-content/plugins/revslider/rs-plugin/js/jquery.themepunch.revolution.min.js (30 minutes)
    http://www.elorural.com.br/wp-content/plugins/revslider/rs-plugin/js/jquery.themepunch.tools.min.js (30 minutes)
    http://www.elorural.com.br/wp-content/themes/kleo-child/buddypress/css/buddypress.css (30 minutes)
    http://www.elorural.com.br/wp-content/themes/kleo-child/buddypress/js/buddypress.js (30 minutes)
    http://www.elorural.com.br/wp-content/themes/kleo-child/style.css (30 minutes)
    http://www.elorural.com.br/wp-content/themes/kleo/assets/css/app.min.css (30 minutes)
    http://www.elorural.com.br/wp-content/themes/kleo/assets/css/bootstrap.min.css (30 minutes)
    

    Try to set this

    COPY CODE
    
    # CSS and JavaScript
    ExpiresByType text/css “access plus 1 year”
    ExpiresByType application/javascript “access plus 1 year”
    ExpiresByType application/x-javascript “access plus 1 year”
    

    to

    COPY CODE
    
    
    # CSS and JavaScript
    ExpiresByType text/css "access plus 1 month"
    ExpiresByType application/javascript "access plus 1 month"
    ExpiresByType application/x-javascript "access plus 1 month"
    
    

    Let me know if will solve the issue.

    Cheers

    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: Expires headers #80432
     Radu
    Moderator

    Hi,

    Remove query string from static resources by adding this snippet to kleo-child/functions.php

    COPY CODE
    
    function pu_remove_script_version( $src ){
    return remove_query_arg( 'ver', $src );
    }
    add_filter( 'script_loader_src', 'pu_remove_script_version' );
    add_filter( 'style_loader_src', 'pu_remove_script_version' );
    

    Then empty cache and check again.

    Read more here : https://archived.seventhqueen.com/forums/topic/how-do-i-sovle-this-query-issues-due-to-the-stings-with

    Regards

    Radu

    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: Fix header on smartphone devices #80325
     Radu
    Moderator

    Hi,

    Please try this CSS snippet

    COPY CODE
    
    @media (max-width:650px) {
    
    .kleo-main-header.header-normal {
        position: fixed !important;
        clear: both !important;
    }
    #main {
    	
    	margin-top:70px !important;
    }
    }
    

    Add this css to Wp-admin -> Theme Options -> General Options -> Quick CSS

    Regards

    Radu

    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: Cannot update Theme Options #80317
     Radu
    Moderator

    Add this line to your kleo child functions.php

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

    Cheers

    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: Styling Problems with Kleo #80156
     Radu
    Moderator

    Hi,

    Use this

    COPY CODE
    
    ul#menu-kleotopmenu i.icon {color:#fff; } 
    
    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: Bold border around FORUM posts #80148
     Radu
    Moderator

    Hi,

    Please add this css to wp-admin -> Theme Options -> General Settings -> Quick CSS

    COPY CODE
    
    #bbpress-forums .hentry div.bbp-reply-content, #bbpress-forums .hentry div.bbp-topic-content {border: 2px solid #e5e5e5;}
    

    You can change value of 2 px with your desired value, also you can replace this color (#e5e5e5) which is light gray with dark or dark gray like #888

    Cheers

    Radu

    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: How can I change the size of the profile icons. #80147
     Radu
    Moderator

    Hi,

    Please add this line

    COPY CODE
    
    #buddypress #item-body #subnav ul li a { color:#339933;font-weight:bold; line-height:1em }
    

    It’s ok ?

    Cheers

    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: Embeds Cut Off #80135
     Radu
    Moderator

    Hi st,

    It should be OK now, can you check ?

    I used this CSS to patch this issue

    COPY CODE
    
    .flex-video.widescreen.vimeo {
        display: inline;
    }
    

    Regards

    Radu

    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: Remove Masonry animation #79892
     Radu
    Moderator

    Hi,

    Please try this CSS it should works.

    COPY CODE
    
    .kleo-transform .one-by-one-animated .start-animation .el-appear, .kleo-transform .kleo-thumbs-animated.th-appear img.start-animation, .kleo-transform .start-animation.el-appear {
        -webkit-animation: none;
        -o-animation: none;
        animation: none;
        opacity: 1;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
    

    Add this css to Wp-Admin -> Theme Options -> General Settings -> Quick CSS

    Let me know

    Regards

    Radu

    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: How can I change the size of the profile icons. #79887
     Radu
    Moderator

    Hi,

    Replace the latest css that i provided with this

    COPY CODE
    
    #buddypress div#item-nav ul li a:hover:before { color: red !important; }
    #buddypress div#item-nav ul li.current a:before { color: red !important; }
    

    Regarding the View, Edit, Change Profile Photo, and Change Cover, use this

    COPY CODE
    
    .main-color #buddypress div.item-list-tabs#subnav ul li.selected a { color:green; }
    .main-color #buddypress div.item-list-tabs#subnav ul li a:hover { color:green; }
    

    Let me know if is ok.

    Regards

    Radu

    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: Styling Problems with Kleo #79886
     Radu
    Moderator

    You’re welcome

    Try with these css snippets

    COPY CODE
    
    #top-social li, #top-social li a, #top-social li i, #top-social li .ts-text {color: #fff !important;}
    .top-menu li.bp-login-nav a:before, .top-menu li.bp-register-nav a:before {color:#fff !important;}
    

    Regards

    Radu

    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: Woocommerce Product Styling Issue #79865
     Radu
    Moderator

    Hi,

    If you talking about related products white frame you can replace the white color from frame with your desired color

    COPY CODE
    
    woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        background: transparent !important;
    }
    

    If you dont referring to this please provide a screenshot pointing out the issue.

    Regards

    Radu

    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: Styling Problems with Kleo #79862
     Radu
    Moderator

    Hi,

    Replace that css snippet with this css and let me know if it works now.

    COPY CODE
    
    .header-color.social-header {
        background-color: green !important;
    }
    

    Regards

    Radu

    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: How can I change the size of the profile icons. #79861
     Radu
    Moderator

    Hi,

    Please add this css besides the above css

    COPY CODE
    
    #buddypress div#item-nav ul li.current a { color: green;}
    #buddypress div#item-nav ul li a:hover { color: green; }
    
    

    Let me know if is ok like this

    Regards

    Radu

    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: Styling Problems with Kleo #79765
     Radu
    Moderator

    Hi,

    COPY CODE
    
    .header-color.social-header {
        background-color: #eeeeee;
    }
    

    Replace #eeeeee with the breadcrumbs bg color then add this css snippet to wp-admin -> Theme Options -> General Settings -> Quick CSS

    Regards

    RAdu

    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: Forms Text Color #79759
     Radu
    Moderator

    Hi,

    Try like this :

    COPY CODE
    
    input { color: #333 !important; }
    

    Cheers

    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: Forms Text Color #79511
     Radu
    Moderator

    Hi,

    Use this CSS by adding it from Wp-ADmin -> Theme Options -> General Settings -> Quick CSS

    COPY CODE
    
    table#pmpro_user_fields input {
        color: #333 !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: intergrating social login plugin with kleo login #79491
     Radu
    Moderator

    Hi again,

    Add this see if it works.

    COPY CODE
    
    .plugin .footer #branding a {display:none !important;}
    

    Regards

    RAdu

    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: intergrating social login plugin with kleo login #79381
     Radu
    Moderator

    Hi,

    Add this CSS to Theme Options -> General Settings -> Quick CSS

    COPY CODE
    
    div.footer div#branding {
        display: none;
    }
    
    .oneall_social_login {
        height: 88px;
        margin: 0 auto !important;
        text-align: center !important;
        position: initial;
        padding: 0 24%;
    }
    

    Let me know if is ok

    Best REgards

    Radu

    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: Remove members recent activity from profile cover. #79168
     Radu
    Moderator

    Hi,

    Like this you can hide the text from group

    COPY CODE
    
    .buddypress div#item-header div#item-header-content #latest-update, .buddypress div#item-header div#item-header-content p:first-child {
    display:none !important;
    }
    

    Cheers

    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: Remove members recent activity from profile cover. #79167
     Radu
    Moderator

    Hi,

    Like this you can hide the text from group

    COPY CODE
    
    .buddypress div#item-header div#item-header-content #latest-update, .buddypress div#item-header div#item-header-content p:first-child {
    display:none !important;
    }
    

    Cheers

    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: Share this buttons #78969
     Radu
    Moderator

    Hi,

    It’s done you can use this shortcode [custom_kleo_social_activity_share]

    I used this function

    COPY CODE
    
    add_shortcode('custom_kleo_social_activity_share', 'add_kleo_social_share');
    function add_kleo_social_share() {
    ?>
    
    <span class="kleo-facebook">
                    <a href="http://www.facebook.com/sharer.php?u=<?php the_permalink(); ?>" class="post_share_facebook"
                       onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=220,width=600');return false;">
                        <i class="icon-facebook"></i>
                    </a>
                </span>
                <span class="kleo-twitter">
                    <a href="https://twitter.com/share?url=<?php the_permalink(); ?>" class="post_share_twitter"
                       onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=260,width=600');return false;">
                        <i class="icon-twitter"></i>
                    </a>
                </span>
                <span class="kleo-googleplus">
                    <a href="https://plus.google.com/share?url=<?php the_permalink(); ?>"
                       onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;">
                        <i class="icon-gplus"></i>
                    </a>
                </span>
                <span class="kleo-mail">
                    <a href="mailto:?subject=<?php echo strip_tags(get_the_title()); ?>&body=<?php the_permalink(); ?>" class="post_share_email">
                        <i class="icon-mail"></i>
                    </a>
                </span>
    <?php
    }
    

    Best Regards

    Radu

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

    This can happen because of true value of wp_debug function.

    Try to set wp_debug false by adding the line below in wp-config.php from your root installation directory or if in the wp-config is set ‘define( ‘WP_DEBUG’, true );’ change true to false

    COPY CODE
    
    define( 'WP_DEBUG', false );
    

    https://codex.wordpress.org/WP_DEBUG#Usage

    Let me know if it works.

    Radu

    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: Top-bar not coloured completely #78940
     Radu
    Moderator

    Hi,

    Try this CSS snippet

    COPY CODE
    
    .header-color.social-header {
        background-color: red;
    }
    

    Add this css to wp-admin -> Theme Options -> General Options -> Quick CSS.

    Regards

    Radu

    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 default buddypress profile photo #78919
     Radu
    Moderator

    Hi,

    Just use this function in kleo-child/functions.php

    COPY CODE
    
    //Custom avatar for no avatar user
    function myavatar_add_default_avatar( $url ){
    return 'http://www.socialagent.me/wp-content/uploads/2014/07/avatarDefault.png';
    }
    add_filter( 'bp_core_mysteryman_src', 'myavatar_add_default_avatar' );
    

    Replace http://www.socialagent.me/wp-content/uploads/2014/07/avatarDefault.png with your default avatar img url.

    Regards

    Radu

    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: Remove cover photo block in member/group area #78783
     Radu
    Moderator

    Hi,

    Try to use this css to hide that area

    COPY CODE
    
    div#item-header {
        display: none !important;
    }
    

    If this is not sufficient please provide a screenshot pointing out the elements to which you are referring to.

    Regards

    Radu

    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 - 2,601 through 2,640 (of 2,990 total)

Log in with your credentials

Forgot your details?