Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,401 through 10,425 (of 73,985 total)
  • Author
    Search Results
  • #267738
    theonlystepmom
    Participant

    I am using the most current versions of Divi and BuddyPress and have a child theme. I’m desperate for help. I created a footer in the divi library that I’m using instead of the standard footer. It looks perfect everywhere except for the BuddyPress pages and I don’t know how to fix this. Here’s an example of the footer displaying correctly>> http://theonlystepmom.com/contact/ and here’s an example of how it appears on a BuddyPress page>> http://theonlystepmom.com/register/. Thank you in advance for any help!

    #267730
    axelmire
    Participant

    Wordpress 4.8.1 Buddypress 2.9.1 php 5.6.29

    Hi guys I have a fresh install of wordpress with twenty seventeen theme. Buddypress is the only plugin running. I have performed installation multiple times and I still get the same results.

    There is an issue with the activity posted an update timer. Upon posting it jumps straight to 2 mins then skips around and seems to get stuck at 1 min. I have tried in all the browsers but still the issue remains.

    Any help is appreciated 🙂

    #267726
    ezekielloves
    Participant

    If I try changing the profile slug, the buddypress menu items stop showing up in the main navigation of the website and adds some random menu items to that main navigation.

    define ( 'BP_XPROFILE_SLUG', 'about' );

    #267725

    In reply to: Username URL

    ezekielloves
    Participant

    Yes, fortunately BP does provide a one-line solution!

    add_filter( 'bp_core_enable_root_profiles', '__return_true' );

    Thanks @modemlooper
    https://buddypress.org/support/topic/dynamic-urls-for-buddypress-user-profiles-friends-etc/

    #267723
    impulse66
    Participant

    Hi

    in the front-end profile page, in settings, members can changer password. it’s great but not secure cause members can choice a password with just one caracter !

    I don’t find plugin for correct this security problem

    could you give us an idea for change buddypress strength password ?

    thank you very much

    #267722
    axelmire
    Participant

    I am trying to configure buddypress profile usernames so the url displays like medium.com ie medium.com/@username.
    Does anybody have any ideas on how to accomplish this?
    Thanks

    ericgallagher
    Participant

    WordPress 4.8.1 running Newspaper theme.
    BuddyPress Version 2.9.1 |

    I feel like this should be fairly simple but have search the forums for awhile and tried 3 different plugins. Groups-o-matic basically does it, but I need an auto remove option as well.

    Sooo….if a person selects an option in their profile, they would be added to a certain group. If they select a different option, they would be removed from the previous group and added to the new group.

    Any help would be appreciated!

    #267718
    yeabry
    Participant

    Hello I am using AIT Themes to create my website and I think the theme is overwriting buddypress registration page. I have followed the tutorial and changed all the settings for buddypress, but haven’t had any luck. Is there a way to force Buddy Press registration page to show instead of AIT Theme?

    cctny1
    Participant

    WordPress Version: 4.8.1
    buddy press version 2.9.1

    HOW CITY CENTRE WORKS


    This will be a marketplace website. We will also handle the logistics and mgmt of deliveries for the vendors (restaurants, grocery stores etc..).
    I’m trying to figure out if I can use buddypress to automatically notify delivery drivers once a delivery request is made. Have the notification go to the closes driver in proximity to the vendor.
    And allow the customer to track the driver location in real time.
    Thank you!

    #267715
    Henry Wright
    Moderator

    You can edit the layout of the registration page. buddypress/members/index-register.php is the template you’ll need to edit. See the Template Hierarchy article for more information.

    Template Hierarchy

    soporteomega
    Participant

    Hi, I’m trying to create a custom profile page using visual composer with aditional forms and categories. I’ll like to add the whole buddypress profile page header into a page (cover image, profile picture and buttons: activity, profiles, messages). I found some shortcodes but it only shows parts of the profile.

    soporteomega
    Participant

    Hi, I Would like to change the activity post behaviour. when the text is too long and there is an image, the image gets hidden into the Read More link. I would like that the read more only shows to the text if the text is too long and the post always shows the posted image.

    #267710
    ghosting4u
    Participant

    I have the same problem with the registration page. It’s unusable … an absolutely embarrassment if you look at screen capture of the desktop layout:

    https://image.prntscr.com/image/10859QPiSTaGvw7pDQg9hw.png

    and the tablet layout:

    https://image.prntscr.com/image/wGzGFTgOTDeq01OxaAbGbQ.png

    I am running on Divi theme, and there is no way that I can use Divi theme to edit the layout of the registration page because it’s done at the backend of the BuddyPress plugin.

    Is there a plugin out there that can resolve this ?

    Regards.

    #267708
    lenasterg
    Participant

    Hi. I made a minor change in the code @danbp suggests (basically the $args[‘subnav_slug’] and now I believe it works as expected.
    So I guess it’s not a BuddyPress bug.

    Please, try the following

    
    function bpex_change_profile_settings_default_tab() {
    
    	if( bp_is_active( 'xprofile' ) ) :
    
    	$access        = bp_core_can_edit_settings();
    	$slug          = bp_get_settings_slug();
    
    	$args = array(
    		'parent_slug'     => $slug,
    		'subnav_slug'	  => 'notifications',
    		'screen_function' => 'bp_settings_screen_notification',
    		'user_has_access' => $access
    		);
     
    	bp_core_new_nav_default( $args );
    
    	endif;
    
    }
    add_action( 'bp_actions', 'bpex_change_profile_settings_default_tab' );
    
    function bpex_remove_general_item_on_usermenu() {
    global $wp_admin_bar;
    
    	if ( bp_use_wp_admin_bar() ) {
    		$wp_admin_bar->remove_node( 'my-account-settings-general' );
    	}
    
    }
    add_action( 'wp_before_admin_bar_render', 'bpex_remove_general_item_on_usermenu' );
    
    function bpex_remove_profile_settings_general_tab() {
    
    	if( bp_is_active( 'xprofile' ) ) :	
    
    		bp_core_remove_subnav_item( 'settings', 'general' );
    
    	endif;
    
    }
    add_action( 'bp_actions', 'bpex_remove_profile_settings_general_tab' );
    #267702
    cctny1
    Participant

    WordPress Version: 4.8.1
    buddy press version 2.9.1
    http://www.citycentreny.com

    This will be a marketplace website. We will also handle the logistics and mgmt of deliveries for the vendors (restaurants, grocery stores etc..).
    I’m trying to figure out if I can use buddypress to automatically notify delivery drivers once a delivery request is made. Have the notification go to the closes driver in proximity to the vendor.
    And allow the customer to tack the driver location in real time.

    Thank you!

    #267701
    njones7
    Participant

    Wordpress version = 4.8.1
    Buddypress version = 2.9.1

    How do i go about ordering by a numerical value? I am using BP profile search to add in a order by field using a shortcode, however the field being ordered (pricing) is only ordering by the first digit and not the digits as a whole

    e.g Having the values of 40,20,70,70,100
    Instead of ordering like 20,40,70,70,100 it is putting the 100 first because 1 comes before 2,3,4 etc

    #267698

    Topic: Child Theme

    in group forum Installing BuddyPress
    jonpeck777
    Participant

    Greetings,

    I (think) I am following the Documentation correctly but for some reason I am not able to have my buddypress files in my child-theme override the files in the plugin folder. Need help… Using Divi as the Parent Theme.

    Started by adding simply the buddypress.php to the main child-theme folder.
    Then went to adding the /buddypress folder to the child-theme folder and all the files in the plugin section. If I’m doing this wrong please tell me. 🙂

    Thanks,
    JP

    #267692
    press786
    Participant

    I am still facing this issue, even after giving all the permission & uploading an image with a small name.
    Using
    Buddypress 2.8.2
    wordpress 4.7.5
    Please provide a resolution to this, I want to have an upload avatar option in the register page.
    I am using “Buddypress avatar upload ajax” plugin for this.

    #267691
    netixel
    Participant

    Hi team,

    I report an issue with the “lost password”. When I receive the link by mail to reset the password I am redirected to a page 404…why ?

    Problem from Buddypress or WPLMS (my theme) or the both ?

    Regards

    #267688
    kiekers
    Participant

    Hi everyone, I hope that you can help me.

    I need a way of updating all buddypress xProfile fields with the current values that they have (no info have changed), I know this sounds insane, but I have added custom taxonomy terms as a field, which were saved at the time, but now have changed values (as in <option value=”55″…” was changed to <option value=”text_goes_here…”). Is there a way to re-save all fields programmatically instead of going to each individual profile manually in the backend and resaving? As mentioned, no changes was made to the info, just changes to the code/structure.

    #267687
    eyedraw
    Participant

    I have this weird bug: When I try to retrieve all of the current users’ groups, not only are just the public groups displayed, it also seems like the user is half signed out. Although the current username is still displayed in the header, the wp admin bar shows a sign-in button (as shown in the picture here). Also, as said before, only public groups of the user are displayed.

    This is my Code:

    <?php get_header();
     $current_user = get_current_user_id();
     
     $args = array(
        'user_id' => $current_user
    );
    ?>
    <div id="primary" class="content-area container">
    		<main id="main" class="site-main">
                <?php
                    if ( bp_has_groups ( $args ) ) {
    /* also tried bp_groups($args) here */
                        while ( bp_groups() ) : bp_the_group(); ?>
                            <a href="<?php bp_group_permalink(); ?>"><?php bp_group_name(); ?></a>
                        <?php endwhile;
                    } ?>
            </main>
    </div>
    <?php
    get_sidebar();
    get_footer();
    ?>

    I’m running the newest wordpress and buddypress versions.

    #267686
    neildee250
    Participant

    I’m new to the support forum but am struggling to resolve an issue regarding new signups receiving emails and have exhausted my knowledgebase.

    I am running the latest versions of wordpress and buddypress after updating buddypress tonight.

    Our webhost Asurahosting have found an error log that may point to an issue as laid out below

    PHP Fatal error: Cannot redeclare comment_template() (previously declared in /home/gaminguy/public_html/wp-content/themes/buddy/comments.php:19) in /home/gaminguy/public_html/wp-content/themes/buddy/comments.php on line 48

    This seems to refer to comments so may not be linked. I can send emails from Cpanel but after trying several settings, cannot get verification emails sent after signup even in the dashboard when re-sending them so something is wrong I just have no clue.

    Help please?

    #267685

    In reply to: Seeking Solution

    shanebp
    Moderator

    bbPress is the only real option for forums.

    Depending on what features you need, this may suffice: BuddyPress Simple Events

    You can also get it here: PhiloPress – BuddyPress Simple Events

    #267684
    fifthhouse
    Participant

    I recently installed BuddyPress and am interested to accomplish two things. One is that I will need to integrate discussion forums into my site, so I am assuming I will also need bbpress. Is bbpress the best option for forums to integrate with BuddyPress?

    My other question is about event scheduling plugin. There are a lot of options, but the two most popular are The Events Calendar, All-in-One Event Calendar, and Events Manager. Are any of these better integrated with BuddyPress than the others?

    Thanks in advance for any help.

    #267682
    theredeclipse
    Participant

    Hello,

    I’m trying to merge all sub-settings pages into settings.php(located in buddypress/members/single). I’ve tried everything what I could but as result when i trying to save changes(like to change password or activity behavior) under single <form> and single button submit doesn’t work at all.

    Any thought how to do it?

    Thanks

Viewing 25 results - 10,401 through 10,425 (of 73,985 total)
Skip to toolbar