Forum Replies Created
-
Author
-
Radu
ModeratorHi,
Try to add this line into child theme functions php (wp-cotent/themes/sweetdate-child/functions.php)
COPY CODEadd_filter( 'xprofile_get_field_data','wpautop' );
Another possible solutions here : https://buddypress.org/support/topic/line-breaks-in-profile-fields-descriptions-not-showing/
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You can do that with this css
COPY CODEa.post-time { display: none !important; } .post-date { display: none; }
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 solutionJune 23, 2016 at 17:48 in reply to: Cache Pluging and Custom Post Types with Restrict Site and Post Publish on Activtity #126528Radu
ModeratorNot marked as solutionRadu
ModeratorAdd this css to wp-admin -> theme options -> general settings -> quick css.rtl .logo-to-right .navbar-header { float: left !important; } .rtl .kleo-main-header.logo-to-right .navbar-collapse { float: right !important; } .rtl .kleo-go-top { right: 20px !important; left: auto !important; } .rtl .kleo-quick-contact-wrapper { right: 90px !important; left: auto !important; }
Cheers R.June 23, 2016 at 15:50 in reply to: Cache Pluging and Custom Post Types with Restrict Site and Post Publish on Activtity #126506Radu
ModeratorNot marked as solutionRadu
ModeratorHi,
We don’t touch that widget is originally from buddypress the responsable file is : /wp-content/plugins/buddypress/bp-members/classes/class-bp-core-recently-active-widget.php and on line 85 you will
see
COPY CODE<div class="item-avatar"> <a href="<?php bp_member_permalink(); ?>" title="<?php bp_member_name(); ?>"><?php bp_member_avatar(); ?></a> </div>
And you can add after
COPY CODE<?php bp_member_permalink(); ?>
like :
COPY CODE<a href="<?php bp_member_permalink(); ?>/profile" title="<?php bp_member_name(); ?>">
This change will be re-writen at the plugin update, also if you have js knowledge you can do a script that modifies the profile links from that widget to point to your tab
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Ignore the above message use this solutionCOPY CODEdiv#footer .col-sm-3:nth-child(2),div#footer .col-sm-3:nth-child(3),div#footer .col-sm-3:nth-child(4) { display: none !important; } div#footer .col-sm-3:nth-child(1) {width:100% !important; }
Add this css 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 solutionRadu
ModeratorHi,
There is no option in theme panel that can do that you will have to modify a php file.
1. Make sure that you have installed and activated child theme
2. Copy this file to wp-content/themes/kleo/page-parts/general-header-section.php to wp-content/themes/kleo-child/page-parts/general-header-section.php
Then open the file from wp-content/themes/kleo-child/page-parts/general-header-section.php look around line 137 you should see this :
COPY CODE<img id="logo_img" title="<?php bloginfo( 'name' ); ?>" src="<?php echo $logo_path; ?>" alt="<?php bloginfo( 'name' ); ?>">
practically you will have to add next to the above code 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 solutionRadu
ModeratorHi,
Please try with this css
COPY CODE.my-account section.container-wrap.main-title { display:none ; }
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 solutionRadu
ModeratorJust paste this css.home .kleo-main-header.header-normal { background: #00689e !important; }
In this moment this css is applied only on homepage if you want to have sitewide just remove .home Cheers R.June 21, 2016 at 18:43 in reply to: Cache Pluging and Custom Post Types with Restrict Site and Post Publish on Activtity #126215Radu
ModeratorNot marked as solutionRadu
ModeratorYou can check if is groups component like that
COPY CODEfunction myavatar_add_default_avatar( $url ){ if ( bp_is_group_component() ) { return 'http://www.socialagent.me/wp-content/uploads/2014/07/avatarDefault.png'; add_filter( 'bp_core_mysteryman_src', 'myavatar_add_default_avatar' ); } }
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJune 20, 2016 at 18:04 in reply to: Cache Pluging and Custom Post Types with Restrict Site and Post Publish on Activtity #126072Radu
ModeratorNot marked as solutionRadu
ModeratorHi, Please try this css@media (max-width: 991px) { .kleo-main-header, .navbar-transparent .kleo-main-header, .kleo-navbar-fixed.navbar-transparent #header { position: fixed !important; top: auto!important; background-color: #000 !important; } }
The css will be added to wp-admin -> theme options -> general settings -> quick css Cheers R.June 15, 2016 at 18:14 in reply to: Members: how to list them “alphabetically” and not by “last active” ? #125670Radu
ModeratorRadu
ModeratorHi, Please replace that code with thisfunction add_custom_css_for_logo(){ echo ""; } add_action( 'login_enqueue_scripts', 'add_custom_css_for_logo' ,90);
Cheers R.Radu
ModeratorHi, It seems that this bug is directly from wordpres... anyway you can use this css.bbp-reply-content p iframe { display: inline-block !important; position: relative !important; max-height:220px }
The css can be added to wp-admin -> theme options -> general settings -> quick css Cheers R.Radu
ModeratorHi, 1. Change Default Members Profile Landing Tab By default, BuddyPress will load the Activity tab when clicking on a member’s profile link. If you would like to change this default landing tab to something else than the Activity tab you can do so. Add the code below to wp-config.php file. form your wordpress root installation/** * Change BuddyPress default Members landing tab. */ define('BP_DEFAULT_COMPONENT', 'activity' );
2. You can use this plugin https://wordpress.org/plugins/social-articles/ to achieve that. Let me know Cheers R.Radu
ModeratorHi, Please add this function to wp-content/themes/kleo-child/functions.phpadd_action('after_setup_theme', 'remove_admin_bar'); function remove_admin_bar() { if (!current_user_can('administrator') && !is_admin()) { show_admin_bar(false); } }
Let me know Cheers R.Radu
ModeratorHi, Please leave all that settings regarding the redirection to default values and use plugin : https://wordpress.org/plugins/peters-login-redirect/ Install Peters Login Redirect plugin. Set your custom redirect to WP default, then in Peters plugin settings, set the login redirect to http://www.yoursite.com/members/[variable]username[/variable] OR you can use instead the plugin this function , that should be added into wp-content/themes/kleo-child/functions.phpfunction sq7_rdu_redirect( $redirect_to, $request, $user ) { $redirect_to = bp_core_get_user_domain($user->ID) . 'profile/'; return $redirect_to; } add_filter('login_redirect', 'sq7_rdu_redirect', 11, 3);
Note : Child theme needs to be installed and activated Cheers R. -
AuthorPosts