Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 2,726 through 2,750 (of 31,071 total)
  • Author
    Search Results
  • #274692

    In reply to: login

    Venutius
    Moderator

    After you has activated the account, you will need to login that’s the normal process. Theme my login can change that I believe, but that’s down to Theme My Login, check with their support.

    #274688
    Venutius
    Moderator

    The forgot password link is visible on my sites, try deactivating all other plugins and switching to the 2017 theme to check there are no conflicts getting in the way.

    shanebp
    Moderator

    > and it suggests that this is not a default setting

    It’s not a setting at all.
    Some other code or plugin is causing your issue. Try deactivating other plugins.
    It may also be theme-related – to find out, try switching to a theme like WP 2016.

    #274653
    Venutius
    Moderator

    If you deactivate Theme My Login does it work?

    #274649
    davidbass
    Participant

    I am having the same issue, but I do not have a child-theme. Also, where do I locate the custom file?

    #274642
    Venutius
    Moderator

    One thing you could try to use BP Template Overloader to create a theme independent overload for Nouveau, this changes the loading of templates to a separate directory and should work.

    Venutius
    Moderator

    You have an overloaded copy of themes/child-theme/buddypress/members/single/home.php it’s calling a function that is no longer used – bp_is_user_forum() this needs to be removed.

    #274630
    brunomac
    Participant

    Forgot to mention:

    Theme: Thive 3.0.2
    BP: 3.1.0
    WP: 4.9.6

    #274629
    brunomac
    Participant

    How to remove on the same function the ‘last_activity’

    Theme: Thive 3.0.2
    BP: 3.1.0
    WP: 4.9.6

    #274625

    In reply to: Group’s page header

    mrditt
    Participant

    Here the best fix I could come up with:

    Appearance > child theme > style.css

    .single-item.groups .custom-header .custom-header-media {
    position: absolute !important;
    top: 0;
    left: 0;
    height: auto;
    }

    I don’t like using !Important to override css does anyone have any more feedback or ideas on this or a more artful solution?

    #274620
    Venutius
    Moderator

    One thing to try, I seem to remember that it might work if you put it in child-theme/buddypress/buddypress/... worth a try but I’ve not tried it myself.

    #274615
    metalhead505
    Participant

    If you just copy the contents of /wp-content/plugins/bp-templates/bp-nouveau/buddypress/

    to

    /wp-content/themes/mytheme/buddypress

    then you can edit those files.

    Inside this folder:

    /wp-content/themes/mytheme/buddypress

    You should then have:

    activity
    assets
    blogs
    common
    groups
    members

    — In other words, these are the only subfolders that you will be able to modify this way.

    Some other things to keep in mind, and sorry if you already know, but temporarily deactivate caching and/or minification plugins while editing, and depending on your browser settings, delete cache

    #274610
    wh82
    Participant

    Now I copied the complete directory:

    /wp-content/plugins/buddypress/bp-templates/bp-nouveau/buddypress/

    to

    /wp-content/themes/mytheme/buddypress/

    All files and folders… but still, editing activity-loop.php (deleting all content to be sure..) does not affect my website at all.

    #274605
    akkoxe
    Participant

    Hello. Sorry for the late answer, I checked everything. Before BP 3.0 I used Nouveau as a additional plugin. After the 3.0 update, I deleted it and start use Nouveau in new BP. Now I can not change to default, because I need exactly Novau for my website.

    I do not use any custom forms and pages (I change all files for default). My template is Newspaper. I created a new test wordpres installation for check the issues, and there everything is loaded in the same configuration on new website. I think it is a some issues with files and try to change all files to default (theme, wp, BP), but it is not help.

    So most likely the problem is in the database, may be with a settings (may be it was then I update plugin on 3.0 with additional active Nouveau plugin, but it is not exactly).
    How to reset all settings to default in DB?

    #274587
    metalhead505
    Participant

    If you just copy the members folder over to /yourchildtheme/buddypress, that should work. yes/no?

    #274569
    mojomo
    Participant

    @ vapvarun: Following your advice, I switched back to the default WP theme (2017), turns out that BuddyPress works fine with the default theme and all plugins activated. It seems to be an issue with my theme after all. The theme devs are looking into this matter now. Thank you.

    #274568
    belle33
    Participant

    Hi, I am experiencing this problem with Nouveau. I can replicate the exact behavior outlined in Aron’s initial post. (Latest WP, BP 3.1.0, BuddyBoss Boss Child Theme)

    Please advice – I didn’t see Nouveau addressed in the trac link provided above.

    Also, do you have a workaround for Nouveau? I don’t have developer level skills but can add css code to my child theme.

    Thank you, very much, for your help.

    #274560
    Venutius
    Moderator

    Here’s what I found:

    add_action( 'bp_core_validate_user_signup', 'custom_validate_user_signup' );
    
    function custom_validate_user_signup($result)
    {
      unset($result['errors']->errors['user_name']);
    
      if(!empty($result['user_email']) && empty($result['errors']->errors['user_email']))
      {
        $result['user_name'] = md5($result['user_email']);
        $_POST['signup_username'] = $result['user_name'];
      }
    
      return $result;
    }

    You would also need to copy plugins/buddypress/bp-templates/bp-nouveau (or bp-legacy ) /buddypress/members/register.php tothemes/your-child-theme/buddypress/members/register.php and edit it to remove the section that asks for the username:

    <label for="signup_username"><?php _e( 'Username', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
    <?php do_action( 'bp_signup_username_errors' ); ?>
    <input type="text" name="signup_username" id="signup_username" value="<?php bp_signup_username_value(); ?>" />
    janurmas
    Participant

    Hello, Mastershas! Thanks, for your help. Now the admin bar is removed from logged-in users. It was that simple. But I have no idea with how to do with customizing the BuddyPress theme. I think this would have some code tweakings. And the Buddydev is a good idea. I’m gonna try it. Many thanks!

    jangolin
    Participant

    Activation key is empty when a user clicks on their activation URL

    I have tried this method

    https://buddypress.trac.wordpress.org/changeset/11766/trunk/src/bp-templates/bp-legacy/buddypress/members/activate.php

    But it still doesnt work

    any ideas how to solve this, I am using Sweet Date theme

    #274531
    Varun Dubey
    Participant

    @nero2018 Check with your theme support.

    Shashi Kumar
    Participant

    @janurmas

    1. To hide admin bar to non-logged in user, you can use a plugin name Remove Dashboard Access.

    2. There is no direct method to make BuddyPress profile page full-width. You can achieve this by editing Buddypress templates. To do this
    Create a child theme
    Put Buddypress folder in your child theme and edit the profile template. To do we should understand the templating system of Buddypress. Here is a tutorial for that.

    3. You can use a plugin by Buddydev which lets you write posts from front end and add blog tab under user’s profile menu.

    Hope this help you.

    #274526
    Varun Dubey
    Participant

    Cover Image issue should be theme specific, try to debug it using default wp theme for a while.

    #274525
    Varun Dubey
    Participant

    @mojomo I had tried with nginx and seem worked fine, Can you try to switch your theme to default WP to debug the issue.

    #274522
    Varun Dubey
    Participant

    @somethingelse Please make sure you have enabled group component. If that’s already enabled try with default WordPress theme to debug any site-specific issue.

Viewing 25 results - 2,726 through 2,750 (of 31,071 total)
Skip to toolbar