Forum Replies Created

Viewing 40 posts - 1,601 through 1,640 (of 2,990 total)
  • Author
  • in reply to: Reduce number of footer columns #131245
     Radu
    Moderator

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

    COPY CODE
    
    div#footer .template-page .row > div {
        text-align: center;
    }
    

    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 detection and change in icos #131241
     Radu
    Moderator
    Not marked as solution
    in reply to: scrollbar #131229
     Radu
    Moderator

    Hi,

    Try to add this css to wp-admin -> theme options -> quick css

    COPY CODE
    
    textarea {
        overflow: auto !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: Display Problems #131224
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    #buddypress ul#activity-stream.activity-list > li .activity-content .activity-inner iframe {
        max-height: 180px !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: Menu alignment #131216
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    .logo-to-right .navbar-nav>li.menu-item-has-children >a {
        line-height: 40px !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: rename tabs #131205
     Radu
    Moderator

    Hi

    Add this function to child theme / wp-content/themes/kleo-child/functions.php

    COPY CODE
    
    function rename_bp_tabs() {
        global $bp;
        $bp->bp_nav['notifications']['name'] = 'RE-Notifications';
        $bp->bp_nav['messages']['name'] = 'RE-Messages';
        $bp->bp_nav['groups']['name'] = 'RE-GRoups';
    }
    add_action( 'bp_init', 'rename_bp_tabs');
    
    

    Note Kleo 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’s “quickview” button on shop pages… #131158
     Radu
    Moderator
    Not marked as solution
    in reply to: I can’t see home page #131148
     Radu
    Moderator
    Not marked as solution
    in reply to: Ajax on search bars #131144
     Radu
    Moderator

    Hi,

    Load this css into wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    .activity ul#activity-stream li iframe {
        max-height: 320px !important;
    }
    

    Cheers
    R.

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

    Hi,

    1. Use this css and adapt it for your needs

    COPY CODE
    
    ul#menu-main-menu li.color-contacto {
        background: orange !important;
    }
    
    ul#menu-main-menu li.color-contacto a {
        color: #fff;
        line-height: 28px !important;
    }
    
    

    2. You should add a custom css class for each menu item and when it’s scrolled we will hide items with display:none this is the singles solution.

    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 issue with WPML #131049
     Radu
    Moderator
    Hi, You can try with this selector
    li.kleo-menu.kleo-user_avatar-nav a img {padding: 3px;}
    
    And play with the padding value The css will be added to wp-admin -> theme options -> general settings -> quick css Let me know Cheers R.
    in reply to: Edit VC Kleo Register Button #131046
     Radu
    Moderator

    Hi,

    Add this css and adjust it ass you need by modifying the values to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    form#register_form button {
        background-color:red !important;
        color:#fff !important;
        padding:10px !important;
        font-size:20px !important;
        height:auto !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: Vertical spaces on mobile device #131034
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    @media(max-width:760px){
        
        article .article-content .container-wrap:first-child {
            padding-top: 0 !important;
        }
    
        article .article-content .container-wrap:first-child .column_container .wpb_wrapper .vc_row:first-child {
            margin-bottom: 0 !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: Comodo SSL Seal does not work in theme #131032
     Radu
    Moderator

    Ok,

    In this case you should add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    
    div#tl_popupCL1 {
        z-index: 99 !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: Customize Profile Icons & Media Section #131015
     Radu
    Moderator
    Not marked as solution
    in reply to: Styling Specific Tabs #131009
     Radu
    Moderator

    Hi,

    Let’s solve this quick 🙂

    You can style content of each tab using this css

    COPY CODE
    
    div#tab-bedrock {
        background: red !important;
        color: #fff;
    }
    
    div#tab-credentials_management {
        background: yellow;
        color: #000;
    }
    
    div#tab-payments_processing {
        background: green;
        color: #fff;
    }
    

    That was possible by matching the ID of the elements, without the element id name this was not possible, you should add to that section that contains the tabs an custom class to can match the rest of the elements that you need to style, please quick summarize me what do you want to achieve in your next message

    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: Comodo SSL Seal does not work in theme #131000
     Radu
    Moderator

    Hi,

    I cannot this code on my localhost because it’s allowed to run only to your domain, paste the last code that you have provided there, most probably this will work.

    I’ve told you where you can paste html+js code, in raw html vc element

    COPY CODE
    
    <script language="JavaScript" type="text/javascript">
    TrustLogo("https://advantage20.com/wp-content/uploads/2015/05/comodo_secure_seal_113x59_transp.png", "CL1", "none");
    </script>
    
    <a href="javascript:if(window.open('https://secure.comodo.com/ttb_searcher/trustlogo?v_querytype=W&v_shortname=CL1&v_search=https://advantage20.com/test-comodo/&x=6&y=5','tl_wnd_credentials'+(new Date()).getTime(),'toolbar=0,scrollbars=1,location=1,status=1,menubar=1,resizable=1,width=374,height=660,left=60,top=120')){};tLlB(tLTB);" onmouseover="tLeB(event,'https://secure.comodo.com/ttb_searcher/trustlogo?v_querytype=C&v_shortname=CL1&v_search=https://advantage20.com/test-comodo/&x=6&y=5','tl_popupCL1')" onmousemove="tLXB(event)" onmouseout="tLTC('tl_popupCL1')" ondragstart="return false;" rel="nofollow"><span style="display:none">
    <img src="https://advantage20.com/wp-content/uploads/2015/05/comodo_secure_seal_113x59_transp.png" border="0" onmousedown="return tLKB(event,'https://secure.comodo.com/ttb_searcher/trustlogo?v_querytype=W&v_shortname=CL1&v_search=https://advantage20.com/test-comodo/&x=6&y=5');" oncontextmenu="return tLLB(event);"/></span>
    </a>
    
    <div id="tl_popupCL1" name="tl_popupCL1" style="position:absolute;z-index:0;visibility: hidden;background-color: transparent;overflow:hidden;" onmouseover="tLoB('tl_popupCL1')" onmousemove="tLpC('tl_popupCL1')" onmouseout="tLpB('tl_popupCL1')"></div>
    

    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: Posts tab on member page #130909
     Radu
    Moderator

    Hi,

    We don’t have a quick solution for what you need, you can use social articles but hiding the new articles page from the submenu with this css

    COPY CODE
    
    #buddypress div.item-list-tabs#subnav ul li#new-personal-li {display:none !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: Font sizes do not save & font names aren’t visible #130906
     Radu
    Moderator

    Hi,

    Please add this line in wp-content/themes/kleo-child/functions.php

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

    try again

    Let me know

    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: Create an Amazon post #130890
     Radu
    Moderator

    Try with a sample link not with a button

    So add a post with this code in it and choose link template

    COPY CODE
    
    <a href="http://google.com/" target="_blank">My external link</a>
    

    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: Customize Profile Icons & Media Section #130885
     Radu
    Moderator
    Not marked as solution
    in reply to: Comodo SSL Seal does not work in theme #130879
     Radu
    Moderator

    Hi,

    just i’ve copied the entire code from the footer and i’ve pasted on a page with and without visual composer ant it works, see in this video how :

    I’ve used this code https://drive.google.com/file/d/0Bxo5b6iHWRMwWXRnNWpFUFIyak0/view

    COPY CODE
    
    <script language="JavaScript" type="text/javascript">
    TrustLogo("https://advantage20.com/wp-content/uploads/2015/05/comodo_secure_seal_113x59_transp.png", "CL1", "none");
    </script>
    
    <a href="javascript:if(window.open('https://secure.comodo.com/ttb_searcher/trustlogo?v_querytype=W&v_shortname=CL1&v_search=https://advantage20.com/test-comodo/&x=6&y=5','tl_wnd_credentials'+(new Date()).getTime(),'toolbar=0,scrollbars=1,location=1,status=1,menubar=1,resizable=1,width=374,height=660,left=60,top=120')){};tLlB(tLTB);" onmouseover="tLeB(event,'https://secure.comodo.com/ttb_searcher/trustlogo?v_querytype=C&v_shortname=CL1&v_search=https://advantage20.com/test-comodo/&x=6&y=5','tl_popupCL1')" onmousemove="tLXB(event)" onmouseout="tLTC('tl_popupCL1')" ondragstart="return false;"><img src="https://advantage20.com/wp-content/uploads/2015/05/comodo_secure_seal_113x59_transp.png" border="0" onmousedown="return tLKB(event,'https://secure.comodo.com/ttb_searcher/trustlogo?v_querytype=W&v_shortname=CL1&v_search=https://advantage20.com/test-comodo/&x=6&y=5');" oncontextmenu="return tLLB(event);"></a>
    
    <div id="tl_popupCL1" name="tl_popupCL1" style="position:absolute;z-index:0;visibility: hidden;background-color: transparent;overflow:hidden;" onmouseover="tLoB('tl_popupCL1')" onmousemove="tLpC('tl_popupCL1')" onmouseout="tLpB('tl_popupCL1')"></div>
    

    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: Private Message Button Color #130875
     Radu
    Moderator

    Use with this values instead

    COPY CODE
    
    div#send-private-message {
    background-color:red !important;
    color:yellow !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: Woocommerce 2.6 shipping issue #130699
     Radu
    Moderator
    Not marked as solution
    in reply to: Mobile view issues #130678
     Radu
    Moderator
    Hi, add this css to wp-admin -> theme options -> general settings -> quick css
    #buddypress form#whats-new-form #whats-new-content input#aw-whats-new-submit {
        float: right !important;
    }
    
    Let me know Cheers R.
    in reply to: Problems with Buddypress page #130676
     Radu
    Moderator

    Hi,

    Most probably there is something wrong with the security plugins or with the server???

    The console says

    COPY CODE
    
    http://www.nintendon.it/wp-content/plugins/buddypress/bp-activity/css/mentions.min.css Failed to load resource: net::ERR_EMPTY_RESPONSE
    http://www.nintendon.it/wp-content/plugins/gif-animation-preview/gapplayer.min.css Failed to load resource: net::ERR_EMPTY_RESPONSE
    http://www.nintendon.it/wp-content/themes/kleo-child/style.css Failed to load resource: net::ERR_EMPTY_RESPONSE
    http://www.nintendon.it/wp-content/themes/kleo/buddypress/css/buddypress.css Failed to load resource: net::ERR_EMPTY_RESPONSE
    jquery-migrate.min.js:2 JQMIGRATE: Migrate is installed, version 1.4.1
    https://googleads.g.doubleclick.net/pagead/id Failed to load resource: net::ERR_BLOCKED_BY_CLIENT
    https://static.doubleclick.net/instream/ad_status.js Failed to load resource: net::ERR_BLOCKED_BY_CLIENT
    VM11604:1 'webkitIDBFactory' is deprecated. Please use 'IDBFactory' instead.
    

    So according the console the css for the buddypress cannot be loaded ?!!?

    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: Mobile view issues #130652
     Radu
    Moderator
    Hi, It's not better if you will use this style instead to use that line, in this way it's enough space to view the content especially for mobile devices ?
    @media (max-width:768px) {
        
    body.activity-permalink #buddypress .activity-list li .activity-content, 
    body.activity-permalink #buddypress div.activity-comments {
        margin-left:0 !important;
    }
    body.activity-permalink #buddypress div.activity-meta {
        display: inline;
    }
    
    }
    
    
    
    Let me know Cheers R.
     Radu
    Moderator

    Hi,

    A. Go to wp-admin -> theme options -> buddypress -> Search form customization -> MAIN FORM -> Text before form

    B.

    COPY CODE
    
    .top-links {
        background: red !important;
        color: #fff;
    }
    

    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: Customize Profile Icons & Media Section #130634
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    The css works but you was have to change the values

    COPY CODE
    
    .form-header {
        border-left: 10px solid rgba(255, 168, 255, 0.3) !important;
        border-right: 10px solid rgba(255, 168, 255, 0.3) !important;
        border-top: 10px solid rgba(255, 255, 255, 0.3)!important;
    }
    .form-search, .form-header {
        background: none repeat scroll 0 0 #961f94 !important;
    }
    .form-search {
        border-left: 10px solid rgba(255, 255, 255, 0.3);
        border-right: 10px solid rgba(255, 255, 255, 0.3);
    }
    
    .form-search.custom div.custom.dropdown a.selector, .form-search.custom div.custom.dropdown a.current, .form-search.custom select {
        border: 1px solid #1FA8D1;
    }
    .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: red !important;
    }
    
    .form-search .button { background-color:yellow; color:red !important; }
    

    Apply this css and make your desired adjustments, tell me for what element you want to have a custom background on top bar ? provide screenshot that pointing out the element

    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: Problems with Buddypress page #130630
     Radu
    Moderator

    Hi,

    For the sidebar border use this css

    COPY CODE
    
    .main-color .sidebar-right, .main-color .sidebar-main {
        border-left: 1px solid #ddd;
    }
    

    And with the member widgets i cannot see any problem

    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
    Not marked as solution
     Radu
    Moderator

    Ok, in this case you can try to use this : https://wordpress.org/plugins/wp-recaptcha-bp/

    You can try to copy that code and to paste it into wp-content/themes/kleo-child/functions.php

    COPY CODE
    
    function bph_field_value() {
    echo get_bph_field_value();
    }
    function get_bph_field_value() {
    return apply_filters( 'get_bph_field_value', $_POST['bph_field'] );
    }
    
    function bph_check_validation(){
    global $bp;
    $bph_field_txt = $_POST['bph_field'];
    
    if (empty($bph_field_txt) || $bph_field_txt == '') {
    $bp->signup->errors['bph_field'] = __('This is a required field','buddypress');
    }
    return;
    }
    
    function bph_show_input_field(){?>
    <div style="float:right;width:268px;margin-right:4px;" class="bph_field_container">
    <label>Input Field Name</label>
    <?php do_action( 'bp_bph_field_errors' ) ?>
    <input type="text" name="bph_field" id="bph_field" value="<?php bph_field_value() ?>" /><br />
    
    </div><?php
    }
    
    add_action('bp_signup_validate', 'bph_check_validation');
    add_action('bp_before_registration_submit_buttons', 'bph_show_input_field');
    

    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: Private Message Button Color #130430
     Radu
    Moderator

    Hi,

    Try with this css

    COPY CODE
    
    div#send-private-message {
        display: none !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: Private Message Button Color #130429
     Radu
    Moderator

    Hi,

    Try with this css

    COPY CODE
    
    div#send-private-message {
        display: none !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: Assign to do to user in front end #130421
     Radu
    Moderator

    Hello,

    You will have to configure the plugin for your needs and then you should modify the shortcode from the page with something like :

    COPY CODE
    
    [todolist]
    
    [todoadmin title="Things to Do" priority=1 progress=1 assigned=1]
    

    From their forum support : https://wordpress.org/support/topic/cant-find-assign-task

    I will attach the plugin settings that you can import from wp-admin -> todolist -> settings -> import/export using these settings you will be able to have assign function, but you will have to change settings 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
    Attachments:
    You must be logged in to view attached files.
     Radu
    Moderator

    Hi,

    With the css that i gave you the image will be 100% of the original size and also the circle it’s 100% will be increased as the image size.

    For the avatar problem with the size add also this css to quick css area

    COPY CODE
    
    .buddypress div#item-header img.avatar {
        width: 100% !important;
    }
    

    You can add text there by using this solution https://archived.seventhqueen.com/forums/topic/show-custom-profile-fields/#post-46827

    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, You can use this shortcode [kleo_social_icons] in wp-admin -> theme options -> general settings -> Footer Text -> Add also this css to wp-admin -> theme options -> general settings -> quick css
    #socket ul.kleo-social-icons {
        text-align:center;
        
    }
    #socket ul.kleo-social-icons .ts-text {
        display: none;
        list-style: none !important;
        float:right;
    }
    
    #socket ul.kleo-social-icons li {
        list-style: none;
        display: inline-block;
        font-size: 20px;
    
    }
    
    In this way the icons will be rendered on a new line centered because using this it cannot be displayed inline with the rest of the footer text. If you really really need that, tell me what icons are you are using and provide the links to the social profiles, i will make a manual markup of these Cheers R.
    in reply to: Portfolio featured Image #130403
     Radu
    Moderator

    Try to apply this css into quick css area

    COPY CODE
    
    .single.single-portfolio .wrap-content .portfolio-image {display:none;}
    

    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: Customize Profile Icons & Media Section #130399
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 1,601 through 1,640 (of 2,990 total)

Log in with your credentials

Forgot your details?