Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 19,026 through 19,050 (of 94,540 total)
  • Author
    Search Results
  • #241220
    danbp
    Participant

    According to another of your topics, you are using WP Symposium, which is another social network plugin for WordPress.
    https://buddypress.org/support/topic/wp-symposium-vs-buddypress/
    You can’t use both on a same site.

    #241219
    danbp
    Participant

    You’ve better to ask this on WP Symposium support if you don’t know how to handle this or on bbPress support. You’re on BuddyPress support here !

    #241218
    danbp
    Participant

    @quinngoldwin

    it goes to my personal activity instead.

    It’s intended so ! You’re on a profile page, and any links added directly to buddybar or his subnav is alwways, and only, user related. It’s a contextual menu.

    But you can use bp_member_options_nav action hook which is on the template.
    bp-templates/bp-legacy/buddypress/members/single/home.php

    Add this snippet to bp-custom.php your your child theme functions.php:

    
    function goldwin_custom_setup_nav() {
      if ( bp_is_active( 'xprofile' ) )
    ?>
    <li><a href="<?php bp_activity_directory_permalink(); ?>"><?php printf ('All Activities'); ?></a></li>
    <?php  
    }
    add_action( 'bp_member_options_nav', 'goldwin_custom_setup_nav' );

    By default, the hook is placed as latest item of the navbar items. To get as first item, simply move the action at the begin of the list.

    Default code looks like this:

    
    <ul>
    
    <?php bp_get_displayed_user_nav(); ?>
    
    <?php do_action( 'bp_member_options_nav' ); ?>
    
    </ul>

    that you can chage to:

    <ul>
    
    <?php do_action( 'bp_member_options_nav' ); ?>
    
    <?php bp_get_displayed_user_nav(); ?>
    
    </ul>

    But you can’t get your custom item as second, or third, or whatever. Only first or latest.

    How to use bp-custom, functions.php and child_theme is explained on the codex.

    #241211

    In reply to: Wrong Member Count

    RemonaStormborn
    Participant

    I’m having sync problems too.
    BP members: 146
    WP members: 370

    Some are only in the BP list and not the WP list so I can’t edit their roles or pretty much anything. WordPress 4.2.2, BuddyPress 2.3.2.1, housestormborn.com

    #241208
    Graeme Fulton
    Participant

    At the top of edit.php (yourtheme/buddypress/members/single/profile/edit.php), find this bit near the top:

    if ( bp_has_profile( 'profile_group_id=' . bp_get_current_profile_group_id() ) ) :
    	while ( bp_profile_groups() ) : bp_the_profile_group();

    The important part in the snippet above is this function call: bp_get_current_profile_group_id(). That grabs the current group ID from the URL, and sets it for the rest of the page. We want to change that bit.

    Just above the first code snippet I wrote, paste this query to collect all the profile groups into one variable:

    $sqlStr = "SELECT *idFROMwp_bp_xprofile_groups`”;
    $groups = $wpdb->get_results($sqlStr);`

    Now you can replace bp_get_current_profile_group_id() with this: $groups[0]

    That will leave you with this:

    if ( bp_has_profile( 'profile_group_id=' . $groups[0] ) ) :
    	while ( bp_profile_groups() ) : bp_the_profile_group(); ?>

    Now if you visit any of your edit profile group links, you’ll see all the groups on a single page.

    Next, you will probably want to remove the pagination from the page, as it will get included multiple times (since we’re in a while loop), and it is also unnecessary now that we’re showing all groups on one page.

    Remove this bit:

    <ul class="button-nav">
       <?php bp_profile_group_tabs(); ?>
     </ul> 

    Hope that works for you.

    #241205
    kjgbriggs
    Participant

    What I have managed to do is force the sections to full width with CSS, but I am getting odd white lines on the generated pages, I have created a post to try and identify what this is, I think it is the sidebar, but have no way to remove it or even confirm that.

    https://buddypress.org/support/topic/white-lines-displaying-on-pages/

    #241204
    kjgbriggs
    Participant

    On all pages created by BuddyPress, and BBPress I have a white line somewhere on the page, on he BuddyPress pages, it is on the left-hand side and on the BBPress pages such as the forums, it is 3/4 of the way through the actual content.
    It is also displayed on any page auto generated such as the 404 page, I am unsure of what is causing this but it was not there before I added both these plugins, I have deactivated them (ALL of my plugins) and this is still there, but it didn’t used to be before I installed these plugins.

    Does ANYONE know what this is, I have been messing around in CSS for the better part of an hour trying to get rid of that line.

    At a guess, I would say it is part of a sidebar but as it is on different sides on the BuddyPress and BBPress pages, I have got no clue.

    The only CSS that changes the position of any elements in either plugin is below:

    #left-area {
      width: 100%;
      padding-bottom: 23px;
      padding-left: 10px;
      padding-right: 10px;
    }

    Commenting out this CSS allows the BBPress pages to resize back to where they were, not through the line on the right, but it is still there, same with the BuddyPress pages.

    Has ANYONE got any clue as to what this is, whether it is a sidebar and how to get rid of it.

    Forum
    http://areonline.co.uk/forums

    #241202
    Henry Wright
    Moderator

    A few options spring to mind:

    • Ask the theme author to make their templates BuddyPress-compatible
    • Create your own BuddyPress templates. See the Template Hierarchy article

    Making a theme BuddyPress-compatible is something many theme authors would consider doing because it opens the door to 2,000,000+ BuddyPress sites, so it’s probably worth a shot asking.

    #241201
    kjgbriggs
    Participant

    I have read the page on theme compatibility but my theme does not have a full width template so I cannot modify a BuddyPress template.

    I am using the Divi theme by ElegantThemes which is a very customisable and versatile theme, but unfortunately doesn’t allow for much leniency in the way of styling external, generated pages.

    I can add custom CSS if required but I am unsure of how it will help.

    All pages generated by BuddyPress currently are shunted to the side (I have nothing in my sidebar).

    The URL to my development site is:

    areonline.co.uk/

    Not sure if you are able to access the BuddyPress stuff without logging in but if you want you can register quickly and I will delete the user when this is all sorted.

    Thanks in advance.

    #241200
    Gnostic_Thought
    Participant

    I am not sure. I bought a plugin from codecanyon and am trying to alter it to work with buddypress. I think this is the code I will have to alter

    public function __construct() {
    		$this -> admin = WP_Atr_Admin :: get_instance();
    		# registration hooks:
    		add_action( 'login_enqueue_scripts', array( $this, 'initialize_registration' ) );
    		add_action( 'register_form', array( $this, 'add_checkboxes_to_registration' ) );
    		add_filter( 'registration_errors', array( $this, 'validate_registration' ), 10, 3 );
    
    		# mu
    		add_action( 'signup_header', array( $this, 'initialize_registration' ) );
    		add_filter( 'wpmu_validate_user_signup', array( $this, 'mu_validate_registration' ), 10, 3 );
    		add_action( 'signup_extra_fields', array( $this, 'mu_add_checkboxes_to_registration' ) );
    
    		# add button
    		add_filter( 'the_content', array( $this, 'add_button_to_pages' ) );
    		$this -> register_page_status();
    		if( is_multisite() ) {
    			add_filter( 'all_plugins', array( $this, 'hide_plugin_in_mu_sites' ) );
    		}
    	}
    

    I would figure I would prefix bp_ to some of the code here

    # registration hooks:
    add_action( ‘bp_login_enqueue_scripts’, array( $this, ‘initialize_registration’ ) );
    add_action( ‘bp_register_form’, array( $this, ‘add_checkboxes_to_registration’ ) );
    add_filter( ‘bp_registration_errors’, array( $this, ‘validate_registration’ ), 10, 3 );

    but it like there is more to it than that according to your link.

    #241199
    jimjas
    Participant

    Thanks Hugo. I found your article on companion styles, but the only thing I found on deregulating the new styles was:

    function dequeue_bp_twentyfifteen() {
    wp_dequeue_style(‘bp-twentyfifteen’);
    }
    add_action(‘wp_enqueue_scripts’, ‘dequeue_bp_twentyfifteen’);

    However I’m not using a twentysomething theme.

    The current default profile menu runs horizontal across the page

    https://drive.google.com/file/d/0B0PCT5EGd34SN0JIQzdJNWswVEU/edit?usp=drivesdk

    But what I’d like is for the profile menu to run vertically down the page under the profile pic (like it does on the Buddypress site itself)

    https://drive.google.com/file/d/0B0PCT5EGd34STnhqYnM4NXZSVDQ/edit?usp=drivesdk

    Sorry if my pics are not that clear.

    Do you still suggest the dequeue code in the function file as the approach I should follow? And if so, should I change the references to be for the theme I’m using instead of 2015?

    IF not, is there some other code I should use to restore the old profile template format?

    Thanks Hugo!

    jas

    #241198
    Quinn Goldwin
    Participant

    Thanks dan, I have the all activity on the specific page, but I wanted it in my profile. i ended up seeing this link on buddydev and it’s exactly what I need it to do http://buddydev.com/buddypress/show-buddypress-communitysitewide-activity-on-user-profile/ , I just wish I knew how to default it to that link when clicking on the activity link.

    When i hit the activity link, it goes to my personal activity instead of the “all activity” tab. Could you direct me in how I could change the default sub menu tab in activity.

    Thanks for your help! Have a wonderful independence day!

    #241194
    Soul_King
    Participant

    Im having the same problem!! created the register page and assigned it in the buddypress settings.
    everytime i try go to the register page, nothing happens! The same thing happens to every page on the site once it been assigned to the register page withing in buddypress settings????

    #241193
    jugglenet
    Participant

    Hi,

    Hope you can help.

    I am trying to add a snippet of code to a page on wordpress but I have a feeling that buddypress is conflicting with it.

    Let me explain what I’m doing exactly:

    I put the following code in:

    <script src=”http://m12014.one365.com/Content/Scripts/lib/culturefox-require.min.js”></script&gt;
    <culturefox-viewer access-token=”07dccf6de4b3709e5284359dff875dc2″></culturefox-viewer>

    But when I save a gap appears:

    <script src=”http://m12014.one365.com/Content/Scripts/lib/culturefox-require.min.js”></script&gt;
    <culturefox- viewer access-token=”07dccf6de4b3709e5284359dff875dc2″></culturefox-viewer>

    Notice the gap at “culturefox- viewer”

    No idea why it’s happening. I tested the code on another wordpress site and it worked fine. It’s just this one. Is the theme a problem or anything or is it buddypress?

    I am using wordpress version 4.2.2 and buddypress version 2.3.2.1 and the theme I’m using is Fizz

    Hope you can help. Thanks

    #241192
    webappdesigner
    Participant

    answered my own question….

    For anyone that has the same problem, bbpress -> includes -> extend -> buddypress -> groups.php

    on line 151 change

    public function display() {
    to
    public function display($group_id = NULL) {

    #241190
    webappdesigner
    Participant

    Sorry, i did not realise that this was a BBPress issue rather than a BuddyPress one….

    where would i find “class BBP_Forums_Group_Extension”

    #241188
    webappdesigner
    Participant

    Hi, Firstly thanks for making such a great plugin, which once I can get working, will really change the lives of so many people.

    I have clean install on XAMMP of just the following;
    WordPress 4.2.2
    BuddyPress 2.3.2.1
    BBPress 2.5.7

    However when both BuddyPress and BBPress are activated i get the following error message across the top of most screens

    “Strict Standards: Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) in C:\xampp\htdocs\wordpress\wp-content\plugins\bbpress\includes\extend\buddypress\groups.php on line 28”

    If I deactivate either BBPress or BuddyPress it goes away…

    I have no other plugins install as only just started trying to use them.

    I have seen some old previous messages about this same issue with a patch, however they see to be talking about the very different file structure to what this BuddyPress has…

    Thanks in advance

    AOS
    Participant

    Is there a plugin that anyone would recommend that would allow members to block others from commenting on their wall, other comments, etc?

    Thank you.

    WordPress version: 4.2.2
    BuddyPress version: 2.3.2.1
    My site: http://lesfan.com

    AOS
    Participant

    Is there a way to edit the /activity page to something other than “Site Wide Activity” – and to give it an SEO friendly description.

    WordPress version: 4.2.2
    BuddyPress version: 2.3.2.1
    My site: http://lesfan.com

    #241177
    jimjas
    Participant

    I like the older profile template where the page links line up under the photo, as in this example from the buddypress site:

    https://drive.google.com/file/d/0B0PCT5EGd34SQ1BhblFNN1F4NWs/edit?usp=drivesdk

    Is there a setting I can change to use that template instead? If not, how do I restore the older template using the current version of Buddypress?

    Thanks!

    jas

    #241176

    In reply to: Traslate

    danbp
    Participant

    Ciao @merlin_andrea,

    file name must be buddypress-it_IT.mo.

    #241175
    merlin_andrea
    Participant

    Hi,
    I’m a wordpress newbie.
    I try to installa locale file to my Italian Installation.
    I download buddypress-dev-it_IT.mo e buddypress-dev-it_IT.po and upload to wp-content/languages with ftp.
    The plugin is always in english languate. What I wrong?

    Thank you.

    #241173
    Alexlim91
    Participant

    By the way, i want to know if other user got to register an buddypress account then it show”forbidden. Please enable Javascript”. What is the problem?

    Thank You

    #241168
    danbp
    Participant

    Searching for code needs a correct search tool. Use Notepad++ and you’ll find 48 occurence to avatar-crop-pane !
    The first of them is in buddypress/bp-core/bp-core-cssjs.php
    Another one is in buddypress\bp-core\css\avatar.css

    But you haven’t to hack core files. All you have to do is to create a child theme from where you can adjust CSS to your need.

    Codex is your friend ! If you accept to read…

    deklein
    Participant

    Here’s the deal, when I am logged into my (admin) account on my website and click the link or type in the url to the groups page which is http://www.chuneplay.com/groups-labels-collectives/

    I can get to the group page fine when logged into my account. However, when I log into one of my various test accounts, the page instantly redirects me to the page to upgrade to become a pro member.
    To this page: http://www.chuneplay.com/go-pro

    The thing is that page is not supposed to be restricted. I have no settings indicating to block that page from free members or non admin accounts so why the redirect? I have the Paid Memberships Pro plugin but I have no settings on there to indicate the redirect. I also am using a plugin called bbpress Private Groups but again ive gone over all the setting and nothing to indicate a redirect to that page. I have gone to the group page settings and tried both not requiring any level of membership as well as granting both paid and free members access to the page, in both cases the non admin accounts are still being redirected. Please Help!! any ideas to get my brain ticking would be appreciated.

Viewing 25 results - 19,026 through 19,050 (of 94,540 total)
Skip to toolbar