Forum Replies Created

Viewing 40 posts - 2,121 through 2,160 (of 2,990 total)
  • Author
  • in reply to: Buddypress layout on mobile/small screen. #110986
     Radu
    Moderator

    Hi,

    It’s done but please remove this from wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    #buddypress .activity-list .activity-content {
        margin: 0 0 0 100px !important;
    }
    

    For the line from activity just add this css

    COPY CODE
    
    #buddypress .activity-timeline {left:45px}
    

    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: Error in layout in post page #110969
     Radu
    Moderator

    Hi,

    1. Add this function to kleo-child/functions.php

    COPY CODE
    
    
    function kelo_show_post_meta () {
    
    ?>
    <?php if( kleo_postmeta_enabled() ): ?>
        <div class="article-meta shortcode">
    			<span class="post-meta">
    				<?php kleo_entry_meta();?>
    			</span>
            <?php edit_post_link( esc_html__( 'Edit', 'kleo_framework' ), '<span class="edit-link">', '</span>' ); ?>
        </div><!--end article-meta-->
    <?php endif;?>
    <?php
    }
    
    add_shortcode('kelo_show_post_meta','kelo_show_post_meta');
    
    

    And this css to wp-content/themes/kleo-child/style.css

    COPY CODE
    
    
    article .article-meta.shortcode { width: auto !important; display: inline-block; }
    article .article-meta.shortcode small{ display:inline-block !important;margin-right:5px; }
    .article-meta.shortcode small.meta-comment-count a { font-size: 18px !important; }
    
    

    2. I don't know how do you want to style the borders give a sketch please.

    3. Add this css and replace red with your desired color

    COPY CODE
    
    .masonry-listing .format-standard .post-title {
        border-left: 3px solid red;
    }
    

    For the rest of the modifications i recommend you to hire a developer.

    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: Shrink menu #110954
     Radu
    Moderator

    You can set small padding with the menu items on mobile

    Add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    @media (max-width: 991px){
    #header .navbar-nav li a {
        padding: 5px 0;
    }
    }
    
    

    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: Custom Profile Fields #110841
     Radu
    Moderator

    Hi,

    Try with this css

    COPY CODE
    
    #buddypress div.profile .dl-horizontal dt {
        width: auto;
        float: left;
        margin-right: 10px;
    }
    

    Add the css to wp-admin-> theme options -> general settings -> quick css

    Let me know

    Cheers

    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

    Hi,

    Try with this

    COPY CODE
    
    <div class="kleo-quick-contact-wrapper">
    
    <a class="kleo-quick-contact-link" href="#">OPEN</a></div>
    
    

    OR only with this

    COPY CODE
    
    
    <a class="kleo-quick-contact-link" href="#">OPEN</a></div>
    
    

    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: hide title in forums #110823
     Radu
    Moderator

    Hi,

    Use this css

    COPY CODE
    
    body.groups.forum section.title-single {
        display: none !important;
    }
    

    Let me know if is ok

    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: Portfolio Navigation #110816
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options – general settings -> quick css

    COPY CODE
    
    body.single-bb_project .pagination-sticky {
        display: none !important;
    }
    

    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: Footer Links #110814
     Radu
    Moderator

    Done

    I’ve added this before and after your markup

    COPY CODE
    
    <div style="clear: both;"></div>
    

    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: Background Images not sticking #110804
     Radu
    Moderator

    Hi,

    Please enable wp debug by going to ftp in root directory of your wp install open wp-config.php look for define( ‘WP_DEBUG’, false ); and change it to true and 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 is something related to php memory please follow this link : http://seventhqueen.com/blog/code-snippets/increase-php-memory-limit-in-wordpress.html

    Let me know

    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: Hide authors of blog posts #110750
     Radu
    Moderator
    This reply has been set as private.
    in reply to: Buddypress layout on mobile/small screen. #110740
     Radu
    Moderator

    Hi,

    This is a part of css

    COPY CODE
    
    @media only screen and (max-width: 600px) {
    
    #buddypress .activity-header {
        margin: 0 !important;
    }
    .activity-avatar.rounded {
        margin-right: 20px;
    }
    
    }
    

    But i need access to wp-admin and FTP cuz some css that are in quick css and kleo child overwrites the new rules

    Cheers

    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

    Hi,

    This is the css

    COPY CODE
    
    #ctdl-frontend-admin form#addtodo {
        background: #29395A !important;
    }
    

    I will make a new account with editor role on your site to reproduce the issue that you describe and i will get back to you.

    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: NEW and HOT in menu #110533
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options-> general settings -> quick css

    COPY CODE
    
    ul#menu-kleo-primary-menu li a em {
        background: #00b9f7 !important;
    }
    

    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: hide title in groups #110501
     Radu
    Moderator

    Hi,

    Add this to your wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    .group-home section.title-single {
        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
    in reply to: hide title in groups #110500
     Radu
    Moderator

    Hi,

    Please add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    .group-home section.title-single {
        display: none !important;
    }
    

    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 to change placeholder text color? #110482
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> styling options -> quick css

    COPY CODE
    
    .form-search.custom input[type="text"]::-webkit-input-placeholder { /* WebKit, Blink, Edge */
        color:red !important;
    }
    
    .form-search input::-moz-placeholder {
        /* FF 4-18 */
        color: red;
    }
    .form-search input::-moz-placeholder {
        /* FF 19+ */
        color:: red;
    }
    .form-search input:-ms-input-placeholder {
        /* IE 10+ */
        color: red;
    }
    
    .form-search.custom input[type="password"]::-webkit-input-placeholder { /* WebKit, Blink, Edge */
        color:red !important;}
        
    .form-search.custom input[type="password"]::::-moz-placeholder {
        /* FF 4-18 */
        color: red;
    }
    

    Replace red with your desired color.

    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: NEW and HOT in menu #110473
     Radu
    Moderator

    Nope…

    Do you have placed the NEW inside em tags

    COPY CODE
    
    
    <em>New</em>
    
    

    Then let me know where i can see this in actions to can provide you correct css solution if the preview solution was not works.

    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: NEW and HOT in menu #110437
     Radu
    Moderator

    Hi Investa,

    Do you try to have Hot label into topmenu ?

    That’s the css for that

    COPY CODE
    
    
    .top-bar em {
        border-radius: 2px;
        font: 10px Arial,Helvetica,sans-serif;
        padding: 1px 3px;
        font-style: normal;
        background-color:#00b9f7;
    }
    
    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: Member Search Results Font #110376
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> styling options -> quick css

    COPY CODE
    
    #members-dir-list .search-item .date, .search-item .date a {
        color: red !important;
    }
    

    Replace red with your desired color.

    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: Google Adsense #110354
     Radu
    Moderator

    Hi,

    Add the attached file to wp-content/themes/kleo-child/buddypress/members/members-loop.php

    Then open the file look around line 40 and replace the follwing

    COPY CODE
    
    
    <img src="http://s3.amazonaws.com/fotor.onlineresource/0b2c5f2b80b24f1a9cb6951e6c48ca50/0b2c5f2b80b24f1a9cb6951e6c48ca50_o.jpg">
    
    

    place inside ” you adsense code

    COPY CODE
    
    echo '<img src="http://s3.amazonaws.com/fotor.onlineresource/0b2c5f2b80b24f1a9cb6951e6c48ca50/0b2c5f2b80b24f1a9cb6951e6c48ca50_o.jpg">';
    

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    Attachments:
    You must be logged in to view attached files.
    in reply to: Kleo Buttons No Longer Centered #110043
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    .kleo_text_column .text- {
        text-align: center !important;
    }
    

    Cheers

    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

    Hi,

    Add this css

    COPY CODE
    
    #buddypress .activity-list .activity-content .activity-header img.avatar {
        width: auto !important;
    }
    

    Cheers

    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

    Hi again,

    Apply this

    COPY CODE
    
    #buddypress .standard-form textarea {
        background: #3b4b6b !important;
    }
    

    Cheers

    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,

    Here is the css, is more easy to increase font size instead to change the heading.

    COPY CODE
    
    .sq_frontedit h4 {
        color: #fff !important;
        font-size: 1.4em;
    }
    

    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: Current/Active item in Kleo Recent Posts? #110006
     Radu
    Moderator

    Hi,

    You can have a highlight your posts with this css

    COPY CODE
    
    div#kleo_recent_posts-3 li:nth-child(even) {
        background: red !important;
    }
    

    Css can be added to wp-admin -> theme options -> general settings -> quick css

    You can style an element depends by page where you are, the body class will have a page name into it, you can see with inspect, if you need to style that widget only for posts like this

    COPY CODE
    
    body.single-post div#kleo_recent_posts-3 li:nth-child(even) {
        background: red !important;
    }
    

    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: Redirect logged out user to main register page #109977
     Radu
    Moderator

    Hi,

    For the logged out redirection you can use this function that will redirect you to register page after logout.

    COPY CODE
    
    add_action( 'wp_logout', 'auto_redirect_external_after_logout');
    function auto_redirect_external_after_logout(){
        wp_redirect(site_url('register'));
        exit();
    }
    
    

    The function can be added to wp-content/themes/kleo-child/functions.php

    Regarding to this error

    Fatal error: Allowed memory size of 94371840 bytes exhausted (tried to allocate 6400 bytes) in

    You have to increase your php memory limit, visit this url to see how : http://seventhqueen.com/blog/code-snippets/increase-php-memory-limit-in-wordpress.html

    If the memory value doesn’t change contact your hosting company and ask them about this setting.

    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: Problem with post navigation #109971
     Radu
    Moderator

    Ok,

    Please apply this css and let me know

    COPY CODE
    
    .pagination-sticky.member-navigation #newer-nav:before, .pagination-sticky.member-navigation #older-nav:after {   
        width:20px !important;
    }
    

    Cheers

    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

    Hi,

    COPY CODE
    
    .todoitem small {
        font-size: 10px;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator
    COPY CODE
    
    #buddypress .standard-form textarea, #buddypress .standard-form input[type=text], #buddypress .standard-form input[type=color], #buddypress .standard-form input[type=date], #buddypress .standard-form input[type=datetime], #buddypress .standard-form input[type=datetime-local], #buddypress .standard-form input[type=email], #buddypress .standard-form input[type=month], #buddypress .standard-form input[type=number], #buddypress .standard-form input[type=range], #buddypress .standard-form input[type=search], #buddypress .standard-form input[type=tel], #buddypress .standard-form input[type=time], #buddypress .standard-form input[type=url], #buddypress .standard-form input[type=week], #buddypress .standard-form select, #buddypress .standard-form input[type=password], #buddypress .dir-search input[type=search], #buddypress .dir-search input[type=text], #buddypress .groups-members-search input[type=search], #buddypress .groups-members-search input[type=text] {
    color:#fff;
    } 
    

    IT will apply for all inputs

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator
    COPY CODE
    
    #buddypress .standard-form textarea, #buddypress .standard-form input[type=text] {
    
        color:#fff !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator
    COPY CODE
    
    div.css-search { background: red !important; }
    #em-wrapper .em-search-wrapper .em-search-advanced { background-color:Red !important; }
    

    Cheers

    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

    Hi,

    Tell me if is not ok.

    COPY CODE
    
    .sq_frontedit_action:not(.save) {
        color: Red !important;
    }
    .sq_frontedit_action:not(.save):before { color:red; }
    
    

    cheers

    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,

    COPY CODE
    
    #buddypress #send_message_form {
        background: red !important;
    }
    
    #buddypress div#message-thread #send-reply {
        background: red;
    }
    
    

    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: Ajax login popup not logging in? #109839
     Radu
    Moderator

    Hi,

    I’ve logged on your website from the login pop-up, i received the success message and after that the page was refreshed but it was taken over 10 seconds, maybe this is caused by server ?

    And i’ve checked console and it says :

    COPY CODE
    
    
    (index):308 Uncaught TypeError: $ is not a function(anonymous function) @ (index):308
    
    $(function(){var t="http://upload.wikimedia.org/wikipedia/commons/c/ce/Transparent.gif",e=!0,o=new Image;o.src=t,$("img").live("mouseenter touchstart",function(){var o=$(this);if(!o.hasClass("Overlay")&&(e||o.hasClass("protectMe"))){var i=o.offset(),n=$('<img class="Overlay" src="'+t+'" width="'+o.width()+'" height="'+o.height()+'" />').css({position:"absolute",zIndex:9999999,left:i.left,top:i.top}).appendTo("body").bind("mouseleave",function(){setTimeout(function(){n.remove()},0,$(this))});"ontouchstart"in window&&$(document).one("touchend",function(){setTimeout(function(){n.remove()},0,n)})}})});
    

    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: Few question related to theme layout #109814
     Radu
    Moderator

    Hi,

    1.

    Try with this

    COPY CODE
    
    add_filter('header_profile_dropdown', 'my_profile_link');
    function my_profile_link($links) {
    	$links[] = '<li><a href="' . bp_loggedin_user_domain().'egifts/" rel="nofollow">eGifts</a></li>';
    	$links[] = '<li><a href="' . bp_loggedin_user_domain().'following/" rel="nofollow">My Favorite</a></li>';
    	$links[] = '<li><a href="' . bp_loggedin_user_domain().'profile/edit" rel="nofollow">Edit profile</a></li>';
    	return $links;
    }
    

    You can reorder by modifying this file sweet/wp-content/themes/sweetdate/header.php line 164

    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 to change forum background color? #109800
     Radu
    Moderator

    Hi again,

    Use this

    COPY CODE
    
    #bbpress-forums div.even, #bbpress-forums ul.even {
        background: red !important;
    }
    

    Replace red with your desired color

    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: Comment Page Not in order #109799
     Radu
    Moderator

    Hi,

    For the google captcha please add this css to wp-admin -> theme options -> styling options -> quick css

    COPY CODE
    
    .g-recaptcha {
        float: right !important;
        clear: both;
        display: block !important;
        width: 100% !important;
    }
    
    

    Now it displays the posts

    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: Kleo update, button color #109792
     Radu
    Moderator

    Hi,
    Because in this way it was theme builded, with some buttons to be call to action and the white color was applied cuz you maybe have changed the colors from theme option
    If you need the button transparent use this css instead the preview reply

    COPY CODE
    
    .alternate-color.bp-full-width-profile div.generic-button a.add {
        background: transparent !important;
        border: 1px solid #333 !important;
    }
    

    Cheers

    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

    Hi,

    Regarding to this

    COPY CODE
    
    Second issue: When I open the site from mobile device, the theme does not open properly, but rather its features are broken. Only when I press on the “View Full Site” at the bottom of the page, the theme appears/displays as intended (So, on the mobile site, the theme does not display properly). Laura said this was unusual, and I want the theme to display the theme properly on mobile and web always, and I need your help to resolve this. I will attach photos as evidence of what I’m talking about.
    

    I see that when you visiting site from a mobile device there is no kleo theme, it’s a module from jetpack or something

    Regarding to

    COPY CODE
    
    First: when I login to the site as a normal, regular user, I can’t add/create new blog posts. I also don’t see the Top menu bar either . When I disable Woocommerce plugin, the top menu bar appears but adding new blog posts is still not an option (No “+Add” button)
    

    Regular users by default they doesn’t have possibility to add new post, if you need that you can use social article plugin to offer possibility for your buddypress users to add articles.

    Regarding the woocommerce and top bar, do you have theme updated to latest version ( 4.0.3 ) and plugins (you can check the plugin update status from wp-admin -> appearance -> install plugins ) ?

    Cheers

    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

    Hi again,

    Try with important declaration

    COPY CODE
    
    body, #content, .page-title-colors, #respond {
        background-color: #3b4b6b !important;
    }
    

    Let me know

    Cheers

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

Log in with your credentials

Forgot your details?