Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 2,176 through 2,200 (of 31,071 total)
  • Author
    Search Results
  • #302819
    shanebp
    Moderator

    Yes they are compatible, afaik.

    Your preferred theme may not be compatible.
    Did you try switching momentarily to a WP theme like 2017 ?

    mocreate
    Participant

    Many thank yous for the reply! Would this be a function I would pop into functions. php — trying to understand if this would live there or where it should be placed.

    I’m using the latest version of Buddypress and Nouveau to hook into a custom theme we’re using.

    Venutius
    Moderator

    You’d need to pass an argument to bp_has_members in the members-loop.php file:

    $args = array(
        type => 'alphabetical'
    )
    
    if ( bp_has_members( $args ) ) :
    
    endif:

    So you would work out which BP theme you are using, then overload the correct members-loop.php for that theme and add the args as above.

    #302799
    shanebp
    Moderator

    Try switching to a WP theme like 2017.
    If it works, then you know the issue is in your Themeforest template and you should contact them for support.

    #302792
    Holger Theymann
    Participant

    Hi,

    whenever i try to upload a group title image (background) i can choose the image, click upload, the progressbar runs… and when it’s done, i get the message, that there was a problem during the upload of the image.

    I experience this problem even with twentyseventeen theme, with WordPress 5.0.3 and Buddypress 4.1.0 as the only activated plugin.

    happens in live zieltraum.de (with more complex configuration) as in staging staging2.zieltraum.de

    Help please, as i have no clue, what’s the reason 🙂

    #302791
    bcbjoern
    Participant

    Hello,

    im quite new to BP. I try to post to a group, but there is no Group Post Box showing up.
    I got no idea why not, I guess this should be there?

    I got a Multisite Network activated. I tried different themes and deactivated the Multisite Network. But I still cannot post into a group.

    Got any1 an Idea what can be wrong?

    Thanks a lot!

    #302754
    shanebp
    Moderator

    You can use the scope argument for that.
    Try this in your theme > functions.php or in bp-custom.php

    function bp_activities_user_friends_scope( $retval ) {
    
        if ( bp_is_activity_directory() ) {
            $retval['scope'] = 'friends';
        }
     
        return $retval;
    }
    add_filter( 'bp_after_has_activities_parse_args', 'bp_activities_user_friends_scope' );
    #302751

    In reply to: Problem with form

    shanebp
    Moderator

    function ghostpool_reset_password_success is not a BuddyPress function.

    Some code on your site, perhaps in a plugin or your theme, is adding that function.
    You may need to switch themes and/or deactivate other plugins in order to find the code that is adding that function.

    #302733

    In reply to: Activity Stream Ads

    iamdev
    Participant

    i couldn’t configure what is the problem,if it is working on your side then may be i have problem with my theme

    #302729

    In reply to: Activity Stream Ads

    iamdev
    Participant

    i tried trulux code but problem still exist For example when I went from “all members” to “friends” and the activity feed didn’t load. I have to refresh the page to get it to load. as mentioned by notright. i cannot use nouveau because my theme donot support it.

    #302725
    shanebp
    Moderator

    Please use the code button when sharing code.

    It would be a useful option in the WP backend.

    For now, you need ftp or cpanel access to the site.
    You can place that code in your theme > functions.php
    If it does not work in that file, try placing it in bp-custom.php

    #302712
    Venutius
    Moderator

    That sounds like you already have something that’s causing that redirection since it’s not a standard feature. I could recommend a plugin to do the redirection, but it’s probably better if you track down what’s causing it, it could be either a plugin, rarely your theme, but could also be via custom coding, you’ll need to track it down.

    #302685
    shanebp
    Moderator

    Put this in your theme functions.php or in bp-custom.php

    function kjc_remove_edit_tab() {
         bp_core_remove_subnav_item( 'profile', 'edit' );
    }
    add_action( 'bp_ready', 'kjc_remove_edit_tab' );
    drzoiberg
    Participant

    Hi

    I make member profile page private for everyone with this snippets in my child theme functions.php file:

    
    function remove_xprofile_links() {
        remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 3 );
    }
    add_action( 'bp_init', 'remove_xprofile_links' );
    
    function my_private_profiles() {
        if ( ! bp_is_user_profile() )
            return;
        if ( current_user_can( 'manage_options' ) )
            return;
        if ( bp_loggedin_user_id() == bp_displayed_user_id() )
            return;
        bp_core_redirect( home_url() );
    }
    add_action( 'init', 'my_private_profiles' );
    

    But I need to disable the members access to a single user front page. Can you help me?

    Thanks in advance!

    #302674
    Varun Dubey
    Participant

    @xmginc try to check with your theme support.

    #302673
    Venutius
    Moderator

    I can’t replicate your issue, possibly it’s an issue with your theme, try running with 2017 to see if that changes it?

    #302672
    Venutius
    Moderator

    Which BP theme are you using: Nouveau or Legacy, just tested on Nouveau and I don’t see your issue.

    xmginc
    Participant

    Hello,

    It appears when upgrading to Buddypress Nouveau, the member directory pagination disappears and unable to make it appear.

    Is anyone else having this issue and would you mind sharing your workaround?

    I am using Woffice Theme by AlkaWeb version 2.8.x which has Nouveau support. If I move back to 2.7.x without it, the pagination reappears and all is fine.

    I have tried Buddypress settings as Legacy and Nouveau and this does not appear to help.

    Thank you all in advance!

    #302665
    mrjanvier
    Participant

    Hi,

    Thank you very much! Yes it worked. I used generatepress as theme, and thanks to youre advice i could both send message with Noveau and Legacy theme. Thank you very much!!

    Many Blessings!!

    #302659
    Venutius
    Moderator

    Ah ok,

    So first of all you need a child theme, there’s plenty on plugins available that wil set one up for you.

    Next you need to know which BP Template is being used by going to Settings>BuddyPress>Options, here you will see it’s either set to Legacy or Nouveau.

    Next create a directory in your childtheme called buddypress/members/single/notifications

    Next copy the file plugins/buddypress/bp-templates/(bp-nouveau or bp-legacy)/buddypress/members/single/notifications/notifications-loop.php to the notifications you created in your childtheme.

    You can then edit this file to add your changes. in here you will find the function call I mentioned for you to add the args to.

    #302657
    Venutius
    Moderator

    Hi there, maybe these pages will help:

    Theme Compatibility

    #302635
    mrjanvier
    Participant

    Thank you for youre response,

    Do you mean with debug with 2017 theme, just to change the theme in 2017?
    I deactived all the plugin and changed in the 2017 theme. Onley the buddypress plugin is active and the problem is still there. So maybe it’s an error in buddypress itself? cause i experience it with 2 websites when i’m composing a message and use controle enter to add an person, i can’t add no more. Are there others who have the same problem?

    greetings

    msteimann
    Participant

    Hello,

    I am trying to figure out how to change/translate some BuddyPress slugs and came across this aging URL:

    Customizing Labels, Messages, and URLs

    At the bottom of the page I followed these instructions, created a bp-custom.php and copied it in wp-content/plugins:

    To change slugs on the sub nav on a member page add these defines to a file bp-custom.php and place this file in /plugins/bp-custom.php

    define( ‘BP_SETTINGS_SLUG’, ‘settings’ );
    define( ‘BP_XPROFILE_SLUG’, ‘profile’ );

    The problem is, if I change the term ‘settings’ to anything else, my profile menu completely disappears and I get a 404 warning.

    Is this code still viable? I have Buddypress and bbPress installed and using a KEO child theme. I am on a tight schedule to launch my site, so any suggestions that help me out are really appreciated.

    Regards,
    Martin

    #302632
    Varun Dubey
    Participant
    #302628

    In reply to: Auto Refresh

    Varun Dubey
    Participant

    @nabeelpommy it will display like this on activity feed if other members keep adding new activities
    https://drive.google.com/a/wbcomdesigns.com/file/d/1qH2das7kHKPZ_l2NNNnQpqTJ0sGnQjfU/view?usp=drivesdk
    You can try with default 2017 theme

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