-
mathieu.urstein replied to the topic Order/sort activity by "most favorites" in the forum How-to & Troubleshooting 11 years, 4 months ago
Someone have been able to do it?
-
mathieu.urstein replied to the topic My account menu in the forum Creating & Extending 11 years, 4 months ago
@espellcaste
do you have some news?
I have been able to take the notifications like this :// notifications
function my_bp_adminbar_notifications_menu() {
global $bp;if ( !is_user_logged_in() )
return false;echo '<li id="menu-item-9991" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9991 parent">';
// _e(…[Read more] -
mathieu.urstein replied to the topic remove empy description in the forum Requests & Feedback 11 years, 4 months ago
This is directly with buddypress in the components page.
I’m using the french version so I guess that it’s “extended profile”But you can see the
<p class="description"></p>
In the /register/ page or under the modify profile page. -
mathieu.urstein started the topic remove empy description in the forum Requests & Feedback 11 years, 4 months ago
Hi,
I would like to remove all the empty :
<p class="description"></p>
from the custom subscribe fields.
-
mathieu.urstein replied to the topic [Resolved] bp_core_fetch_avatar only appear on buddypress pages in the forum Creating & Extending 11 years, 4 months ago
thank you the problem was the quotes 😉
-
mathieu.urstein replied to the topic [Resolved] bp_core_fetch_avatar only appear on buddypress pages in the forum Creating & Extending 11 years, 4 months ago
thank you @modemlooper
I did :
$userid = bp_loggedin_user_id();
$avatarurl = bp_core_fetch_avatar( array( ‘item_id’ => $userid, ‘html’ => false ) );But the problem is still the same,
what did I do wrong?Thanks.
-
mathieu.urstein started the topic [Resolved] bp_core_fetch_avatar only appear on buddypress pages in the forum Creating & Extending 11 years, 4 months ago
I’m using the
bp_core_fetch_avatar( array( 'html' => false ) );
code.But it only works when i’m on buddypress generated page.
How can I make it work everywhere on my website?
-
mathieu.urstein replied to the topic My account menu in the forum Creating & Extending 11 years, 4 months ago
This is the hook for the admin toolbar:
$wp_admin_bar->add_menu( array(
'parent' => 'my-account',
'id' => 'my-account-buddypress',
'title' => __( 'My Account' ),
'group' => true,
'meta' => array(
'class' => 'ab-sub-secondary'
)
) );Is there a way to call this for somwhere else than the…[Read more]
-
mathieu.urstein replied to the topic My account menu in the forum Creating & Extending 11 years, 4 months ago
@bphelp
Thanks for your answer,
The top-right menu is already perfect I just need to hook it into my template.There is probably something to do 🙂
-
mathieu.urstein started the topic My account menu in the forum Creating & Extending 11 years, 4 months ago
Hello,
I’d like to set a my account menu like the one on this website a the top right.
But not in a wordpress admin bar, if possible directly in my template code.I’ve seen a perect one here:
http://www.buddyboss.com/demo/Is there a plugin/widget for this?
Thanks.
@mojomateo
Active 6 years ago