Search Results for 'buddypress'
-
AuthorSearch Results
-
September 7, 2018 at 11:06 pm #276212
In reply to: Remove Profile Tabs Dropdown Menu
shemakeswebsites
ParticipantThank you for your response.
So to clarify, if you use BuddyPress on a basic theme, then the dropdown toggle does not show and ALL active tabs appear in the menu?
September 7, 2018 at 9:46 pm #276209In reply to: Remove Profile Tabs Dropdown Menu
shemakeswebsites
ParticipantI forgot to add an image to better explain my post.
After the tab listed “Articles” there is only one more tab, which is the tab for “Media”. How can I force this tab to be visible instead of being nested in the drop-down. I basically just want to get rid of the drop-down altogether. Thank you.
September 7, 2018 at 5:01 pm #276205In reply to: Sub-forums inside a group?
Andrew Tegenkamp
ParticipantI never found a good solution for this. We ended up having 2 main types of groups that we wanted to differentiate between so we were hoping for two big groups with subforums, but just ended up making each its own group.
We added some metadata to each group (https://codex.buddypress.org/plugindev/how-to-edit-group-meta-tutorial/) and just used that on a custom template (https://webdevstudios.com/2015/06/02/creating-custom-templates-for-buddypress/) and showed things a little differently, but they are all just regular old BP groups in the end.
September 7, 2018 at 1:55 pm #276202In reply to: Bug description groups
shanebp
ModeratorIt is a known bug. For now, here is the fix:
September 6, 2018 at 9:56 pm #276175In reply to: Registration with Contact Form 7
Prashant Singh
ParticipantHi,
If you want to go with the contact form plugin then there is no need to select a registration page in BuddyPress amd have to use shortcode on the page and then create a button on header(as you like) and link it to the register page.
Now, if you want to save data in xprofile fields then have to do custom coding for sure.
Thanks
September 6, 2018 at 9:52 pm #276174Prashant Singh
ParticipantHi,
Please check this link :
You just have to override members-loop.php in your child theme and then have to modify ajax querystring.
Hopefully, it will help you.
Thanks
September 5, 2018 at 8:49 pm #276168In reply to: Does Buddy press work with Ultimate Membership Pro
Prashant Singh
ParticipantHi,
You can take help from these links https://help.wpindeed.com/ultimate-membership-pro/knowledge-base/buddypress-account-page-integration/
Thanks
September 5, 2018 at 8:35 pm #276167Prashant Singh
ParticipantHi,
You can create a private BuddyPress network using this plugin https://wordpress.org/plugins/lh-private-buddypress/
Only logged-in members will be able to access the profiles, directories and all.
Thanks
September 5, 2018 at 10:07 am #276151In reply to: problem with avatar in multisite
Prashant Singh
ParticipantHi,
If you can once confirm that you have tried everything asked here https://buddypress.org/support/topic/avatar-across-multisite/
Like you have enabled multiblog using
define( 'BP_ENABLE_MULTIBLOG', true )in wp-config.php then tried this codefunction bpdev_fix_avatar_dir_path( $path ){ if ( is_multisite() && BP_ENABLE_MULTIBLOG ) $path = ABSPATH . 'wp-content/uploads/'; return $path; } add_filter( 'bp_core_avatar_upload_path', 'bpdev_fix_avatar_dir_path', 1 ); //fix the upload dir url function bpdev_fix_avatar_dir_url( $url ){ if ( is_multisite() ) $url = network_home_url('/wp-content/uploads') ; return $url; } add_filter( 'bp_core_avatar_url', 'bpdev_fix_avatar_dir_url', 1 );Thanks
September 5, 2018 at 7:33 am #276143In reply to: problem with avatar in multisite
Prashant Singh
ParticipantSeptember 5, 2018 at 7:31 am #276142In reply to: Online members status
Prashant Singh
ParticipantSeptember 5, 2018 at 7:29 am #276141In reply to: My Profile Page Change Template
Prashant Singh
ParticipantRemoving the sidebar depends on what theme you are using, also please let me know, do you want to remove from profile only or other pages as well.
You can check this link as well: https://buddydev.com/support/forums/topic/remove-sidebar-on-buddypress-profile-page/
September 5, 2018 at 3:33 am #276139timothylegg
ParticipantAny suggestions or is this still a known and unsolved issue with BuddyPress?
September 4, 2018 at 11:29 pm #276137In reply to: Organic Square theme
peter-hamilton
ParticipantLol, back again, still working hard with the Buddypress, all going very good and have a “facebook killer” of a site that I am very happy with.
seedclub.org
But is “adult” content if Cannabis falls under that warning…lol
September 4, 2018 at 6:48 pm #276134In reply to: My Profile Page Change Template
robintime
ParticipantGood afternoon. My question is far more basic! We’re using BuddyPress for a high school reunion class, and I’m trying to customize using only basic settings so that somebody else can take this on if I get hit by a bus! lol Anyway, I want to modify the page template for the profile page to use the full width template rather than the one with the sidebar. I don’t see the page in the list of pages. Help? How would I do that? Thanks very much!
September 3, 2018 at 1:20 pm #276124In reply to: Change the tittles in page
akenach
ParticipantNo exactly, i have a template for all “buddypress.php” in this template have in <h1> this…
<div id=”barra_titulo_cursos”>
<h1><?php the_title(); ?></h1>
</div>But… in some cases, for “messages” pages, apears the Username, not apears tittle “Messages” and this is my problem.
I have a little solution but i dont like, some like this:
<div id=”barra_titulo_cursos”>
<h1>
<?php
$mypage = trim( $_SERVER[“REQUEST_URI”] , ‘/’ );
if($mypage = “members/akenach”) {
$tit_page = “Account”;
} elseif ($mypage = “members/akenach/messages”){
$tit_page = “Messages”;
} else {
$tit_page = the_title();
}
echo $tit_pagina ;
?>
</h1>
</div>What is your opinion about this patch ?
September 3, 2018 at 11:06 am #276118In reply to: how is the autocomplete list for mentions compiled?
Prashant Singh
ParticipantSeptember 3, 2018 at 10:38 am #276116In reply to: how is the autocomplete list for mentions compiled?
Prashant Singh
ParticipantYou can follow some guides as well https://codex.buddypress.org/member-guide/activity-mentions/
September 3, 2018 at 10:32 am #276114In reply to: Remove (not hide!) activity filter
Prashant Singh
ParticipantHi,
Please let me know which template pack you are using?
If it is legacy you can override the file index.php(buddypress->bp-templates->bp-legacy->buddypress->activity) and there you will find the code
bp_activity_show_filters();. You can directly remove it with complete HTML wrapper.Thanks
September 3, 2018 at 10:31 am #276113In reply to: Link does not display correctly
thedark52
ParticipantProblem resolved. Just changing the template from Buddypress Nouveau to Buddypress Legacy
Prashant Singh
ParticipantSeptember 3, 2018 at 10:17 am #276106In reply to: WordPress profile files to bp
Prashant Singh
ParticipantYes, this is how it works.
It will need customization to map WordPress fields to BuddyPress xProfile fields.
You can check this plugin https://profilepress.net/downloads/wordpress-buddypress-extended-profile-sync/ as well.
Thanks
September 3, 2018 at 10:14 am #276105In reply to: Activation Page not Working as Child
Prashant Singh
ParticipantI mean that it is suppose to work as parent page instead of child page.
It will need changes in code of BuddyPress core to do so.
Thanks
September 3, 2018 at 10:13 am #276104In reply to: Biographical info field in profile
Prashant Singh
ParticipantHi,
You have to create a profile field in BuddyPress itself for the biographical info.
BuddyPress do not fetch it from WordPress. When you will create the field users will be able to add edit that from their profile.
Thanks
September 3, 2018 at 10:08 am #276101In reply to: how is the autocomplete list for mentions compiled?
Prashant Singh
ParticipantHi,
For mention feature we have a javascript file there https://github.com/buddypress/BuddyPress/blob/master/src/bp-activity/js/mentions.js
You can look at it.
-
AuthorSearch Results