Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 5,076 through 5,100 (of 31,073 total)
  • Author
    Search Results
  • #247861
    CoeyCoey
    Participant

    Hello all,

    I copied the buddypress.css and buddypress.min.css from buddypress/bp-templates/bp-legacy/css to mythemes/css folder, and I began editing the file to make some changes and it worked fine. However, I noticed the cover image is missing. The profile photo is fine. I thought I did something to the CSS, so I copied it over, but it is still missing. If I disable the mytheme/css folder, it works normally. I would like to edit the css in the mythemes/css folder so I don’t lose changes on edits. Is there anything else I need to do so that the css files work correctly from outside the buddypress folder?

    Thank you

    Just updated, so latest version of WP and BP.

    #247815
    valuser
    Participant

    Suggestions in this post MAY be of some help.

    I only say MAY because the user base is shared – once a user visits another network that user is added to the Members of that network.

    However each network can have absolutely completely separate Activity Streams, Groups, Forums, and sites/blogs as well as separate plugin and theme structures.

    I fully understand that this may not not be exactly what you are looking for but it certainly is a very good start.

    #247810
    fried_eggz
    Participant

    Yes @henrywright, the settings are correct.

    Steps to repeoduce:

    1. Install vanilla WordPress 4.4
    2. Install vanilla BuddyPress 2.4.3
    3. Use default theme
    4. Post a status update
    5. Create a new user
    6. Log in as new user
    7. Comment on status

    Just to be clear, I’m talking about notifications in WordPress toolbar. Have not checked if email notifications work since I’m on localhost.

    mcpeanut
    Participant

    @henrywright yes I will add it to trac later today when I have some spare time, there is no need for me to test on the default themes again as it will be the 100th time or more I have tested this over and over and over and over and yes you guessed it over again! for the past 2 years πŸ™‚

    It happens on every single theme that you use Buddypress on, it has never worked as I think it was intended to, its probably been completely overlooked and always has. If you test every version back to Buddypress 1.7 you will find the same issue in every single version of Buddypress up until the most recent, I havent gone further back than 1.7 so if it ever did work it was pre 1.7.

    #247789
    Henry Wright
    Moderator

    Your best bet is to provide the theme author with some screenshots of the problem and hopefully they can issue a fix. It’s probably worth deactivating all plugins and custom code before taking the screengrabs, to be sure nothing is conflicting.

    #247765
    joesegal
    Participant

    Thanks @henrywright
    I have the Divi Theme activated.
    WP 4.4
    latest BP 188
    about 18 plugins activated.
    I deactivated all the plugins.
    Cropping worked.
    Reactivated each one by one.
    Cropping still worked.
    All of them!
    Then I refresh the page on the group avatar editing page and bam, not working again.

    wtf I dont get it?

    Also Im using a plugin called Buddypress Docs its like a Wiki plugin and the Visual editor doesnt work now in it just the text editor. Maybe thats related?>

    Is there a way to easily get a list of plugins I’m using to show you/others?

    #247760
    Henry Wright
    Moderator

    Hi Joe and Nat,

    Can you provide some more details?

    1. plugins used
    2. theme used
    3. WP and BP versions
    4. any console errors or notices
    #247758
    @mercime
    Participant

    @ldesherl I just see an error on your home page right now with the TGM plugin. Deactivate all plugins except BuddyPress. Change to a WP Default Twenty-* theme then activate BuddyPress.

    P.S. For forums, install bbPress which works very well with BuddyPress

    #247706
    shanebp
    Moderator

    The above is wrong – unless you are using the bp-default theme – not recommended.

    ‘Hide’ the Create a Group link by turning it off in Groups Settings > Group Creation
    .../wp-admin/admin.php?page=bp-settings

    #247705
    shanebp
    Moderator

    Create a template overload of this file and remove that code:

    
    buddypress\bp-themes\bp-default\groups\index.php

    Correction: This is wrong – see below.

    #247699
    shanebp
    Moderator

    BP doesn’t provide functionality for Events – groups or otherwise.
    You are using another plugin or custom code for that.
    The inability to restore Events is due to something in your code – possibly the theme.

    Henry Wright
    Moderator

    You should let the theme author know there’s a problem, and hopefully they can issue a fix.

    Dishant Agrawal
    Participant

    I am using Fitzone theme. It is working fine and not causing any issues. No doubt a bug/issue in plugin.

    #247644
    r-a-y
    Keymaster

    Disable starring messages with this snippet in wp-content/plugins/bp-custom.php:

    add_filter( 'bp_is_messages_star_active', '__return_false' );

    To remove the ‘Delete’ link from the messages inbox, you’ll have to override the inbox template and remove the ‘Delete’ link.

    Read the Overloading Template Compatibility theme files section of this codex article for more info.

    The template you’ll want to copy over to your theme to override is this one:
    https://buddypress.trac.wordpress.org/browser/tags/2.4.2/src/bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php

    #247629

    In reply to: wall page

    shweikiart
    Participant

    I’m using boss theme, no i didn’t ask them, I thought it is buddypress issue
    what about activity filter?

    #247628

    In reply to: Repeating Group Tabs

    shanebp
    Moderator

    Which theme are you using?
    Does the issue persist if you switch to a WP theme such as 2013?

    Are you using a caching plugin?
    If so, are you caching objects? Don’t.

    #247627

    In reply to: wall page

    shanebp
    Moderator

    BP does not provide a ‘wall’ tab.
    You are using a custom plugin or theme – perhaps BuddyBoss?
    Have you tried asking them>

    Henry Wright
    Moderator

    Could be a theme issue. Which theme are you using? Does the same thing happen if you use Twenty Fifteen or Twenty Sixteen?

    #247603

    In reply to: Registration page

    shweikiart
    Participant

    thanks for replay πŸ™‚
    i’m using WP v4.3 and BP v2.4.2 and boss theme v2.0.4, i tried to deactivate all plugin and the other name filed disappeared and re activated all plugin one by one and finds that “BP Login Redirect” plugin cause this issue, can i solve it?

    #247593
    shanebp
    Moderator

    You can’t ‘override/replace this function in my theme’s functions.php file’.

    You can use the filter hook and write a function for use in theme/functions:
    Something like:

    
    function jturet_group_front_template( $template_names ) {
    
        $template_names[1] = // make your changes
    
        return $template_names;
    
    }
    add_filter( 'bp_groups_get_front_template', 'jturet_group_front_template' );
    #247587
    shanebp
    Moderator

    Are you sure those members are all subscribers?
    Remove your mu plugin.
    Try this in your theme/functions.php or plugins/bp-custom.php
    Remember to remove it when done.

    function mie_add_last_activity() {
    
      $subscribers =  get_users( 'fields=ID&role=subscriber' );
      
       foreach ( $subscribers as $user_id ) {
            bp_update_user_last_activity( $user_id, bp_core_current_time() );
       }
    
    }
    add_action('bp_init', 'mie_add_last_activity' );
    #247572

    In reply to: Registration page

    @mercime
    Participant

    @shweikiart WP/BP versions? Have you tried deactivating all other plugins except BuddyPress then change to the Twenty Fifteen theme?

    #247570
    reedy
    Participant

    I installed WP Crontrol and saw nothing out of the ordinary:

    ws_plugin__s2member_auto_eot_system__schedule
    _cron_zencache_cleanup
    bp_activity_akismet_delete_old_metadata
    wp_maybe_auto_update
    wp_version_check
    wp_update_plugins
    wp_update_themes
    akismet_scheduled_delete
    wp_scheduled_delete
    wp_scheduled_auto_draft_delete

    Earlier today I added the following to my functions.php file:

    add_filter( 'bp_activity_do_mentions', '__return_false' );

    No @mention emails were generated since then. As soon as I commented that code out, within 5-10 minutes thirteen @mention email notifications went out – all with links to content that is years old (pre-import).

    I’ve therefore put the filter back into functions.php and can only assume I’ll have to do without the @mention functionality of buddypress.

    I appreciate everyone’s help up to this point.

    #247558
    hotconductor
    Participant

    are you saying I should try to apply that on class-bp-messages-message.php

    Never touch core files.
    Place the code in your theme/functions.php.

    #247538
    Henry Wright
    Moderator

    If you’re running vanilla WordPress, with BuddyPress as the only plugin installed and you’re sure you have no custom code in place, it may mean your install has been compromised. You should check to be sure this isn’t the case.

    Just a thought, have you tried using a standard theme such as Twenty Fifteen?

Viewing 25 results - 5,076 through 5,100 (of 31,073 total)
Skip to toolbar