Forum Replies Created

Viewing 40 posts - 1,721 through 1,760 (of 2,990 total)

Cheers R.
in reply to: Bundled plugins not updating with theme #125669
 Radu
Moderator
Not marked as solution
in reply to: wp-admin login page – logo size #125658
 Radu
Moderator
Hi, Please replace that code with this
function add_custom_css_for_logo(){
    echo "";
}
add_action( 'login_enqueue_scripts', 'add_custom_css_for_logo' ,90);
Cheers R.
in reply to: Verifation mail in spam – hotmail only #125567
 Radu
Moderator
Not marked as solution
in reply to: Problems introducing maps #125558
 Radu
Moderator
Not marked as solution
in reply to: wp-admin login page – logo size #125549
 Radu
Moderator
Not marked as solution
in reply to: strange issue when a link to site is posted #125537
 Radu
Moderator
Hi, 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.
in reply to: Missing Field Labels #125524
 Radu
Moderator
Not marked as solution
in reply to: homepage login issue #125504
 Radu
Moderator
Not marked as solution
in reply to: primary menu in mobile #125449
 Radu
Moderator
Not marked as solution
in reply to: Changes to buddypress members profile #125448
 Radu
Moderator
Hi, 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.
in reply to: All posts do not show on home page #125440
 Radu
Moderator
Not marked as solution
in reply to: css not working after installation #125432
 Radu
Moderator
Not marked as solution
in reply to: How to add footer colum #125430
 Radu
Moderator
Hi, Please add this function to wp-content/themes/kleo-child/functions.php
add_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.
in reply to: Buddypress styling help? #125385
 Radu
Moderator
Not marked as solution
in reply to: How to make redirect to my account page after login #125379
 Radu
Moderator
Hi, 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.php
    function 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.
Viewing 40 posts - 1,721 through 1,760 (of 2,990 total)

Log in with your credentials

Forgot your details?