Search Results for 'buddypress'
-
AuthorSearch Results
-
January 17, 2016 at 8:45 am #248769
Hastig
ParticipantWarning: I haven’t tested this or thought it through and I’m half asleep..
For starters, if you have ftp access rename the buddypress plugin folder to something else like ‘temp-buddypress’
Log into admin panel, switch themes to twentyfifteen.
Rename buddypress back to its original name.
Check your site and admin panel to see if buddypress is working with twentyfifteen.
Here’s some troubleshooting advice from wordpress..
January 16, 2016 at 6:42 pm #248758In reply to: Home page randomly redirects to another page
Hastig
ParticipantI don’t have an answer for you but is Guest Post a blank page, posted with default settings (viewable by all, etc.) In other words you created the page and all you entered was the title and clicked publish.
Also, is your index-register.php file in this folder..
/wp-content/themes/YOURTHEME/buddypress/members/index-register.php
Also, it’s permissions are 0644 or the same as your other files in the same (members) folder?
Also, make sure for testing purposes that index-register.php is the exact same as the template in bp-legacy, to rule out there being something broken with the code in your customized version.
January 16, 2016 at 5:12 pm #248755In reply to: Home page randomly redirects to another page
Hoi Sze Lam
ParticipantFollowing up on this topic:
I’ve received a heads up from the Google Webmaster Product forums support suggesting that my redirection issue is potentially a buddypress related problem.
https://productforums.google.com/forum/#!topic/webmasters/l60LFtvlQ90Anyone got any ideas as to how to fix this?
January 16, 2016 at 2:44 pm #248752In reply to: Viewing/Editing Profiles
shanebp
ModeratorHow would I be able to change settings and the design…
You can customize the layout ( design ) by following these instructions:
setup template files so that you can customize them.January 16, 2016 at 2:39 pm #248750In reply to: Transfer Groups to New Website
shanebp
Moderator‘easy to follow’ ?
Sure, if you are or know a developer.
https://buddypress.org/support/topic/how-to-exportimport-groups/I don’t know of any simple ‘click’ interface.
January 16, 2016 at 12:34 pm #248748In reply to: BP crashes dashboard according to godaddy
shanebp
ModeratorWithout root access to your godaddy account, it is not possible to provide a definitive answer.
All we can do is guess and provide general suggestions.
It’s probably due to the large number of pending members.
You may need more memory and / or cpu for your account.You should not make your root access info public.
You can post a job listing here and / or try find a developer who will track down the exact problem and possible solutions.
January 15, 2016 at 5:12 pm #248733January 15, 2016 at 1:23 pm #248728shanebp
ModeratorTry the 2nd one first.
Put it in your theme/functions.php or in bp-custom.php – a file you may need to create.January 14, 2016 at 11:40 am #248694Henry Wright
ModeratorTry
bp_is_groups_component().Ref: https://codex.buddypress.org/developer/template-tag-reference/
January 14, 2016 at 9:58 am #248691In reply to: how can i change word Forums?
Henry Wright
Moderator@bruce30 I’ve made an edit to the code above which means it’ll now work for all text on your site, not just bbPress or BuddyPress text. So now if a new third-party plugin you add decides to use the word Forum, that will also be translated. I think this is a better approach.
January 14, 2016 at 1:04 am #248682In reply to: How to hide profile menu items from other users
Hastig
ParticipantCould you wrap the area you want seen by only the logged in user with
bp_is_my_profile()Something like this..
<?php if (bp_is_my_profile()) : ?> show this <?php endif; ?>bp_is_my_profile on hookr
asked in a past buddypress forum postJanuary 13, 2016 at 7:56 pm #248677In reply to: Editing profile by user (redirects to groups)??
bascoww
ParticipantWe just found out there’s a conflict between NextGen gallery and the latest version of BuddyPress. Unfortunately there are many issues like this one regarding NextGen in combination with plugin’s like BuddyPress who also use a sort of rewrite/redirection of paths.
The NextGen bug is in there for more then a year. To bad but the only solution for us, is to use a other kind of photo-gallery. Downgrading NextGen wasn’t enough because we came up having other bug problems…..
On other hand I think buddypress community should be abble to work arround this bug of NextGen.. how? I don’t know.
January 13, 2016 at 3:49 pm #248669In reply to: Add member directory loop to custom bp nav item
Adler-Pottsie
ParticipantSorry cleaned up without notes on 2nd sub-nav tab
function mb_bp_profile_menu_posts() { global $bp; bp_core_new_nav_item( array( 'name' => 'Member Directory', 'slug' => 'directory', 'parent_url' => $bp->loggedin_user->domain . '/' , 'position' => 40, 'default_subnav_slug' => 'directory', 'screen_function' => 'wbc_member_directory' ) ); } add_action('bp_setup_nav', 'mb_bp_profile_menu_posts', 301 ); function mb_bp_profile_submenu_posts() { global $bp; if(!is_user_logged_in()) return ''; bp_core_new_subnav_item( array( 'name' => 'WBC Members', 'slug' => 'directory', 'parent_url' => $bp->loggedin_user->domain . $bp->bp_nav['directory']['slug'] . '/' , 'parent_slug' => $bp->bp_nav['directory']['slug'], 'position' => 10, 'screen_function' => 'wbc_member_directory' //the function is declared below ) ); } add_action('bp_setup_nav', 'mb_bp_profile_submenu_posts', 302 ); function wbc_member_directory(){ add_action( 'bp_template_content', 'mb_show_posts' ); bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'buddypress/members/single/plugins' ) ); } function mb_show_posts() { echo 'TEST'; // add yout stuff here }January 13, 2016 at 3:38 pm #248668In reply to: Buddypress and Restricting Page Access
Alonsotron
ParticipantI’ll have a look at this and post my results here. Do you have any experience getting this to sync up with BuddyPress? =)
January 13, 2016 at 2:54 pm #248664In reply to: troubleshooting the debug.log
shanebp
ModeratorThe first one refers to bbPress.
And can be difficult to track down. It may be in the bbPress plugin or another plugin that calls bPress .2. Something, not BuddyPress, is creating a Widget using a deprecated constructor method.
3. Is related to a JetPack module.
The first step to getting rid of those Notices is identifying the source, so:
– switch momentarily to a WP theme like 2013 and see if any persist
– turn off plugins one at a time and see if any persistTime consuming…
January 13, 2016 at 6:33 am #248654In reply to: how can i change word Forums?
Henry Wright
ModeratorI think so with the use of a language file.
Ref: https://codex.buddypress.org/getting-started/customizing/customizing-labels-messages-and-urls/
Also, according to the Customizable Slugs in BuddyPress article, you should be able to add this to your wp-config.php file to change your slug:
define ( 'BP_FORUMS_SLUG', 'discussions' );Ref: https://buddypress.org/2009/05/customizable-slugs-in-buddypress/
January 12, 2016 at 11:43 pm #248646In reply to: Disable avatar crop
Blogpostnews
ParticipantMy buddypress image/avatar editor does not scale before it crop images. It upload image/avatar but in a full zoom and doesnt show scaling box. it just show crop image only and when i crop, it delivers the image background only, leaving out the object in the picture.
No scaling box to edit image before croping.On the other hand, i was able to scale/edit the image using wp editor in user profile on admin bar and my admin bar is disabled to other users.
Please i need help with this as it affect other users.
Thanks
January 12, 2016 at 4:14 pm #248638In reply to: Remove or hide “@” on profile in front of username
timsilva_
ParticipantHi @bertl11, I suspect we were having similar issues. Try deleting the @ in the cover-image-header.php file instead of member-header.php because that worked for me. I have cover images turned on, I’m curious if you do too.
https://buddypress.org/support/topic/cannot-edit-theme-files/#post-248637
Hope that solves your issue!
Cheers,
TimJanuary 12, 2016 at 3:25 pm #248636In reply to: Error – BP_MESSAGES_AUTOCOMPLETE_ALL
Sweeny
ParticipantHi!
I tested: It seems to be the plugin “buddypress-global-search”!
Alex
January 12, 2016 at 12:41 pm #248627In reply to: how can i change word Forums?
bruce30
Participanthi @henrywright, 🙂
thank you for your response, i already posted this topic on bbp but they say its on buddypress. now im confuse. where should i go?. please helpJanuary 12, 2016 at 12:54 am #248607In reply to: Remove friend notifications for all activity page
mrsminkie
Participant@shwikiart
Try this: https://codex.buddypress.org/developer/loops-reference/the-activity-stream-loop/#filtering-examples
Copy the activity-loop.php file into your child theme and then update line 18 with the settings that suit you using the guide in the link to help.
January 12, 2016 at 12:28 am #248606In reply to: moderator disappeared from users
Ben Hansen
Participantso the moderator user role is actually a function of bbpress not buddypress so you may have more luck on that forum than here but have you run the the bbpress repair scripts?
January 11, 2016 at 6:27 am #248589In reply to: Redirect After “Join Group” Continued
Henry Wright
ModeratorRegarding your original question:
Is there a way to redirect to forum from “Join Group” button please.
The code you’ve posted here won’t perform a redirect; instead, it filters the default groups tab. I would imagine you’d also need a redirect put in place (which might explain why you see no change when you add the code snippet).
January 10, 2016 at 11:36 pm #248584In reply to: compatibility issue with oauth plugin
Henry Wright
ModeratorTry finding the BuddyPress redirect and check if it’s removable.
remove_action()might be handy in this situation, depending on how the redirect is coded.Ref: https://codex.wordpress.org/Function_Reference/remove_action
January 10, 2016 at 11:32 pm #248583In reply to: Remove or hide “@” on profile in front of username
Henry Wright
ModeratorCheck the @ isn’t being added by your theme. If it is, then you can use the Template Hierarchy to override the relevant templates.
-
AuthorSearch Results