Forum Replies Created

Viewing 40 posts - 2,401 through 2,440 (of 2,990 total)
  • Author
  • in reply to: Activity Stream is hides Pictures and Websites #93676
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    
    #buddypress .activity li.updated_profile {
        display: none;
    }
    
    

    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: Last Active Details #93673
     Radu
    Moderator

    Hi,

    Please add this css to your wp-admin -> theme options -> styling options -> quick CSS

    COPY CODE
    
    body.home span.activity {
        display: none;
    }
    
    #groups-list .search-item p.date { 
    display:none;
    }
    
    #profile span.activity {
        display: none;
    }
    

    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: Sign in form #93415
     Radu
    Moderator

    Hi,

    You can change the background and border with this CSS

    COPY CODE
    
    .reveal-modal {
        background: url(http://imgsv.imaging.nikon.com/lineup/lens/zoom/normalzoom/af-s_dx_18-140mmf_35-56g_ed_vr/img/sample/sample1_l.jpg);
        border: 10px solid #fafafa;
    }
    

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

    Replace image url with your desired image url, replace #fafafa 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: Problem with the footer/socket #93222
     Radu
    Moderator

    Hi,

    You should to add some empty lines to can fill the page with “content”
    Add some BR’s

    COPY CODE
    
    <br>
    <br>
    <br>
    <br>
    <br>
    <br>
    

    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 put a revolution slider in all post #93197
     Radu
    Moderator

    It’s done,

    I’ve used this function

    COPY CODE
    
    
    function KleoAddSlideUnderPosts( $content ) {
     
        if( is_single() ) {
     
            $revslidershortcode = do_shortcode('[rev_slider alias="acc3"]');
            $content .= $revslidershortcode;
        }
     
        return $content;
     
    }
    add_filter('the_content', 'KleoAddSlideUnderPosts');
    

    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: Profile image by register #93172
     Radu
    Moderator

    Hi,

    The code can be pasted in bp-custom.php from wp-content/plugins/

    COPY CODE
    
    define ( 'BP_AVATAR_DEFAULT', 'http://www.petfinder.com/wp-content/uploads/2012/11/101418789-cat-panleukopenia-fact-sheet-632x475.jpg' );
    

    Replace http://www.petfinder.com/wp-content/uploads/2012/11/101418789-cat-panleukopenia-fact-sheet-632×475.jpg with your desired default img.

    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: home page #93141
     Radu
    Moderator

    Hi,

    Please add this css to your wp-admin -> theme options -> styling options -> quick css

    COPY CODE
    
    .revslider-head.absolute-head .form-wrapper {
        margin-top: 50px !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: Fonts Awesome #92674
     Radu
    Moderator

    Hi,

    You have added to head this ?

    COPY CODE
    
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
    

    The resource it seems to be loaded.

    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: Custom Sidebar in Custom Post/Taxonomy Archive #92668
     Radu
    Moderator

    Hi,

    Add this snippet to your wp-content/theme/kleo-child/functions.php

    COPY CODE
    
    
    
    function add_before_my_siderbar() { ?>
       
    < ?php
    if (is_archive()) { ?>
    <div class="sidebar sidebar-main col-sm-3 sidebar-3rr">
    	<div class="inner-content widgets-container">
     
    		< ?php dynamic_sidebar('for home'); ?>
     
    	</div><!--end inner-content-->
    </div><!--end sidebar-->
    < ?php } ?>
     
     
    < ?php
    }
    add_action( 'get_sidebar', 'add_before_my_siderbar' );
    
    function add_before_my_siderbar() { ?>
       
    < ?php
    if (is_archive()) { ?>
    <div class="sidebar sidebar-main col-sm-3 sidebar-right">
    	<div class="inner-content widgets-container">
     
    		< ?php dynamic_sidebar('For Custom Taxonomy'); ?>
     
    	</div><!--end inner-content-->
    </div><!--end sidebar-->
    < ?php } ?>
     
     
    < ?php
    }
    add_action( 'get_sidebar', 'add_before_my_siderbar' );
    

    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: Top main menu #92667
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    #header .is-sticky .header-scrolled {
        background-color: #fff !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: Galaxy Particles Break Buttons #92662
     Radu
    Moderator

    Hi,

    If you are locally i cannot view the example running, try to set position relative for that button via CSS

    COPY CODE
    
    position:relative !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
    in reply to: display a different sidebar on archive #92634
     Radu
    Moderator

    Hi,

    I’ve used this code instead

    COPY CODE
    
    function add_before_my_siderbar() { ?>
       
    <?php
    if (is_archive()) { ?>
    <div class="sidebar sidebar-main col-sm-3 sidebar-3rr">
    	<div class="inner-content widgets-container">
     
    		<?php dynamic_sidebar('for home'); ?>
     
    	</div><!--end inner-content-->
    </div><!--end sidebar-->
    <?php } ?>
     
     
    <?php
    }
    add_action( 'get_sidebar', 'add_before_my_siderbar' );
    

    The problem was this class "sidebar-3rr"

    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: Woocommerce Products #92626
     Radu
    Moderator

    Hi,

    Done

    I’ve added in child theme content-product.php to wp-content/themes/sweetdate-child/woocommerce/content-product.php

    the content of the content-product.php is

    COPY CODE
    
    <?php
    /**
     * The template for displaying product content within loops.
     *
     * Override this template by copying it to yourtheme/woocommerce/content-product.php
     *
     * @author 		WooThemes
     * @package 	WooCommerce/Templates
     * @version 2.4.0
     */
    
    if ( ! defined( 'ABSPATH' ) ) {
    	exit; // Exit if accessed directly
    }
    
    global $product, $woocommerce_loop;
    
    // Store loop count we're currently on
    if ( empty( $woocommerce_loop['loop'] ) ) {
    	$woocommerce_loop['loop'] = 0;
    }
    
    // Store column count for displaying the grid
    if ( empty( $woocommerce_loop['columns'] ) ) {
    	$woocommerce_loop['columns'] = apply_filters( 'loop_shop_columns', 4 );
    }
    
    // Ensure visibility
    if ( ! $product || ! $product->is_visible() ) {
    	return;
    }
    
    // Increase loop count
    
    
    $woocommerce_loop['loop']++;
    
    // Extra post classes
    $classes = array();
    if ( 0 == ( $woocommerce_loop['loop'] - 1 ) % $woocommerce_loop['columns'] || 1 == $woocommerce_loop['columns'] ) {
    	$classes[] = 'first';
    }
    if ( 0 == $woocommerce_loop['loop'] % $woocommerce_loop['columns'] ) {
    	$classes[] = 'last';
    }
    ?>
    
    
    

    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: Woocommerce #92623
     Radu
    Moderator

    Hi,

    I see this notice on your localization plugin dashboard on woocommerce section

    COPY CODE
    
    Compatibility: Loading Issue: Author is using load_textdomain instead of load_plugin_textdomain function. This may break behavior of WordPress, because some filters and actions won't be executed anymore. Please contact the Author about that.
    

    Use loco translate instead : https://docs.woothemes.com/document/woocommerce-localization/

    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: Size button #92460
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    #buddypress .message-search { width: 100% !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: Demo for Community Blog #92455
     Radu
    Moderator

    Hi,

    I’ve tried again and it works, i received this email

    COPY CODE
    
    Thanks for registering! To complete the activation of your account please click the following link:
    http://earlyinterventionist.com/activation/c46b033cbce0e6e1524fa6828132e6b8/
    

    I accessed the link and i receive success notification ( see attachment )

    Regarding the whitepage, i not see something like that, the dashboard it works as you can see in second screenshot.

    I don’t see any problem with the theme.

    Make a test with a new email address that you have not using to signup on your website.

    And if you still encounter problems please tell me exact steps to reproduce your described issues.

    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: Post Related order #92451
     Radu
    Moderator

    Hi,

    There is no option to change the order of those elements.

    It can be done but i will require some custom modifications to the article template file.

    Regarding the custom text after article please add this function to wp-content/themes/kleo-child/functions.php

    COPY CODE
    
    function KleoAddSlideUnderPosts( $content ) {
    
        if( is_single() ) {
    
            $MyText = '<h3 style="text-align: center;">My Custom Text</h3>';
            $content .= $MyText;
        }
    
        return $content;
    
    }
    add_filter('the_content', 'KleoAddSlideUnderPosts');
    
    

    Replace My Custom Text with your desired text

    NOTE : Child theme needs to be activated.

    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: Text on some pages not responsive width #92430
     Radu
    Moderator

    Hi,

    TRy to add this in quick css from wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    @media (max-width:768) {
    div.w2dc-content .w2dc-fields-group .w2dc-field-content { display: block !important; }
    }
    

    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: Customizing Activity Stream #92419
     Radu
    Moderator

    Hi,

    Try with this css

    COPY CODE
    
    #buddypress div.activity-meta {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    #buddypress .activity-list .activity-content .activity-inner {
        margin: 0 !important;
        padding: 0 ;
        padding-bottom: 10px !important;
    }
    
    #buddypress ul.item-list li {
        padding-top: 0px !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: youtube embed #92151
     Radu
    Moderator

    This issue is happening because the iframe has width and height specified.

    You can make this available only for tablets and desktops by using this

    COPY CODE
    
    @media (min-width:750px) {
    .article-content iframe { max-height: 440px !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: Customizing Activity Stream #92131
     Radu
    Moderator

    Hi,

    Add the CSS’s to wp-admin -> theme options -> general settings -> quick CSS

    Space reduced

    COPY CODE
    
    #buddypress div.activity-meta {padding-bottom: 10px !important;}
    

    Square button

    COPY CODE
    
    .logged-in #buddypress div.activity-meta a.button {
        border-radius: 1px !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: youtube embed #92120
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    .article-content p iframe { max-height: 440px !important; }
    

    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: Responsive #92102
     Radu
    Moderator

    Please check now, it should work.

    i’ve used this css

    COPY CODE
    
    @media screen and (max-width: 768px) {
    .vc_navbar li, .navbar-header { display: block !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: Pagination Post problem with Yuzo plugin #91918
     Radu
    Moderator

    Hi,

    Sorry for the late reply,

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

    COPY CODE
    
    .article-content .page-links {
        display: inline-block;
        text-align: center;
        margin-top: 20px;
        width: 100%;
        font-size: 1.2em;
    }
    

    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: breadcrumb yoast #91901
     Radu
    Moderator

    Hi,

    You can use breadcrumbs from yoast in kleo by copying this file : /wp-content/themes/kleo/page-parts/general-header-section.php
    to : wp-content/themes/kleo-child/page-parts/

    Then open general-header-section.php from wp-content/themes/kleo-child/page-parts/ and before last div paste the code from above. ( see screenshot )

    COPY CODE
    
        <?php if ( function_exists('yoast_breadcrumb') )
        {yoast_breadcrumb('<div class="container"><p id="breadcrumbs">','</p></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
    Attachments:
    You must be logged in to view attached files.
    in reply to: horizontal login box #91888
     Radu
    Moderator

    Hi,

    Try like this

    COPY CODE
    
    div#kleo-login-modal .row {
        background-image: url(http://www.keenthemes.com/preview/metronic/theme/assets/global/plugins/jcrop/demos/demo_files/image1.jpg);
    }
    div#kleo-login-modal .kleo-pop-title-wrap.main-color {background-color:transparent;color: #FFF !important;}
    div#kleo-login-modal .kleo-fb-wrapper { background:none !important;  }
    

    Add this css to wp admin -> theme options -> general settings -> quick css or in kleo-child/style.css

    Replace http://www.keenthemes.com/preview/metronic/theme/assets/global/plugins/jcrop/demos/demo_files/image1.jpg with your image url.

    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: Primary Menu corruption #91884
     Radu
    Moderator

    Hi,

    Please provide an dummy account to can view your website, i receive this

    COPY CODE
    
    Oops! You’ve reached an area that isn’t associated with your purchase.
    If you think you reached this page and this is incorrect, please contact us at support@deeporigins.com. and we’ll make sure to take care of you!
    If you’re already a member or if you’ve been logged out on accident, please login below.
    

    Our latest version of Kleo is 3.1.3

    Make sure that this issue is not caused by some plugin by disabling all plugins that not comes once with kleo.

    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: Drop Down Menu Color #91877
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> general settings- > quick css or in kleo-child/style.css

    COPY CODE
    
    ul.dropdown-menu.sub-menu.pull-left li {background-color: darkblue;}
    ul.dropdown-menu.sub-menu.pull-left li a { color:#fff !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: Template Notices #91645
     Radu
    Moderator

    Hi,

    template_notices is part of buddypress

    read this : https://buddypress.org/support/topic/modifying-output-of-template_notices/

    The action is present in many files of our theme

    COPY CODE
    
    Targets
        Occurrences of 'template_notices' in Directory \KLEO 3.1.1\kleo
    Found Occurrences  (17 usages found)
        Usage in string constants  (17 usages found)
            kleo  (17 usages found)
                bbpress  (4 usages found)
                    content-single-user.php  (1 usage found)
                        (14: 24) <?php do_action( 'bbp_template_notices' ); ?>
                    form-forum.php  (1 usage found)
                        (60: 27) <?php do_action( 'bbp_template_notices' ); ?>
                    form-reply.php  (1 usage found)
                        (49: 27) <?php do_action( 'bbp_template_notices' ); ?>
                    form-topic.php  (1 usage found)
                        (66: 27) <?php do_action( 'bbp_template_notices' ); ?>
                buddypress\activity  (1 usage found)
                    index.php  (1 usage found)
                        (13: 20) <?php do_action( 'template_notices' ); ?>
                buddypress\activity\single  (1 usage found)
                    home.php  (1 usage found)
                        (2: 20) <?php do_action( 'template_notices' ); ?>
                buddypress\blogs  (1 usage found)
                    create.php  (1 usage found)
                        (4: 19) <?php do_action( 'template_notices' ); ?>
                buddypress\forums  (1 usage found)
                    index.php  (1 usage found)
                        (84: 24) <?php do_action( 'template_notices' ); ?>
                buddypress\groups  (2 usages found)
                    create.php  (1 usage found)
                        (19: 21) <?php do_action( 'template_notices' ); ?>
                    index.php  (1 usage found)
                        (15: 21) <?php do_action( 'template_notices' ); ?>
                buddypress\groups\single  (1 usage found)
                    group-header.php  (1 usage found)
                        (74: 13) do_action( 'template_notices' );
                buddypress\members  (4 usages found)
                    activate.php  (1 usage found)
                        (7: 21) <?php do_action( 'template_notices' ); ?>
                    register.php  (3 usages found)
                        (10: 22) <?php do_action( 'template_notices' ); ?>
                        (20: 22) <?php do_action( 'template_notices' ); ?>
                        (186: 22) <?php do_action( 'template_notices' ); ?>
                buddypress\members\single  (1 usage found)
                    member-header.php  (1 usage found)
                        (66: 19) <?php do_action( 'template_notices' ); ?>
                kleo-framework\lib  (1 usage found)
                    function-facebook-login.php  (1 usage found)
                        (353: 14) add_action( 'template_notices', 'kleo_fb_register_message' );
    
    

    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: Button Design with #91639
     Radu
    Moderator

    Hi,

    This issue will be fixed in next update of kleo until then i will provide you a temporary solution for these.

    1. Comment submit button

    COPY CODE
    
    body.single input#submit {
        padding: 14px 20px;
        font-size: 16px;
        line-height: 1.33;
        border-radius: 4px;
        border-color: #e30613;
        color: #fff;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        background-color: #e30613;
        cursor: pointer;
        border: 1px solid transparent;
    }
    

    2.Empty category

    COPY CODE
    
    body.archive .page-content input#searchsubmit { 
        padding: 3px 20px;
        font-size: 16px;
        line-height: 1.33;
        border-radius: 4px;
        border-color: #e30613;
        color: #fff;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        background-color: #e30613;
        cursor: pointer;
        border: 1px solid transparent;
    }
    
    

    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: The upper points should not open a new page #91285
     Radu
    Moderator

    Hi,

    Try whith css

    COPY CODE
    
    .navbar-transparent.on-dark-bg .navbar .navbar-nav>li { margin-top:30px !important }
    .navbar-transparent.on-dark-bg .navbar .navbar-nav>li>a {line-height: 30px !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
    in reply to: Fetch group cover inside loop? #91228
     Radu
    Moderator

    Hi,

    It works try now.

    COPY CODE
    
    <?php
    $user_id = bp_displayed_user_id();
    $getusername = bp_get_displayed_user_username();
    $args = array(
        'type' => 'alphabetical',
        'max' => 6,
        'user_id' => $user_id
    );
    
    if ( bp_has_groups ( $args )) { ?>
    
        <div class="inner-right">
    
            <h3><?php echo $firstname; ?>'s <a href="http://www.cultexposure.com/members/<?php echo $getusername; ?>/groups/">groups</a></h3>
    
            <ul id="profile-group-list-wrap" class="my-groups-list item-list">
    
                <?php while ( bp_groups() ) : bp_the_group(); ?>
                    <?php $image_url = groups_get_groupmeta( bp_get_group_id(), 'bpcp_group_cover' ); ?>
    
                    <?php print_r($image_url);?>
    
                    <li class="profile-group-list" style="background-image:url('<?php echo $image_url; ?>')" >
                                                <div class="item-avatar">
                                                    <a href="<?php bp_group_permalink() ?>"><?php bp_group_avatar_thumb() ?></a>
                                                </div>
    
                                                <div class="item">
                                                    <div class="item-title"><a href="<?php bp_group_permalink() ?>" title="<?php bp_group_name() ?>"><?php bp_group_name() ?></a></div>
                                                    <div class="item-meta"><span class="activity"><?php bp_group_member_count() ?></span></div>
                                                </div>
                                            </li>
    
                                        <?php endwhile; ?>
            </ul>
    
            <div class="homepage-btn">
                <a href="http://www.cultexposure.com/members/<?php echo $getusername; ?>/groups/"><span></span>Browse your groups</a>
            </div>
    
        </div>
    <?php } ?>
    
    
    
    

    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: sticky top bar #91209
     Radu
    Moderator

    Hi,

    Try with this css

    COPY CODE
    
    .social-header {
        position: fixed !important;
        width: 100% !important;
        display: block !important;
        margin-bottom: 10px !important;
        height:35px
    }
    .kleo-main-header.header-scrolled {
        margin-top: 33px !important;
    }
    
    div#undefined-sticky-wrapper { margin-top: 35px; }
    

    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: Button Position #90966
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    body.home .vc_btn3-container.vc_btn3-inline {
        text-align: center !important;
        margin: 0 auto !important;
        display: table;
    }
    

    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: Advanced Search Tab Not Showing Up #90961
     Radu
    Moderator

    Hi,

    You should put this shortcode into a text widget in sidebar under members widget.

    COPY CODE
    
    [kleo_search_members before="Advanced Search" profiles=1]
    

    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: Add search box to the Side Menu #90936
     Radu
    Moderator

    Hi,

    Add this shortcode to : wp-admin -> theme options -> side menu -> before menu text

    COPY CODE
    
    [kleo_search_form context="members,groups,post,page,forum,product,portfolio" placeholder="Search..."]
    

    Let me know if it 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: Visual composter Issue #90928
     Radu
    Moderator

    Hi,

    Add this function to kleo-child/functions.php

    COPY CODE
    
    function MyRedirect() {
        if(is_page('register')) {
            wp_redirect( 'http://cpachess.com/register/', 301 );
            exit;
        }
    }
    add_action('template_redirect','MyRedirect');
    

    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: Fetch group cover inside loop? #90926
     Radu
    Moderator

    Hi,

    Try with this

    COPY CODE
    
        $image_url = groups_get_groupmeta( bp_get_group_id(), 'bpcp_group_cover' );
    
    

    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: How to star a conversation #90917
     Radu
    Moderator

    Hi,

    Sorry for misunderstanding,

    Please replace this file /wp-content/themes/sweetdate/members/single/messages/messages-loop.php with the attached file.

    Add also this CSS to wp-content/themes/sweetdate-child/style.css

    COPY CODE
    
    td.thread-star a span.bp-screen-reader-text { position: relative !important; }
    
    

    This fix will be implemented in next sweetdate update.

    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.
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    .sidebar ul.menu li.parent ul.sub-menu {
        display: block !important;
    }
    

    Let me know if it 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
Viewing 40 posts - 2,401 through 2,440 (of 2,990 total)

Log in with your credentials

Forgot your details?