Forum Replies Created

Viewing 40 posts - 1,441 through 1,480 (of 2,990 total)
  • Author
  • in reply to: Background, header and breadcrumbs #135859
     Radu
    Moderator
    Not marked as solution
    in reply to: Activity stream shortcode #135847
     Radu
    Moderator

    Hi,

    Try to put both elements separate by comma like this

    COPY CODE
    
    <script>
    jQuery( document ).ready(function() {
    	(function(jQuery){
    	        jQuery('#text-11,#text-12,text-13').affix({
    	          offset: {
    	            top: 600,
    	            bottom: 0,
    	          }
    	        });
    	    })
    	( jQuery );
    });
    </script>
    

    Or copy and paste again the snippet and specify another element id

    COPY CODE
    
    <script>
    jQuery( document ).ready(function() {
    	(function(jQuery){
    	        jQuery('#mysuperdiv').affix({
    	          offset: {
    	            top: 600,
    	            bottom: 0,
    	          }
    	        });
    	    })
    	( jQuery );
    });
    </script>
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Facebook Registration redirect to original page #135842
     Radu
    Moderator

    Try with this

    COPY CODE
    
    function custom_redirect_link_facebook_login(){
        
        global $post;
        $reloadcurrentpage = get_permalink();
        return $reloadcurrentpage;
    }
    
    add_filter('kleo_fb_register_redirect','custom_redirect_link_facebook_login');
    

    LEt me know

    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: Problem Javascript Buddypress #135646
     Radu
    Moderator
    Not marked as solution
    in reply to: Post and Page exerpt in activity feed #135643
     Radu
    Moderator

    Hi,

    By loading this css to your site it will looks like good format picture

    COPY CODE
    
    
    .activity li.blogs.new_blog_post .activity-content .activity-inner p img {
        display: none;
    }
    

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

    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 – SQUARE/CIRCLE #135620
     Radu
    Moderator

    Sure, with this css

    COPY CODE
    
    li.kleo-user_avatar-nav a img { border:2px solid #ddd;}
    

    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: Submit button on forums all the way to right #135614
     Radu
    Moderator

    Add also this css

    COPY CODE
    
    .bbp-submit-wrapper {
        float: left !important;
    }
    

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

    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
    in reply to: Submit button on forums all the way to right #135613
     Radu
    Moderator

    Add also this css

    COPY CODE
    
    .bbp-submit-wrapper {
        float: left !important;
    }
    

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

    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: profile nav items and text screens #135612
     Radu
    Moderator

    Hi,

    You can modify these by using translation method but you will change the strings names

    Theme strings and plugins strings can easily be changed by using Loco Translate plugin https://wordpress.org/plugins/loco-translate/

    A small introduction on how translations work

    Translatable strings can come from the theme or from the installed plugins. You need to translate the theme or the plugin depending on what section of the site your string is found.

    For example if your string is on your BuddyPress profile then most probably you will need to translate BuddyPress plugin. If you are on the Forums section of your site then bbPress plugin should be the one that needs to be translated. Another example is the rtMedia plugin that adds the Media links to BuddyPress and if you want to translate it then this plugin will contain the string.

    Follow these steps to get you started:

    • Install Loco Translate plugin
    • Go to the plugin dashboard: WP Admin – Tools – Manage translations
    • Find the theme or plugin in the list.
    • If the language isn’t already in the list then click Add new language, choose your language and if you are asked where you want to save the language files choose global language directory ( wp-content/languages/ ).
    • Press SYNC button to synchronise your translation with the provided .pot file
    • Search for the string you want to translate and add your translated string.
    • Press Save when you finished your translation.

    Note: You will have to set the language for your blog from WP-admin – Settings – General – Site Language – Choose your language

    With this css you can remove that hr line

    COPY CODE
    
    .profile-edit .profile .hr-title.hr-full.hr-double {
        display: none !important;
    }
    

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

    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: Large gap between menu and sub-menu #135610
     Radu
    Moderator
    Not marked as solution
    in reply to: Request your help please team :) #135608
     Radu
    Moderator
    Not marked as solution
    in reply to: Activity stream shortcode #135604
     Radu
    Moderator

    Try to decrease the TOP value from the JS code and also remove the 1,2,3,4,5,6,7 Also try to add this additional css to have a better control increase or decrease the top value you should play with those settings to achive what you need:

    COPY CODE
    
        #text-11.affix {
            top: 100px !important;
            background: #fafafa;
            padding: 20px;
            width: 320px;
        }
    

    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: Facebook Registration redirect to original page #135591
     Radu
    Moderator

    Hi,

    Ok try this instead

    COPY CODE
    
    function custom_redirect_link_facebook_login(){
        global $wp;
    	$current_url = home_url(add_query_arg(array(),$wp->request));
        return $current_url;
    }
    
    add_filter('kleo_fb_register_redirect','custom_redirect_link_facebook_login');
    
     
    
    

    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: Large gap between menu and sub-menu #135521
     Radu
    Moderator
    Not marked as solution
    in reply to: Activity stream shortcode #135494
     Radu
    Moderator

    OK try with script tags

    COPY CODE
    
    <script>
    
    jQuery( document ).ready(function() {
    	(function(jQuery){
    	        jQuery('#text-11').affix({
    	          offset: {
    	            top: 600,
    	            bottom: 0,
    	          }
    	        });
    	    })
    	( jQuery );
    });
    
    </script>
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: YouTube #135480
     Radu
    Moderator
    Not marked as solution
    in reply to: Request your help please team :) #135473
     Radu
    Moderator
    Not marked as solution
    in reply to: force users to login/register #135468
     Radu
    Moderator
    Not marked as solution
    in reply to: Activity stream shortcode #135460
     Radu
    Moderator

    Hi,

    try with this code

    COPY CODE
    
    jQuery( document ).ready(function() {
    	(function(jQuery){
    	        jQuery('#text-11').affix({
    	          offset: {
    	            top: 600,
    	            bottom: 0,
    	          }
    	        });
    	    })
    	( jQuery );
    });
    

    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: got a neat issue with icons for forum #135445
     Radu
    Moderator

    Use this css

    COPY CODE
    
    body.bbpress.single.single-forum .template-page article .article-media {
        display: none !important;
    }
    

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

    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: AVATAR – SQUARE/CIRCLE #135442
     Radu
    Moderator

    REplace that css-s with those

    COPY CODE
    
    .bp-login-widget-user-avatar {
        border-radius: 0;
        border: 5px solid #ddd;
    }
    
    #buddypress .rounded, .buddypress .rounded {
        border-radius: 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: Hide latest activity in member listing #135318
     Radu
    Moderator

    Hi,

    use this css

    COPY CODE
    
    body.directory.members #buddypress #members-list span.update {
        display: none !important;
    }
    
    
    #item-header-content #latest-update {
        display: none;
    }
    

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

    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: Facebook Registration redirect to original page #135296
     Radu
    Moderator

    Hi,

    Try with this code

    COPY CODE
    
    function custom_redirect_link_facebook_login(){
        
        global $post;
        $reloadcurrentpage = get_permalink( $post->ID );
        return $reloadcurrentpage;
    }
    
    add_filter('kleo_fb_register_redirect','custom_redirect_link_facebook_login');
    

    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 #135292
     Radu
    Moderator
    Not marked as solution
    in reply to: Request your help please team :) #135291
     Radu
    Moderator
    Not marked as solution
    in reply to: Missing spinner #135290
     Radu
    Moderator

    Hi,

    Just add this css to your site

    COPY CODE
    
    input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {
      -webkit-appearance: scrollbarbutton-up !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: Image size for KLEO recent posts widget #135289
     Radu
    Moderator

    Are you referring to limit the image width and height ?

    If yes add this

    COPY CODE
    
    .sidebar .news-thumb img {
       width:75px;
       height:75px;
    }
    
    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 Logo #135287
     Radu
    Moderator

    For the logo thing use this CSS

    COPY CODE
    
    
    
    @media screen and (max-width: 480px) {
    img#logo_img {
        height: 90px;
    }
    }
    
    
    

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

    For the widgets on mobile try this plugin : https://wordpress.org/plugins/hide-widgets/ it looks ok for you need

    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,

    I saw in your child theme that you have a value that limits the header height but with this property the slider on scroll down then top will looks ok

    COPY CODE
    
    .header-two-rows #header .sticky-wrapper {
        height: 190px !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: Activity stream shortcode #135273
     Radu
    Moderator

    Hi,

    You should this kind of code in wp-admin -> theme options -> general settings -> javascript code

    COPY CODE
    
    (function($){
            $('#text-16').affix({
              offset: {
                top: 600,
                bottom: 0
              }
            });
        })( jQuery );
        </script>
    

    and instead of text-16 you should add the div id of the element that you want to float.

    In the below screenshot you will see how you can find the elemnts id using google chrome inspector

    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: Functions.php in Child-theme issues. #135150
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    They are fake members right ?

    Try to use this function

    COPY CODE
    
    
    add_action('bp_core_activated_user', 'kleo_add_member_activity');
    function kleo_add_member_activity($user_id)
    {
    	add_user_meta( $user_id, 'last_activity', date("Y-m-d H:i:s"));
    }
    

    But if you have 2 millions users it will take a while… to process this

    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: Double Menu #135131
     Radu
    Moderator

    Hi,

    COPY CODE
    
    Status:      	TLS connection established.
    Command:	USER kleo@sharemit.net
    Response: 	331 User kleo@sharemit.net OK. Password required
    Command:	PASS ******************
    Response: 	530 Login authentication failed
    Error:        	Critical error: Could not connect to server
    Status:      	Disconnected from server
    

    If you install now kleo 4.0.8 instead the current version you have a single menu right ? you can find an older theme version in themeforest package, if you will install an older theme leave it to can test something with old version

    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: BuddyPress Cover Photo #135129
     Radu
    Moderator
    Not marked as solution
    in reply to: Customize Profile Icons & Media Section #135127
     Radu
    Moderator
    Not marked as solution
    in reply to: Facebook Registration redirect to original page #135114
     Radu
    Moderator

    The facebook login it behaves like that because maybe the user will complete the profile fields and other informations

    You can try this function…

    COPY CODE
    
    function custom_redirect_link_facebook_login(){
        
        global $post;
        $reloadcurrentpage = get_permalink( $post->ID );
        return $reloadcurrentpage;
    }
    
    add_filter('kleo_fb_register_redirect','custom_redirect_link_facebook_login', $user_ID);
    

    PS : I haven’t tested, 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: AVATAR – SQUARE/CIRCLE #135095
     Radu
    Moderator

    Use this css

    COPY CODE
    
    .bp-login-widget-user-avatar {
        border-radius: 0;
        border: 0;
    }
    
    #item-header > #item-header-avatar {
        border: 0;
    }
    

    The second rule will remove the border for the user profile pic

    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: Problem With buddypress member search (Multi Select Box) #135089
     Radu
    Moderator

    Hi,

    YEs, there was a CSS problem, add this css to quick css area

    COPY CODE
    
    ul.multiselect-container.dropdown-menu {
        overflow-y: scroll;
        max-height: 250px;
    }
    

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

    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: Problem With buddypress member search (Multi Select Box) #135088
     Radu
    Moderator

    Hi,

    YEs, there was a CSS problem, add this css to quick css area

    COPY CODE
    
    ul.multiselect-container.dropdown-menu {
        overflow-y: scroll;
        max-height: 250px;
    }
    

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

    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: Image size for KLEO recent posts widget #135034
     Radu
    Moderator

    Hi,

    If the images are small like those in the sidebar i recommend you around 100x100px,

    You can remove the “circle overlay” with this css

    COPY CODE
    
    .sidebar .news-thumb img {
        border-radius: 0 !important;
    }
    

    that should be added to wp-admin -> theme options ->general settings -> quick css

    Cheers
    R.

    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 - 1,441 through 1,480 (of 2,990 total)

Log in with your credentials

Forgot your details?