Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 5,401 through 5,425 (of 68,947 total)
  • Author
    Search Results
  • #302259

    In reply to: Custom Notifications

    webusat
    Participant

    Hi,

    I am not sure it that helps but it is placing everything into the menu. So far I haven’t been able to get it to work anyway. I also forgot to mention I am using WP 5.0.3 and BuddyPress 4.1.0 and the code there is for older versions.

    I just want to be able to add the count at the top of the content on the page.

    Thanks for the help!
    Stan

    #302257

    In reply to: vimeo video whitespace

    Venutius
    Moderator

    On my test system, posting that into activity does not result in an embedded video, just a link to the video. BuddyPress does not handle video and in order to have it embed then something else is running in order to do that. It could be WordPress itself as it has embed functionality but looking at the CSS of the embedded video on your site it does not look like WordPress, it looks like there’s a plugin doing it.

    #302243

    In reply to: Custom Notifications

    Varun Dubey
    Participant
    #302242

    In reply to: adsense

    Varun Dubey
    Participant

    @emmanuel1234 you can check wpadvancedads.com/ads-on-buddypress-pages

    Varun Dubey
    Participant

    @flowta with default 2017 theme you have horizontal menu http://prntscr.com/m7mamo and you can also try with the vertical menu as well. As per theme specific support most available theme in the market have legacy template files, that’s why you get a suggestion to switch to legacy first.


    @ssmalli3
    you can also check one more Reign Demo

    #302237
    shanebp
    Moderator

    Your issue is specific to your installation. And nobody will register on your site so that they can see
    the page in question.

    Given that you are using Avada and the Shortcodes for Buddypress plugin – there is very little chance that anyone here can help you.

    > … list the groups to this page within the setting …

    Sounds like an issue with Avada > BuddyPress
    For that page, rather than use Avada to build the page, you may need to create a page and assign a hand-coded template to it.
    There is lots of info on how to do that.
    For example: https://ithemes.com/tutorials/applying-wordpress-page-template/

    #302235

    In reply to: BuddyPress Breadcrumbs

    webusat
    Participant

    Never mind, this wasn’t BuddyPress.

    Thanks,
    Stan

    Varun Dubey
    Participant

    @datenfresser You can find them inside user meta
    http://prntscr.com/m7gdur
    To set default values you can check previous thread

    Email notification default settings

    #302219

    In reply to: Permalink Crash

    shanebp
    Moderator

    Do not ever – EVER – post your admin credentials on a public web page.

    [ Would you hand a copy of your house keys to ‘x’ number of random strangers you pass on the street ? ]

    I have removed the credentials and replaced them with the error message that you are seeing.
    I don’t have a solution to your issue.
    I suspect the BuddyPress prompt to reset the permalinks is a symptom of an WordPress issue in your installation.
    You might try asking on the https://wordpress.org/support/ forums.

    #302218
    shanebp
    Moderator

    bp_is_user_forums() is not used in the current BuddyPress template files.

    The fatal errors are due old BuddyPress files coming from your child theme – not from buddypress plugin files.

    PHP Fatal error: Uncaught Error: Call to undefined function bp_is_user_forums() in /nas/content/live/thefluentself/wp-content/themes/fluent-self-2017/buddypress/members/single/home.php:88

    Perhaps there is a new version of your theme ?
    Or you could ask the theme creators about the error?

    You could try deleting all BuddyPress files in your child theme.
    Or you could try updating the buddypress/members/single/home.php file in your child theme.

    #302207
    Varun Dubey
    Participant

    @jamesmct I do not think BuddyPress have any current option to manage all pending membership for all private group at single location.

    #302199
    iamdev
    Participant

    you can use this code buddypress has a function
    place this code in function.php

    function julia_b_activity_dont_save_item( &$activity ) {
     
        $dont_types = array( 'new_member');
     
        if ( empty( $activity->id ) && in_array( $activity->type , $dont_types ) ) {
            $activity->type = '';
     
        }
     
    }
    add_action( 'bp_activity_before_save', 'julia_b_activity_dont_save_item' );
    #302191
    Venutius
    Moderator

    Do you have FTP access? you could simply delete the BuddyPress directory in plugins.

    #302189
    qnkov
    Participant

    I need to have the default page id ON, cuz all my images, and alot of pages with plugins brokes if i use other option. Isn’t there anyway buddypress to work with page id actived? That’s the default option for wordpress, i don’t know why it’s not working with it.

    #302184
    shanebp
    Moderator

    No.
    You have to assign pages to BP.
    Go to Settings > BuddyPress > Pages and assign pages – you may need to create them first.

    #302177
    pixieblitz
    Participant

    Hello…
    I just made a post My Previous Post and noticed a label “this topic marked as spam” after I tried to edit a typo. I’m not sure why or how to avoid that in the future, or how to get any input on what I had originally been asking?

    It IS a bit of a duplicate post, since I originally put a similar question in a different forum, but I wasn’t really sure where it belonged and couldn’t figure out how to delete the first one.

    Please help?
    Thanks!

    #302169

    In reply to: Username as Name

    Venutius
    Moderator
    #302156
    joshpage
    Participant

    @shanebp – Thanks. I’ve actually figured the entire thing out. Posting code below in case anyone else needs it.

    function denial_email_creation() {
     
        // Do not create if it already exists and is not in the trash
        $post_exists = post_exists( '{{denier.name}} denied your friend request.' );
     
        if ( $post_exists != 0 && get_post_status( $post_exists ) == 'publish' )
           return;
      
        // Create post object
        $my_post = array(
          'post_title'    => __( '{{denier.name}} denied your friend request.', 'buddypress' ),
          'post_content'  => __( '<p>{{denier.name}} denied your friend request. And the rest of your email content.......</p>', 'buddypress' ),  // HTML email content.
          'post_excerpt'  => __( '<p>{{denier.name}} denied your friend request. And the rest of your email content.......</p>', 'buddypress' ),  // Plain text email content.
          'post_status'   => 'publish',
          'post_type' => bp_get_email_post_type() // this is the post type for emails
        );
     
        // Insert the email post into the database
        $post_id = wp_insert_post( $my_post );
     
        if ( $post_id ) {
        // add our email to the taxonomy term 'friendship_denied'
            // Email is a custom post type, therefore use wp_set_object_terms
     
            $tt_ids = wp_set_object_terms( $post_id, 'friendship_denied', bp_get_email_tax_type() );
            foreach ( $tt_ids as $tt_id ) {
                $term = get_term_by( 'term_taxonomy_id', (int) $tt_id, bp_get_email_tax_type() );
                wp_update_term( (int) $term->term_id, bp_get_email_tax_type(), array(
                    'description' => 'Recipients Friendship Denied',
                ) );
            }
        }
     
    }
    add_action( 'bp_core_install_emails', 'denial_email_creation' );
    
    add_action( 'friends_friendship_rejected', function( $friendship_id, $friendship  ) {
      $user_id = $friendship->initiator_user_id;
      $denier_id = $friendship->friend_user_id;
      $args = array(
        'tokens' => array(
          'site.name' => get_bloginfo('name'),
          'denier.name' => bp_core_get_user_displayname( $denier_id ),
        ),
      );
      bp_send_email( 'friendship_denied', $user_id, $args );    // Send your email here.
    }, 10, 2 );
    #302151
    Venutius
    Moderator

    Then you must have a conflict somewhere. Have you tried running with just BuddyPress Active and with a default theme such as 2016?

    #302141
    rsmithgs
    Participant

    I found that if I made this file directory in my theme (as per Theme Compatibility Codex) I could resolve the issue with the Compose field:

    /buddypress/common/js-templates/messages/index.php

    So for anyone else looking for messaging template changes. It’s located in:

    plugins/buddypress/bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php

    Anyone looking for the search field for members list, it’s located in:

    /plugins/buddypress/bp-templates/bp-nouveau/buddypress/common/search/search-form.php

    #302134
    Venutius
    Moderator

    Check out plugins/buddypress/bp-templates/legacy/members/profile/profile-loop.php this is how BP displays the profile group information, you should be able to use this as a basis for what you want to do.

    ico33
    Participant

    One user of my site results in buddypress not recently active, even if it is active or have been active recently.

    Where is the problem? Ideas?

    #302108

    In reply to: Members Not Showing

    Unfunnel
    Participant

    Also, when using the plugin… the search results pull up User Names versus the actual Buddypress member’s name as they did prior to using this function…

    HEALTH COACH DIRECTORY

    #302103
    shanebp
    Moderator

    Have you tried using the hook provided in the group > create template?

    For example, in this file: buddypress\bp-templates\bp-legacy\buddypress\groups\create.php
    Look for the group avatar section and use this hook:
    do_action( 'bp_after_group_avatar_creation_step' );

    #302100
    Venutius
    Moderator

    Hi there,

    That’s not a file you can overload, you can only overload files in the buddypress/bp-templates/bp-nouveau(bp-legacy)/buddypress directory.

Viewing 25 results - 5,401 through 5,425 (of 68,947 total)
Skip to toolbar