Forum Replies Created
-
Im using rtmedia and buddypress together new version and buddypress legacy templates of the version 2.9.4 in my theme, everything is working fine when you remove two php lines in two files which you can find here in the forums.
I think the new buddypress is much faster, the speed is much better than before.
here is another example:
<div class="box_avatar"> <div class="ava"> <a href="<?php echo bp_loggedin_user_domain(); ?>"> <?php bp_loggedin_user_avatar( 'width=' . bp_core_avatar_thumb_width() . '&height=' . bp_core_avatar_thumb_height() ); ?> </a> </div> <div class="box_wrap"> <?php $current_user = wp_get_current_user(); ?> <?php echo $current_user->user_login; ?> </div> </div>
I had the same problem but here is a temporary solution until you get your theme or buddypress updated again.
as I see there are problems in the last version with custom themes.
Fatal error: Uncaught Error: Call to undefined function bp_is_user_forums() in /Applications/XAMPP/xamppfiles/htdocs/wordpress/wp-content/themes/mytheme/buddypress/members/single/home.php:91 Stack trace: etc etc etc…
So line 91 I changed to
elseif ( class_exists('bbPress') && bp_is_user_forums() ) :
and its working fine now because bbpress is not installed, maybe is better including the new buddypress templates instead but I have edited it to bootstrap classes and IDs so this was a temporary solution for me.
Yes this answer solved me too. Thankyou!
anyone solved this problem? When I get the css file from buddypress plugin to the css folder in my theme it doesnt show it too.It saves the cover image because when I remove the file I can see it but the problem is when i make changes on the css file I can also see the changes.
Is there any required php file to integrate it in the correct mode?
A screensho from my theme the black background is from just a css command not an image.
https://s2.postimg.org/f8lwj34o9/Schermata_2017-08-22_alle_10.37.16.png
I just tried your function and its working fine but the only problem is that its adding menu items in all wordpress menus.
Is there anyway to add only in a specific menu instead of all menus?
Tesekkurler!