Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 11,126 through 11,150 (of 69,120 total)
  • Author
    Search Results
  • #249504

    In reply to: phpMyAdmin

    Thakksy
    Participant

    I’m not sure which ones to delete as i don’t use buddypress anymore only bbpress. I deleted the buddypress plugin months ago.

    #249503

    In reply to: phpMyAdmin

    Henry Wright
    Moderator

    You could deactivate BuddyPress and leave the tables in the database without any problems. If you do choose to remove the tables, take a look at the BuddyPress Database Diagram which might be helpful.

    #249487
    Chosker
    Participant

    thanks for the followup. guess I was looking at the wrong activity page! (I know about the global activity page, nor do I want it anyway)
    also nvm about the accepted_args param, wrong copy-paste

    I tried what you suggested and once I made my new subnav menu item into the template overload, quickly reached a blank point where I’d have no idea how to actually make the content (I tried following the trail to how the other Activity subnav links do it but couldnt find where its done)

    but now knowing that what I want is a subnav, a further search found me this valuable post.
    with the provided code I was able to add a new subnav into the member page > activity by using the bp_core_new_subnav_item function

    feels like im getting close (and in a more convenient way), and with the provided code it seems like I should already have a dummy page but instead when I click my new subnav item I get a 404 error page 🙁

    would you know why the new page isn’t getting generated?
    this is my code atm:

    function my_test_setup_nav() {
    	global $bp;
    
    	/* Add the subnav items to the profile */
    	// name, slug, parent_url, parent slug, screen function
    	bp_core_new_subnav_item( array( 'name' => __( 'Subscriptions' ), 'slug' => 'subscriptions', 'parent_url' => $bp->displayed_user->domain . 'activity/', 'parent_slug' => 'activity', 'screen_function' => 'my_profile_page_function_to_show_screen' ) );
    
    	function my_profile_page_function_to_show_screen() {
    		//add title and content here - last is to call the members plugin.php template
    		add_action( 'bp_template_title', 'my_profile_page_function_to_show_screen_title' );
    		add_action( 'bp_template_content', 'my_profile_page_function_to_show_screen_content' );
    		bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
    	}
    	function my_profile_page_function_to_show_screen_title() {
    		echo 'something';
    	}
    	function my_profile_page_function_to_show_screen_content() { 
    		echo 'weee content';
    	}
    }
    add_action( 'bp_setup_nav', 'my_test_setup_nav' );

    thanks again 🙂

    #249476
    joym
    Participant

    Hi @mrjarbenne could you help me with my setup? I have both buddypress and bbpress enabled for the network. I have bbpress setup on my main site and bbpress setup on my subdomain. Should the members have capabilities site-wide? I would think so. Yet when I try to access the forums page I am redirected to the buddypress registration page.

    I don’t have any experience with multisites and most of what I read just confuses me. Any help would be appreciated. Thank you.

    shanebp
    Moderator

    Same file you used for your code.

    You can also use bp_parse_args. It’s probably more appropriate given that you want to affect various templates.

    #249407
    Alonsotron
    Participant

    I’ve gone ahead and integrated s2member and it seems to be doing a fine job of restricting page access’ based on assigned user access-levels. Very easy to configure, and integrates with BuddyPress very well.

    #249406

    In reply to: PUBLIC MESSAGE

    Slava Abakumov
    Moderator

    That’s the problem with the theme template files (if it redefines BuddyPress templates) or css/js. To make sure that this is with you theme – try to activate via customizer any other theme (like 2015 or 2016), Post button should be on its place.

    You can also investigate the source code of your page to make sure that it has a button #aw-whats-new-submit.

    I think you have problems with js, check console of your browser. Something in buddypress.js might be the reason.

    #249398
    Slava Abakumov
    Moderator
    #249399

    In reply to: BP 2.4 Group Home Page

    valuser
    Participant

    Forgot to mention that I created front.php files and placed them in /wp-content/themes/my-theme/buddypress/groups/single/ folder (copies at http://pastebin.com/DD3GrQp8)

    These are reproduced faithfully on the Home tab of each group and the Activity tab appears to the right.

    All good – just was wondering (if i haven’t already messed up) whether front end editing is a current option or is even contemplated.

    #249397
    Slava Abakumov
    Moderator

    I checked the code – it won’t decrease number of queries. All the data for labels are taken from a global variable, which is set when all fields are populated. So you won’t decrease server load by removing labels.

    So you can do that via CSS. There is no other simple solution for that (I’m assuming you are on a BuddyPress 2.4.x). Editing template file won’t help you because of the way the code is structured.

    #249385
    Slava Abakumov
    Moderator

    Post this to bp-custom.php or functions.php of your theme.

    function redblacked_more_groups_per_page($args) {
        $args['per_page'] = 40;
    
        return $args;
    }
    
    add_filter( 'bp_after_has_groups_parse_args', 'redblacked_more_groups_per_page' );
    #249383
    Slava Abakumov
    Moderator

    Just go to StudioPress forum and ask there, as it’s clear from your post that it’s not a BuddyPress issue (as everything is ok in 2016 theme).

    #249382

    In reply to: Adding to Header area

    Slava Abakumov
    Moderator

    Seems, nothing to do here with BuddyPress. It’s better to post this question somewhere else, on basic development forums. You will need basic css/html and perhaps js skills. Or try to hire a developer.

    #249372

    In reply to: Filter Profile Fields

    Mark
    Participant

    Hi @klame,

    I am a newbie at all this too. I discovered that the function you pulled off Buddypress.org doesn’t have to be modified to work. You have to simply copy and paste it in your functions.php file as/is without changing a thing. What matters and needs to be modified is the php to render the members loop on your page (e.g., <?php if ( bp_has_members( my_custom_ids( 'location', 'san francisco' ) ) ) : ?>). Adding href tags around it I don’t believe is the right idea. That code goes in your members loop where you want the members to be displayed matching that criteria. In my example I am showing only users in San Francisco. I’m pretty sure you can display the members loop anywhere you want but I haven’t tried that yet. I decided to create a page template and I simply copied the code out of my theme’s buddypress members-loop.php file and pasted it into the template file. You could probably even use the default WordPress members-loop.php file as your base, though if you have a theme you’re better off getting it out of there. I hope this helps. Good luck!

    #249357
    edragonxx
    Participant

    I have similar problem. and also I can’t find anywhere here CREATE NEW TOPIC / POST link I am using this one.

    When I installed buddypress our site registration option was disabled. So I enabled it now, and then used REPAIR option –> The following active BuddyPress Components do not have associated WordPress Pages: Activate, Register. Repair <– But the problem is that REPAIR does nothing. How to fix that problem and create these registration and acitvate pages?

    Also I noticed from installation manual something weird –> Make sure you have pretty permalinks enabled on your WordPress install. <– WTF is that? There in wordpress does not exist option like pretty permalinks. You have plain, numeric, Post name, and other options, but not “pretty permalinks”. Anyway I am using date/postname version at the moment, it should be pretty enough, but still where is that “pretty permalinks” option and where I should find it?

    #249348
    Herman Aus
    Participant

    I looked at the BuddyPress core files global.js and ajax.php in /bp_default/_inc/ and found the function that manages the filter select box.

    Then I fixed the HTML and used the appropriate classes and now the select box works and the groups loop is re-queried (using BuddyPress AJAX) but it reloads the default loop template instead of my modified loop template.

    I also added the search bar to my page using bp_directory_groups_search_form() and that works perfectly. The search results are returned using the modified groups loop.

    Any ideas how I could make the filter select box reload by modified groups loop too?

    #249323
    rileydong
    Participant

    WPLMS support kindly fix the problem for em. The reason is I removed the Name field in the user profile from Buddypress Register. Buddypress need the Name field to generate link to profile.

    #249315
    shanebp
    Moderator

    Create a template overload of this file:
    buddypress\bp-templates\bp-legacy\buddypress\members\register.php

    And add your text.

    WalkerDesign1
    Participant

    Hi Paul,

    The profile image is 19kb, it’s resolution 72 pixels.

    BuddyPress does allow me to upload a cover image that is 169KB.

    BuddyPress does not seem to allow any kind of file size to be uploaded for the member’s profile image. It may have something to do with the Profile Image configuration. Is there a configuration that is specific for the profile image?

    #249307
    acengiz
    Participant

    By the way, i create subfolders as below in my child theme directory and put compose.php in it:
    /wp-content/themes/kleo-child/buddypress/members/single/messages

    i tried to change label name “friend” to “friiiiend” and result was no change :/
    i think i am missing something, what you think?

    <label for="send-to-input"><?php _e("Send To (Username or Friiiend's Name)", 'buddypress' ); ?></label>

    #249293

    In reply to: Restric Group Create

    Slava Abakumov
    Moderator
    #249292
    Slava Abakumov
    Moderator
    #249287
    Herman Aus
    Participant

    Ay, thanks for that link. It certainly asnwers some of my questions!

    Earlier I tried taking the selected value and storing it using jQuery.post but I couldn’t figure out how to get a working URL and even if I did, how would the groups list get refreshed?

    I figured that BuddyPress has something that already does this. I looked into bp-themes/bp-default/_inc/ajax.php and saw how the bp_ajax_querystring filter is updated there with information from the browser cookies. And I assume that the directory template is reloaded using this function in the same file : bp_dtheme_object_template_loader()

    It’s possible that the value from the select form is already stored but the reason why the template isn’t updating is because this line in ajax.php :

    // Locate the object template
    locate_template( array( "$object/$object-loop.php" ), true );

    can’t locate my custom groups template?

    #249286
    Henry Wright
    Moderator

    Thanks Paul, this is a nice step forward with reference to sending email in BuddyPress.

    #249284

    In reply to: page meta

    Henry Wright
    Moderator

    This will be added by your theme. Check out the Template Hierarchy article for info on how to customise what info is displayed.

    Ref https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/

Viewing 25 results - 11,126 through 11,150 (of 69,120 total)
Skip to toolbar