Forum Replies Created

Viewing 40 posts - 11,881 through 11,920 (of 20,101 total)
  • Author
  •  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: free member ship #130424
     Radu
    Moderator

    no 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
    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
    in reply to: Problems with Buddypress page #130418
     Radu
    Moderator

    Hi,

    If you de-activate all plugins except buddypress , the problems disappears ?

    If you de-activate child theme the problems disappears ?

    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: Full width does not work #130415
     Radu
    Moderator

    Hi,

    Please tell me in what page do you encounter this problem ? anyway you can control the template on page level not only sidewide from theme options

    Make sure if that certain page that not goes full with has this setting

    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: Profile images from Facebook not loading in Firefox #130414
     Radu
    Moderator

    Hi,

    Now it shows the image : https://getinspiredmagazine.com/members/katherine-daykin/ if you open image url it’s hosted on facebook, so it works maybe you have solved meanwhile

    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,

    Do you have tried this file : /wp-content/themes/kleo/page-parts/general-title-section.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: free member ship #130412
     Radu
    Moderator

    Just leave the menu created but empty with no items added

    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: Having everything work together? #130411
     Radu
    Moderator

    Hi again,

    You’re welcome 🙂

    Please tell me “Tutor” and “Parent” those are member types ? or what ,how do you have created these ?

    If yes, read this : https://buddypress.org/support/topic/2-2-member-types-setting-user-member-types-during-registration-xprofile/

    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: Avatar on single post #130410
     Radu
    Moderator

    Hi,

    You’re welcome

    If you want to add additional information there like meta author ? What are you asking it’s seems to be something custom… you can inspire from the function that i have provided to you 😀

    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

    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

    You’re welcome

    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: Making Home Default the main page #130401
     Radu
    Moderator
    Not marked as solution
    in reply to: Customize Profile Icons & Media Section #130399
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Please make sure that you put mo and po files in same exact location with exact filenames

    Example if you have downloaded po and mo files from wp-content/languages/ you should upload it to same location and so on….

    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: Accordion section for single product page #130397
     Radu
    Moderator

    Hi,

    I’ve spooked with my colleagues about this and … there is no problem and it’s seems to be a normal behaviour, the thing is, you have a lot of content on the description area and when you press and open a new tab, the description tab will collapse and the description will be hidden and the new opened tab opened…. it makes sense ?

    Try to put the description of products into short description not in description area, to display short description in the product page you should enable this option Show excerpt on product page -> ON from wp-admin -> theme options -> woocommerce

    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 Buddypress bugs #130395
     Radu
    Moderator

    You’re welcome

    If you are pleased with the support service please very much to leave a short review … few words about your experience with the support service.

    Thank you in advance

    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: Insert an element in a scrollable frame #130394
     Radu
    Moderator

    Hi,

    Replace with these

    COPY CODE
    
    ul.site-wide-stream.swa-activity-list.swa-clearfix > li {
    -webkit-animation: none !important;
    -o-animation: none !important;
    animation: none !important;
    opacity: 1 !important;
    -moz-transform: none !important;
    -webkit-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
    }
    
    #main-container .article-content .widget_bp_swa_widget .swa-wrap {
    -webkit-animation: none !important;
    -o-animation: none !important;
    animation: none !important;
    opacity: 1 !important;
    -moz-transform: none !important;
    -webkit-transform: none !important;
    -o-transform: none !important;
    transform: none !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: custom post type #130393
     Radu
    Moderator

    Hi,

    Using Kleo Posts element with a custom type you will have to press build query and to choose your desired post type, see this video : https://drive.google.com/file/d/0Bxo5b6iHWRMwd2tlZExLV0JWU0E/view

    Just check your post type and made additional settings, it should work.

    Let me know

    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,

    Go to your page that uses the kleo_register shortcode and edit it and make sure you have Allow BuddyPress plugin hook before submit -> YES

    Install this plugin to use captcha http://wordpress.org/plugins/buddypress-recaptcha/

    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: Enable Caption in Prettybox #130384
     Radu
    Moderator

    Hi,

    Make sure you check this option from Single Image element

    And also make sure you had added an caption for that photo, go to wp-admin -> media -> choose your photo and add on caption field your desired text

    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: Enable Caption in Prettybox #130383
     Radu
    Moderator

    Hi,

    Make sure you check this option from Single Image element

    And also make sure you had added an caption for that photo, go to wp-admin -> media -> choose your photo and add on caption field your desired text

    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: Avatar on single post #130298
     Radu
    Moderator

    Hi,

    Please replace that function with this

    COPY CODE
    
    add_action('kleo_before_main', 'sq7rdu_show_featured_before_content');
    function sq7rdu_show_featured_before_content() {
        if (is_single()) {
            if (has_post_thumbnail()) {
                echo '<div class="fullwidth-image-before-content">';
                echo the_post_thumbnail('full');
                echo '</div>';
            }
        }
    }
    

    Then use this css

    COPY CODE
    
    .fullwidth-image-before-content img {
        width: 100% !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: free member ship #130295
     Radu
    Moderator

    Hi,

    The only shortcode for register/search is [kleo_register_form] but i thinks it’s not what are you looking for.

    A button can be added to the homepage editing the homepage and to add there the link with the button.

    Example

    COPY CODE
    
    <a href="/register">REGISTER</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: Avatar on single post #130292
     Radu
    Moderator

    If the image are sufficient large no, if you need some small css adjustments provide post url to can see it

    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 Buddypress bugs #130291
     Radu
    Moderator

    Hi,

    I cannot figure out what’s causes that but if you will use this css it will be visible

    COPY CODE
    
    .groups #buddypress .responsive-tabs li {
        width: 100% !important;
    }
    

    Maybe a plugin can causes this.

    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: Insert an element in a scrollable frame #130290
     Radu
    Moderator

    Hi,

    Use this css

    COPY CODE
    
    
    #main-container .article-content .widget_bp_swa_widget .swa-wrap {
    -webkit-animation: none !important;
    -o-animation: none !important;
    animation: none !important;
    opacity: 1 !important;
    -moz-transform: none !important;
    -webkit-transform: none !important;
    -o-transform: none !important;
    transform: none !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
    in reply to: Pop up message #130288
     Radu
    Moderator

    yes but the admin credentials not wokrs

    provide also the page where you have done tests please

    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: Pop up message #130282
     Radu
    Moderator

    Take a look https://drive.google.com/file/d/0Bxo5b6iHWRMwU2JibEdLd19SeEE/view

    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: Pop up message #130280
     Radu
    Moderator

    The server authentification doens’t work

    Check please

    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: Align article meta with the article content #130279
     Radu
    Moderator
    Not marked as solution
    in reply to: Matching contact form in KLEO Agency Demo #130277
     Radu
    Moderator

    Hi,

    Try with this html structure

    COPY CODE
    
    
    <div class="form-inline">
      <input type="text" id="name" class="form-control input-lg" name="name" placeholder="Name">
    <input type="email" id="mc4wp_email" class="input-lg" name="EMAIL" placeholder="Your email address" required />
    <a class="btn btn-highlight btn-lg form-submit">SUBSCRIBE</a>
    </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: Activity post button disappears.. #130276
     Radu
    Moderator

    Thank you for that and for your kind words and for your appreciation.

    Regards
    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,

    The menus restriction based on specific user id or username it’s not available…

    You can create/edit a new role with this plugin : https://wordpress.org/plugins/user-role-editor/

    I recommend you to assign certain roles for specific users to show that certain menu only for that roles.

    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: sms verification after user register #130272
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 11,881 through 11,920 (of 20,101 total)

Log in with your credentials

Forgot your details?