Search Results for 'theme'
-
AuthorSearch Results
-
June 26, 2016 at 1:27 pm #255255
In reply to: l can not change the link extension
danbp
ParticipantNav items names can be changed via the language file.
Which language do you use on your site ?
Which language is used with BuddyPress ? (if turkish, get in touch with one of the editors here and ask for update)
Is your theme fully translated to that language ?To move the User Menu sub-menu, read here.
Check also your theme support forum, perhaps you’ll find some related topics to this WP core menu.
June 26, 2016 at 11:02 am #255243In reply to: Moving menu and Hiding admin bar
sharmavishal
Participant1. In BuddyPress, we by default get to see member page. I want to know how to redirect someone who is logging in/ new user after registration to News feed?
search for login redirect plugins for buddypress
2. I want to keep those wall, timeline and all in menu bar instead of profile tab. How to do that?
check wp admin bar codex or associated plugins
3. I am unable to hide admin bar/ that WordPress logo bar for non-admin user. no plugin helping me out.
am aware of atleast 2 plugins which are working for me. u need to test/check which ones work with ur theme/setup
4. how to make the menu such that signed in user can see log out button and other sign in/ register?
via buddypress components in the menus. logged in and logged out menu links
5. how to enable realtime notification and instant messaging private n groups both?
notification is already there and its real time. i belive there is a group chat plugin for buddypress as well
6. how to remove show dropdown menu in profile
that would depend on ur theme which u are using
PS:- I don’t know PHP much. moreover, I cannot afford to hire someone.
then this would take much time and effort to customise it as per ur needs
start from here
June 26, 2016 at 10:56 am #255242In reply to: Buddypress Registration page auto suggest plugin
sharmavishal
ParticipantThe auto suggest portion is a theme feature via javascript. check the following
http://www.webgeekly.com/tutorials/jquery/3-steps-to-creating-a-jquery-autocomplete-drop-down-menu/
June 26, 2016 at 7:30 am #255232In reply to: after install, show nothing in activity page
sharmavishal
Participanti am assuming u activated the activity component and there are some actual activities happening on ur site? and does ur theme support buddypress?
June 25, 2016 at 7:04 pm #255222In reply to: Individual Groups Link Leads To 404
vitamincee
ParticipantI have the exact same theme and plugins set up on my development server, and this problem does not happen. The only difference that I can think of is that on the production server I’m running NGINX, and on the development server I’m running Apache. Can anyone confirm this version works with NGINX?
June 25, 2016 at 7:04 pm #255221danbp
Participantnot_friends are in fact
members. Are you sure you want to built this, as such widget already exist ! Ok, has no Add Friend button…Another solution would be to use a shortcode who will fire a kind of Members widget and the add friend button. Huh ? 🙂
Add this snippet to bp-custom.php
function show_our_members( $atts ) { $user_id = bp_displayed_user_id(); /** * Options * type:active, newest, popular, online, alphabetical, random) * number:number of items * size:size of avatar in px */ $atts = shortcode_atts( array( 'type' => 'newest', 'number' => '10', 'size' => '30' ), $atts, 'ourmembers' ); if ( bp_has_members( 'type='.$atts['type'].'&max='.$atts['number'] ) ) : while ( bp_members() ) : bp_the_member(); ?> <ul><li class="vcard"> <div class="item-avatar"> <a>"><?php bp_member_avatar(); ?></a> </div> <div class="item"> <div class="item-title fn"><a>" title="<?php bp_member_name(); ?>"><?php bp_member_name(); ?></a></div> <div class="item-meta"><?php bp_add_friend_button( $user_id ); ?></div> </div> </li></ul> <?php endwhile; endif; } add_shortcode( 'ourmembers', 'show_our_members' );The shortcode to use (in post, pages, widgets…), eg.
[ourmembers size=20 type=newest number=8]The only thing you have to do, is to style it accordingly to your theme layout.
Note that the classes are those used in BP’s Members widget. You can use them or add your own.June 24, 2016 at 8:34 pm #255195In reply to: Links in Posts not responsive in iPhone mobile view.
blaxcot
Participanthttp://interfaithbook.com/activity/. I tried 6 different themes all the same result.
June 24, 2016 at 8:32 pm #255194In reply to: Links in Posts not responsive in iPhone mobile view.
blaxcot
ParticipantYes. I thought that too. But it seems to be consistent theme to theme.
By the way it’s on the activity page not the home page. Sorry for the confusion.June 24, 2016 at 8:26 pm #255192In reply to: Links in Posts not responsive in iPhone mobile view.
r-a-y
KeymasterI don’t think this is related to BuddyPress, but rather your WordPress theme.
Your homepage is rendered by WordPress and not BuddyPress.
June 24, 2016 at 4:20 pm #255169In reply to: Full Width
snorklebum
ParticipantOk apologies for replying to myself but I’ve finally fixed and hopefully it’ll help someone else in the future.
<body <?php if ( !bp_is_blog_page() ) { body_class( ‘full-width’ ); } else { body_class(); } ?>>
The code above works with the child theme and renamed full-width.php file.
June 24, 2016 at 1:48 pm #255156In reply to: calling BP function in bbpress return nothing
hosam020
Participant@shanebp Thank you for the kindly reply
Yes i am using it.
i think you mean i have to call this action in theme funcation ourside the bp localfile.unction bbp_trash_topic( $topic_id = 0 ) { // Validate topic ID $topic_id = bbp_get_topic_id( $topic_id ); if ( empty( $topic_id ) || !bbp_is_topic( $topic_id ) ) return false; $args = array( 'user_id' => 386, 'item_id' => $topic_id, 'secondary_item_id' => 0, 'component_name' => 'forums', 'component_action' => 'new_topic', ); bp_notifications_delete_notifications_by_item_id( $args ); do_action( 'bbp_trash_topic', $topic_id );Please ignore the args param just added a notification param to see if will delete it
but never happend
Sorry for my bad english i hope u understand me.June 24, 2016 at 12:22 pm #255150Topic: Full Width
in forum How-to & Troubleshootingsnorklebum
ParticipantHi,
WP:4.5.3 BP:2.6.0 Theme:twentyfourteen
I currently have my main page with a primary sidebar and content sidebar, I’ve set all other pages to use the full width template which seems to be working for events etc but buddypress only follows this setting on the main groups and members pages. As soon as I navigate to a group or member page it no longer uses that template is this correct behaviour?
I have tried adding an if around the get_sidebar but this just leaves the area empty which I’m guessing is a css issue.
I also tried copying the page-templates\full-width.php file to a child theme and renaming to buddypress.php but this also has the same effect of the empty space at the side.
Any advice would be greatly appreciated.
Thanks
June 24, 2016 at 9:17 am #255131In reply to: Facin gissue with registration.
nisha181
ParticipantI have used default theme now. But same issue with my client. I don’t know why this is happening.
June 24, 2016 at 8:15 am #255127In reply to: Bussdypress title and SEO Yoast problem
Slava Abakumov
ModeratorPut this code in
functions.phpof your (child) theme.function lagodny_document_title_separator_pipe( $separator ) { return '|'; } add_filter('document_title_separator', 'lagodny_document_title_separator_pipe');I assume that you are on the WordPress 4.4+.
June 24, 2016 at 7:01 am #255124sharmavishal
Participantare you using any seventhqueen theme? if yes check this
June 24, 2016 at 6:58 am #255123In reply to: Send to input in compose message not working?
sharmavishal
Participantcan u shift to default wp 2016 theme and see if the issue remains?
this would be mostly a plugin conflict imo
June 24, 2016 at 12:39 am #255115In reply to: Fatal error on a BuddyPress 2.6.0 upgrade
pandabear
ParticipantI am getting a fatal error after upgrade to BP 2.6.0 as well. Upgraded to WP 4.5.3 yesterday, then BP 2.6.0 today. WP_Debug reports ‘Call to undefined function bp_loggedin_user_id()’ in my custom child theme (Canvas parent theme) functions.php file. I tried the patch on bp-loader.php, r-a-y, but that was a no go for me. This is wiping out all front and back-end display on my local server. Fortunately, production is running WP 4.5.3 with BP 2.5.3, which is running fine. Still trying to debug…
June 23, 2016 at 9:16 pm #255107In reply to: Individual Groups Link Leads To 404
kalico
ParticipantI’m getting a blank page for all groups, and some topics (I can’t see a pattern yet to which topics are blank). It’s so blank that there is nothing in “view source” at all (usually when it’s a theme problem I get something there, like basic body/html tags – just not enough to build a page).
I’m getting ready to test for theme issues. But I definitely determined that a rollback to the previous version fixes the problem.
EDIT: I should mention that it happens in TWO themes: BuddyBoss and Zerif Pro. So I suspect it’s a BP or plugin problem, not theme.
I realize, however, that this could be a different problem than you have reported, so I will just watch this thread, and start a separate one if my problem persists.
June 23, 2016 at 5:19 pm #255093In reply to: Fatal error on a BuddyPress 2.6.0 upgrade
syborg
ParticipantI posted a topic on the Buddypress Cover Photo support forum, on wordpress.org. (Same authors as KLEO theme and support forum so easier to access). Bye !
June 23, 2016 at 4:51 pm #255089In reply to: Fatal Error Crash – Website stopped working
kaab321
ParticipantI’m using a vibethemes theme.
June 23, 2016 at 4:25 pm #255087In reply to: bp_groups_get_group_types return empty array
r-a-y
KeymasterLooks like the code example doesn’t work in your theme’s
functions.phpunless you change the hook from'bp_groups_register_group_types'to'bp_init'.However, the code example from the codex works as-is if used in
wp-content/plugins/bp-custom.php.Going to file a bug report. Thanks for testing, @d8vjork!
Update: Here’s the ticket – https://buddypress.trac.wordpress.org/ticket/7138
June 23, 2016 at 4:15 pm #255085In reply to: bp_groups_get_group_types return empty array
d8vjork
ParticipantYes, of course. I add this code on theme functions.php file:
function bp_add_group_types() { bp_groups_register_group_type( 'radio', array( 'labels' => array( 'name' => 'Radios', 'singular_name' => 'Radio' ) ) ); bp_groups_register_group_type( 'community', array( 'labels' => array( 'name' => 'Comunidades', 'singular_name' => 'Comunidad' ) ) ); bp_groups_register_group_type( 'team', array( 'labels' => array( 'name' => 'Equipos', 'singular_name' => 'Equipo' ) ) ); } add_action( 'bp_groups_register_group_types', 'bp_add_group_types' );June 23, 2016 at 3:43 pm #255078In reply to: Fatal Error Crash – Website stopped working
Paul Wong-Gibbs
KeymasterWhat theme are you using? Kleo?
June 23, 2016 at 3:42 pm #255077In reply to: Duplicate cover photos Buddypress 2.6
Paul Wong-Gibbs
KeymasterIt looks like the Kleo theme might need to be updated for BuddyPress 2.6. I’d suggest to start by contact their support for help.
June 23, 2016 at 3:19 pm #255070In reply to: Fatal error on a BuddyPress 2.6.0 upgrade
Slava Abakumov
Moderator -
AuthorSearch Results