Search Results for 'buddypress'
-
AuthorSearch Results
-
November 16, 2011 at 10:22 pm #124556
Paul Wong-Gibbs
KeymasterWhile you’re thinking about this, remember that 1.7 is going to have templating like bbPress has.
> Other ideas could be build in some simple theme options like Twenty-Eleven does.
Decisions, not options.November 16, 2011 at 9:41 pm #124555aces
ParticipantI just downloaded a copy of buddypress from the ‘Manual Download’ button on https://buddypress.org/download/ and it was the same as my svn link above.
If your file is different, then there may be other files that are also different!
November 16, 2011 at 9:18 pm #124554In reply to: Janrain Engage tested?
phirefly
Membervoted x3 on this too!
The other thing I was thinking about looking at was this….
http://stescodes.com/invitefriends.aspx
a one-off payment but I’m unsure how complex it would be to integrate…when I asked the developer about buddypress/wordpress they said;
“It is very easy to integrate our code, we provide sample code in working condition. Once you run the code by settings the API configuration based on your account, you will be able to integrate with your code easily.
Furthermore, we provide developer guide documentation and also tutorial videos too.
Note: Please let us know if you need any help or further details.”
….not much info lol!
November 16, 2011 at 8:45 pm #124552kols
MemberThanks aces, maybe i´m a little bit slow , but my /bp-themes/bp-default/header.php says just what I wrote before, I download another copy of buddypress to see if it was different but is the same file that I have described to you.
Should I copy the code that you send me, in my header.php file?
Thank you!November 16, 2011 at 8:14 pm #124551November 16, 2011 at 6:51 pm #124546In reply to: Buddypress Forums & Group Forums Not Working
Chuckschulz
MemberI just found a work around. I created the forum topic from within the group, which sidesteps the “which group” question and seems to have worked.
November 16, 2011 at 6:49 pm #124544In reply to: Buddypress Forums & Group Forums Not Working
Chuckschulz
MemberSame problem here. I must say I am getting very skeptical. I can’t have this kind of nonsense with users. Can someone lend a hand here? Thanks!
November 16, 2011 at 6:10 pm #124543iblbuilder
MemberOh dear, really? That sounds quite a flaw to me!
If a logged in user goes to register, they get redirected back to the mainpage.
If I log in as a user without a blo and go to mysite.com/blogs/create it does allow them to add one. But the problem is that in the my sites menu that then appears, they can see a link to the main site blog(which they cant acces, but even still its very confusing) as well as their own!
Surely it must be a very common occurence for a buddypress site member to want to add a blog, it seems very odd this is a problem?
Thanks
Jason
November 16, 2011 at 5:06 pm #124540In reply to: BuddyPress Forums
Benjamin Stewart
MemberHere is another screencast with more information related to the issue: http://youtu.be/lcOd5H_fNws
Still not sure how to resolve the problem.
November 16, 2011 at 5:06 pm #124539saule
Member@charlesponraj did you get this to work finally? It didn’t work for me too
November 16, 2011 at 5:04 pm #124538chr313
Member@DJPaul I also found out that when I favorite a forum post it will not show up in my favorites under my profile. I think definitely bbpress isn’t connected correctly. If you find anything I would appreciate it.
November 16, 2011 at 4:37 pm #124534In reply to: Cant get 1.5 site wide forum to work.
@mercime
ParticipantNovember 16, 2011 at 4:19 pm #124532In reply to: How to edit the Buddypress default theme navigation?
aces
Participantin the bp-default header ( should be line 46 – 48 )
`false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ‘bp_dtheme_main_nav’ ) ); ?>`
replace it in your child theme with something like
`<?php
if ( is_user_logged_in() ) {
wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ‘bp_dtheme_main_nav’ ) );
} else {
wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘secondary-menu’, ‘fallback_cb’ => false ) );
}
?>`
as it is the last parameter, I don’t think false has a comma after it in this context….Make sure you back up before any edits in case something goes wrong!
nb: to use code on buddypress.org put backticks ` (normally above tab key) before and after…
November 16, 2011 at 3:55 pm #124530In reply to: How to edit the Buddypress default theme navigation?
dude
Memberso to clarify: in my header.php (child theme) replace..
wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ‘bp_dtheme_main_nav’ ) );
with:
<?php
if ( is_user_logged_in() ) {
wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ” ) );
} else {
wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘secondary-menu’, ‘fallback_cb’ => false,
}
?>I’ve just checked my header.php and it appears to be worded slightly differently actually..? for example:
false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ‘bp_dtheme_main_nav’ ) ); ?>
November 16, 2011 at 3:53 pm #124529aces
ParticipantCan you check your server log for php or other errors?
ie9 developer tools ‘console’ also shows a lot of errors on that particular page…..
November 16, 2011 at 3:34 pm #124526manureloaded
MemberNovember 16, 2011 at 3:04 pm #124523In reply to: Display age on profile page
saule
Member@SBrajesh I tried the codes you gave, but
I got an error when put in echo:
Fatal error: Call to undefined method DateTime::diff() in /home/dom/public_html/wp-content/plugins/buddypress/bp-themes/bp-default/functions.php on line 377Line 377 is this – $diff= $current_date_time->diff($dob);//returns DateInterval object
Any idea how to correct that?
Thanks.November 16, 2011 at 12:48 pm #124519In reply to: Show favourite count after each activity?
ankurm
Member@liesl1698 paste it in your theme’s functions.php
November 16, 2011 at 12:47 pm #124518In reply to: Show favourite count after each activity?
November 16, 2011 at 12:11 pm #124515In reply to: Multisite Install
antonyw
Memberhere, have a look at this:
November 16, 2011 at 8:33 am #124505meg@info
ParticipantLook in header.php of your theme , the code in header.php is look like that
Code:<?php
/**
* theme theme_name
*
* @package packagename
* @subpackage subpackagename
* @since my HTML 5 theme
*/
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="content-type" content="<?php bloginfo(‘html_type’) ?>; charset=<?php bloginfo(‘charset’) ?>" />
<title><?php bp_page_title() ?></title>
<meta name="home" content="<?php bloginfo(‘url’) ?>" />
<meta name="url" content="<?php bloginfo(‘wpurl’) ?>" />
<?php do_action( ‘bp_head’ ) ?><?php if ( function_exists( ‘bp_sitewide_activity_feed_link’ ) ) : ?>
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’);?> | <?php _e(‘Site Wide Activity RSS Feed’, ‘buddypress’ ) ?>" href="<?php bp_sitewide_activity_feed_link() ?>" />
<?php endif;?><?php if ( function_exists( ‘bp_member_activity_feed_link’ ) && bp_is_member() ) : ?>
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’);?> | <?php bp_displayed_user_fullname() ?> | <?php _e( ‘Activity RSS Feed’, ‘buddypress’ ) ?>" href="<?php bp_member_activity_feed_link() ?>" />
<?php endif;?><?php if ( function_exists( ‘bp_group_activity_feed_link’ ) && bp_is_group() ) : ?>
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’);?> | <?php bp_current_group_name() ?> | <?php _e( ‘Group Activity RSS Feed’, ‘buddypress’ ) ?>" href="<?php bp_group_activity_feed_link() ?>" />
<?php endif;?><link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’);?> <?php _e( ‘Blog Posts RSS Feed’, ‘buddypress’ ) ?>" href="<?php bloginfo(‘rss2_url’);?>" />
<link rel="alternate" type="application/atom+xml" title="<?php bloginfo(‘name’);?> <?php _e( ‘Blog Posts Atom Feed’, ‘buddypress’ ) ?>" href="<?php bloginfo(‘atom_url’);?>" />
<link rel="pingback" href="<?php bloginfo(‘pingback_url’);?>" />
<?php wp_head();?>
</head><body <?php body_class() ?> id="bp-default">
<?php do_action( ‘bp_before_header’ ) ?>
..…
<:!– header content –>
….<?php do_action( ‘bp_after_header’ ) ?>
<?php do_action( ‘bp_before_container’ ) ?>November 16, 2011 at 8:12 am #124504modemlooper
Moderatorheader.php contains the header code. wp-content/plugins/buddypress/themes/bp-default
November 16, 2011 at 6:45 am #124501In reply to: Favorites not working – Page not Found error
sam99077
Member@mercime I´ve the same problem. I´m using single WP 3.2.1 and BP 1.5.1 (BP Template Pack + Followers Plugin). I always get a page not found error when I try to load my followers list, the activity of my followers (and the people I´m following). Problem is gone when I change to bp-default theme. Can you please help, what can I do to make it work with the theme I´m using (mymag)???
November 16, 2011 at 3:33 am #124499kkradel
ParticipantThe images are blurry like an image is set to progressive and then it doesn’t fully load … Could there be a setting somewhere that is interfering with the image loading fully?
November 16, 2011 at 3:32 am #124498In reply to: Creating a Group – getting a blank page
-
AuthorSearch Results
