Forum Replies Created

Viewing 32 posts - 41 through 72 (of 72 total)
  • Author
  • in reply to: Bug in Kleo. Cannot post updates in Groups. #43901
     Kookidooki
    Participant

    Yep.

    I guess that might not be the problem as it worked with other themes. See screenshots.

    Any idea?

    in reply to: Bug in Kleo. Cannot post updates in Groups. #43891
     Kookidooki
    Participant

    (continued)

    …. and also missing the “Attach Files”- button.

    ThX

    in reply to: WordPress Social Login not working after update #36307
     Kookidooki
    Participant

    Hey Glikoz,

    Thank you for your help.

    The problem is that I didn’t changed the plugins. It worked before with the previous Kleo versions. The problem started after upgrading to Kleo 2.0 and 2.1.1.

    Still don’t know what the problem is.

    in reply to: WordPress Social Login not working after update #36197
     Kookidooki
    Participant

    Hey developers,

    I’ve been waiting for almost a week.

    You said that you were testing WP Social Login after issues with Kleo’s Login.

    Have you guys found a solution? I need a quick fix please.

    ThX

    in reply to: Limit displayed words. #36142
     Kookidooki
    Participant

    Hey Kamal,

    It doesn’t work unfortunately.

    Thanks.

    in reply to: Limit displayed words. #35986
     Kookidooki
    Participant

    Hi Kamal,

    Thanks, but this is about the description of a group.

    What I want is a modification in the group overview description, e.g. group masonry.
    When you hit “Groups Overview” in your menu you will see an overview of your created groups with description. I want to limit the description to 20 words to save space.

    Any idea?

    in reply to: WordPress Social Login not working after update #35739
     Kookidooki
    Participant

    Hey developers,

    You were testing WP Social Login after issues with Kleo’s Login. Were you guys able to find a solution for this plugin?

    Cheers!

    in reply to: WordPress Social Login not working after update #35631
     Kookidooki
    Participant

    Hey developers,

    have you already found a solution to get WP Social Login working on your site the way it should be?

    in reply to: clickable > non-clickable profile fields #35428
     Kookidooki
    Participant

    ThanX!

    in reply to: WordPress Social Login not working after update #35322
     Kookidooki
    Participant

    Hey developers,

    Did you already get WP Social Login working on your site?
    Still waiting for fix.

    in reply to: WordPress Social Login not working after update #35273
     Kookidooki
    Participant

    Hi Abe,

    Facebook was already set to off but it didn’t work out unfortunately.

    The site is under development and my clients won’t allow me to make it public.

    Can you test WP Social Login https://wordpress.org/plugins/wordpress-social-login/ on your site?

    ThanX and keep posted.

    in reply to: WordPress Social Login not working after update #35199
     Kookidooki
    Participant

    Same issue.

    I want users login from Facebook, Google, LinkedIn, etc. that’s why I need WP Social Login.

    Any idea how to fix this? Looks like some conflicting issue.

     Kookidooki
    Participant

    Hey guys,

    Problem solved. There was a plugin conflict. Removed the culprit and it’s working again.

    ThanX!

     Kookidooki
    Participant

    I tested those fields by adding some values but it didn’t showed up.. Weird!

     Kookidooki
    Participant

    Hi Sharmstr,

    In wp-admin > Users > Profile Fields I created new Field Groups and new custom profile fields. Then I created and added the snippet code into member-header.php.

    Am I missing something? Any idea?

     Kookidooki
    Participant

    Hi Sharmstr,

    Sorry I’m wrong!

    This was a fresh install with the latest versions of Buddypress and Kleo; no update of Kleo!

    So of this fresh install I edited member-header.php:

    …/wp-content/themes/kleo/buddypress/members/single/member-header.php and added the snippet code. See below (I’ve copy pasted the whole member-header.php file).

    COPY CODE
    <?php
    
    /**
     * BuddyPress - Users Header
     *
     * @package BuddyPress
     * @subpackage bp-legacy
     */
    
    ?>
    
    <?php do_action( 'bp_before_member_header' ); ?>
    
    <div id="item-header-avatar" class="rounded">
    	<a href="<?php bp_displayed_user_link(); ?>">
    
    		<?php bp_displayed_user_avatar( 'type=full' ); ?>
    
    	</a><br>
      <?php do_action('bp_member_online_status', bp_displayed_user_id()); ?>
    </div><!-- #item-header-avatar -->
    
    <div id="item-header-content" <?php if (isset($_COOKIE['bp-profile-header']) && $_COOKIE['bp-profile-header'] == 'small') {echo 'style="display:none;"';} ?>>
    
    	<?php if ( bp_is_active( 'activity' ) && bp_activity_do_mentions() ) : ?>
    		
    	<?php endif; ?>
       
    	<span class="activity"><?php bp_last_activity( bp_displayed_user_id() ); ?></span><br>
            
    
    <div></div>
    <div id="member_profile">
        <div class="profile_fields"> <span style="font-size:22px; color:#222222; font-weight: normal;"><?php bp_profile_field_data( 'field=Profession' );?></span>   |   <span style="font-size:22px; color:#222222; font-weight: normal;"><?php bp_profile_field_data( 'field=Location' );?></span></div><br><br>
            
        <div class="profile_fields"><strong>About Me</strong><br> <span><?php bp_profile_field_data( 'field=About Me' );?></span></div><br>
        <div class="profile_fields"><strong>Web</strong><br> <span style="font-size:14px; color:#00bcf2; font-weight: normal;"><a href="<?php   
        bp_profile_field_data( 'field=Website' );?>"Website:   
        <span style="color:#0067b4;"><?php bp_profile_field_data( 'field=Website');?></a></span></div><br>  
        
             <br>
    
             </div>
    	<?php do_action( 'bp_before_member_header_meta' ); ?>
    
    	<div id="item-meta">
                  
                    
    
    		<div id="item-buttons">
    
    			<?php do_action( 'bp_member_header_actions' ); ?>
    
    		</div><!-- #item-buttons -->
    
    		<?php
    		/***
    		 * If you'd like to show specific profile fields here use:
    		 * bp_member_profile_data( 'field=About Me' ); -- Pass the name of the field
    		 */
    		 do_action( 'bp_profile_header_meta' );
    
    		 ?>
    
    	</div><!-- #item-meta -->
    
    </div><!-- #item-header-content -->
    
    <?php do_action( 'bp_after_member_header' ); ?>
    
    <?php do_action( 'template_notices' ); ?> 
     Kookidooki
    Participant

    Okay, but can you test the code that I added on your side?

    What am I missing to show the profile fields for users. Please make it work.

    See also this:

    http://bp-tricks.com/snippets/displaying-certain-profile-fields-on-your-members-profile-page/#comments

     Kookidooki
    Participant

    Or what codes are you using for the custom fields in Buddypress. example of what I mean: Kleo is using this code for member profile : bp_profile_field_data. What other codes are you using for the profile fields using i.e. URL’s, checkboxes, etc.

     Kookidooki
    Participant

    Hi sharmstr,

    I’m using the latest Buddypress.

    I don’t understand what you mean, but I only added the above mentioned code to member-header.php. No changes to style.css.

    Can you check on your side by pasting it in your member-header.php and create the custom fields “Profession”, “Location”, “About Me” and “Website”.

    in reply to: Dashboard not working anymore after updating theme #32809
     Kookidooki
    Participant

    Hey Seventhqueen…

    I’ve found the culprit: Plugin K-elements v2.1.1!

    I’ve deactivated K-elements for now and wp-admin is working again.

    Do you have the former version? And can you fix this problem?

    in reply to: Dashboard not working anymore after updating theme #32789
     Kookidooki
    Participant

    I’ve just found out that it also ruined my database server. 🙁

    We’ve tried to restore by using backups of site and sql-database but the problem still exists.

    Thank You!

    in reply to: Dashboard not working anymore after updating theme #32788
     Kookidooki
    Participant

    Hi Abe,

    A lot of errors (see below):

    Strict Standards: Non-static method BPDevBPGroupSuggest::get_instance() should not be called statically in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/bp-group-suggest/bp-group-suggest.php on line 251

    Notice: Use of undefined constant BPRP_ROOT_PATH – assumed ‘BPRP_ROOT_PATH’ in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/bp-resume-page/bp-resume-page.php on line 11

    Strict Standards: Declaration of BPSimplePostTermsChecklistWalker::start_el() should be compatible with Walker::start_el(&$output, $object, $depth = 0, $args = Array, $current_object_id = 0) in /home/plazzo/public_html/mywebsite.com/wp-settings.php on line 180

    Strict Standards: Non-static method BPSimpleBlogPostComponent::get_instance() should not be called statically in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/bp-simple-front-end-post/bp-simple-front-end-post.php on line 945

    Strict Standards: Non-static method BpfbInstaller::check_paths() should not be called statically in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/buddypress-activity-plus/lib/class_bpfb_installer.php on line 34

    Warning: session_start(): Cannot send session cookie – headers already sent by (output started at /home/plazzo/public_html/mywebsite.com/wp-content/plugins/bp-group-suggest/bp-group-suggest.php:251) in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/buddypress-media/index.php on line 68

    Warning: session_start(): Cannot send session cache limiter – headers already sent (output started at /home/plazzo/public_html/mywebsite.com/wp-content/plugins/bp-group-suggest/bp-group-suggest.php:251) in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/buddypress-media/index.php on line 68

    Notice: wp_register_style was called incorrectly. Scripts and styles should not be registered or enqueued until the wp_enqueue_scripts, admin_enqueue_scripts, or login_enqueue_scripts hooks. Please see Debugging in WordPress for more information. (This message was added in version 3.3.) in /home/plazzo/public_html/mywebsite.com/wp-includes/functions.php on line 3370

    Notice: wp_register_script was called incorrectly. Scripts and styles should not be registered or enqueued until the wp_enqueue_scripts, admin_enqueue_scripts, or login_enqueue_scripts hooks. Please see Debugging in WordPress for more information. (This message was added in version 3.3.) in /home/plazzo/public_html/mywebsite.com/wp-includes/functions.php on line 3370

    Strict Standards: Non-static method Wdgpo_Installer::check() should not be called statically in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/google/plusone.php on line 55

    Strict Standards: Non-static method Wdgpo_Options::populate() should not be called statically in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/google/plusone.php on line 60

    Strict Standards: Non-static method Wdgpo_PublicPages::serve() should not be called statically in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/google/plusone.php on line 86

    Warning: Cannot modify header information – headers already sent by (output started at /home/plazzo/public_html/mywebsite.com/wp-content/plugins/bp-group-suggest/bp-group-suggest.php:251) in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/wp-super-cache/wp-cache-phase2.php on line 60

    Notice: Undefined variable: googlepluscj_members_extension_check in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/buddypress-google-plus/buddypress-google-plus.php on line 10

    Notice: Undefined variable: googlepluscj_group_extension_check in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/buddypress-google-plus/buddypress-google-plus.php on line 22

    Notice: Undefined variable: twittercj_members_extension_check in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/buddypress-twitter/buddypress-twitter.php on line 10

    Notice: Undefined variable: twittercj_group_extension_check in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/buddypress-twitter/buddypress-twitter.php on line 22

    Strict Standards: Non-static method BpfbBinder::serve() should not be called statically in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/buddypress-activity-plus/bpfb.php on line 119

    Strict Standards: Non-static method BpfbCodec::register() should not be called statically, assuming $this from incompatible context in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/buddypress-activity-plus/lib/class_bpfb_binder.php on line 376

    Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in /home/plazzo/public_html/mywebsite.com/wp-includes/functions.php on line 3370

    Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 1.7.) in /home/plazzo/public_html/mywebsite.com/wp-includes/functions.php on line 3370

    Warning: Cannot modify header information – headers already sent by (output started at /home/plazzo/public_html/mywebsite.com/wp-content/plugins/bp-group-suggest/bp-group-suggest.php:251) in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/yith-woocommerce-wishlist/functions.yith-wcwl.php on line 118

    Notice: Undefined property: stdClass::$id in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/bp-resume-page/bp-resume-page.php on line 26

    Strict Standards: Declaration of CP_BP_Integration::setup_globals() should be compatible with BP_Component::setup_globals($args = Array) in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/collabpress/includes/cp-core.php on line 101

    Strict Standards: Declaration of CP_BP_Integration::setup_nav() should be compatible with BP_Component::setup_nav($main_nav = Array, $sub_nav = Array) in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/collabpress/includes/cp-core.php on line 101

    Strict Standards: Declaration of CP_BP_Group_Extension::edit_screen() should be compatible with BP_Group_Extension::edit_screen($group_id = NULL) in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/collabpress/includes/cp-bp-groups.php on line 21

    Strict Standards: Declaration of CP_BP_Group_Extension::edit_screen_save() should be compatible with BP_Group_Extension::edit_screen_save($group_id = NULL) in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/collabpress/includes/cp-bp-groups.php on line 21

    Strict Standards: Declaration of CP_BP_Group_Extension::create_screen() should be compatible with BP_Group_Extension::create_screen($group_id = NULL) in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/collabpress/includes/cp-bp-groups.php on line 21

    Strict Standards: Declaration of CP_BP_Group_Extension::create_screen_save() should be compatible with BP_Group_Extension::create_screen_save($group_id = NULL) in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/collabpress/includes/cp-bp-groups.php on line 21

    Strict Standards: Non-static method BP_Group_Reviews::current_group_is_available() should not be called statically, assuming $this from incompatible context in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/bp-group-reviews/includes/classes.php on line 17

    Notice: bp_is_front_page is deprecated since version 1.5! Use is_front_page() instead. in /home/plazzo/public_html/mywebsite.com/wp-includes/functions.php on line 3201

    Warning: Cannot modify header information – headers already sent by (output started at /home/plazzo/public_html/mywebsite.com/wp-content/plugins/bp-group-suggest/bp-group-suggest.php:251) in /home/plazzo/public_html/mywebsite.com/wp-includes/pluggable.php on line 1173

    Notice: get_user_meta( $user_id, ‘last_activity’ ) was called incorrectly. User last_activity data is no longer stored in usermeta. Use bp_get_user_last_activity() instead. Please see Debugging in WordPress for more information. (This message was added in version 2.0.0.) in /home/plazzo/public_html/mywebsite.com/wp-includes/functions.php on line 3370

    Warning: Cannot modify header information – headers already sent by (output started at /home/plazzo/public_html/mywebsite.com/wp-content/plugins/bp-group-suggest/bp-group-suggest.php:251) in /home/plazzo/public_html/mywebsite.com/wp-content/plugins/bp-group-reviews/bp-group-reviews.php on line 124

    in reply to: Cannot change font types in new Kleo version #32251
     Kookidooki
    Participant

    To avoid confusions: The title of this topic should be for now… Child theme not working anymore in latest Buddypress and Kleo theme version.

    in reply to: Cannot change font types in new Kleo version #32249
     Kookidooki
    Participant

    And this is the child-theme css. Please take note that the navigation icons also should be changed initially but it’s not effectuated

    …truncated text. please upload a text file instead of pasting hundred of lines

    in reply to: Cannot change font types in new Kleo version #32248
     Kookidooki
    Participant
    This reply has been set as private.
    in reply to: Cannot change font types in new Kleo version #32246
     Kookidooki
    Participant

    There’s no caching plugin installed. Ive also cleared browser cache but no effect.

    in reply to: Cannot change font types in new Kleo version #32226
     Kookidooki
    Participant

    Hey guys,
    Im still waiting for a fix.. 🙂

    Any idea? Looks like child-theme and other css files conflicting / overruling child-theme?

    in reply to: Cannot change font types in new Kleo version #32146
     Kookidooki
    Participant

    I see it’s conflicting with bootstrap….css and dynamic…css, etc. Also made changes in child theme but with no effect. Weird…!

    in reply to: HELP. Cannot remove text in header! #16214
     Kookidooki
    Participant

    Hi McKown,

    Two different places to control it. Can be very confusing.
    Anyway it’s working now.

    Thank you for your help!

    Best regards.

    in reply to: Child Theme issues #15994
     Kookidooki
    Participant

    Thanks, it works now!

    in reply to: How to replace icons navigation menu bar. #15788
     Kookidooki
    Participant

    Thanks, very useful!

     Kookidooki
    Participant

    Thank you!

    I have another question: how do I replace the default icons on navigation menu with other Fontello icon?

    For example, I would like to replace current “following”, and “followers” icons by other Fontello icons. See screenshot.

    How can this be done and do I have to use Visual Composer or something else?

    Thanks in advance!

    Attachments:
    You must be logged in to view attached files.
Viewing 32 posts - 41 through 72 (of 72 total)

Log in with your credentials

Forgot your details?