-
Tobias started the question 'theme_location' of "BuddyPanel"? in the forum Boss. theme 9 years, 4 months ago
Hi,
I’m trying to add a custom BP menu item to the left-panel (BuddyPanel).
The BP-item already exists and is working fine.To add this menu link to BuddyPanel I found this:
// Filter wp_nav_menu() to add collections link
[Read more]
add_filter( 'wp_nav_menu_items', 'my_nav_menu_collections_link' );
function my_nav_menu_collections_link($menu) {
if… -
Tobias replied to the question Notifications number color in BuddyPanel in the forum Boss. theme 9 years, 4 months ago
Hi! how do I add “Messages” to the BuddyPanel? In “Design -> Menus” I don’t see a “Messages” menu item. Am I missing something? ^^Sorry, had a script in the functions.php that was hiding this items (only in the frontend i thought) -.-
-
Tobias replied to the question Notifications number color in BuddyPanel in the forum Boss. theme 9 years, 4 months ago
@angslycke @tjchester Hi! how do I add “Messages” to the BuddyPanel? In “Design -> Menus” I don’t see a “Messages” menu item. Am I missing something? ^^
-
Tobias replied to the question Notifications number color in BuddyPanel in the forum Boss. theme 9 years, 4 months ago
@angslycke Hi! how do I add “Messages” to the BuddyPanel? In “Design -> Menus” I don’t see a “Messages” menu item. Am I missing something? ^^
-
Tobias replied to the question Add a (second) BuddyPanel to the right? Instead of User Profile Menu in the forum Boss. theme 9 years, 4 months ago
Thanks man! I’ll have a look! 🙂
-
Tobias replied to the question Add a (second) BuddyPanel to the right? Instead of User Profile Menu in the forum Boss. theme 9 years, 4 months ago
A bit of tweeking would be okay for me.. Just would like to know what files i have to look in to maybe?
-
Tobias started the question Add a (second) BuddyPanel to the right? Instead of User Profile Menu in the forum Boss. theme 9 years, 4 months ago
Hi,
I would like to have the behavior of the BuddyPanel on the right side but with my own content in it (not the menu content).
What do I have to copy to do so? I already was looking thru the files but can’t get my head around it.
-
Tobias replied to the question Why was "Magnific Popup" not working until i renamed "js" folder and named back in the forum Boss. theme 9 years, 4 months ago
@vapvarun Hi,
Right, I noticed that. But the thing I’m confused with is, that I already named the JS-folder back to normal and everything is working just fine! Or is it, because all js still having 404s? -
Tobias started the question Why was "Magnific Popup" not working until i renamed "js" folder and named back in the forum Boss. theme 9 years, 4 months ago
Javascript js problem? Magnific Popup Lightbox
Hi,
I was trying to get
closeOnBgClick: true
working but the click on the dark background wasn’t detected.
Than, I renamed the boss/js folder to “jss”. NowcloseOnBgClick
was working just fine so I named the folder back to “js”.
Strange to me. What is happening there? Have I made some bad mistake…[Read more] -
Tobias started the question Better Searchfield for mobile (also desktop?) in the forum Boss. theme 9 years, 5 months ago
Hi,
as I need more space in the header and the wide search field is just too wide, I am trying to make it just an icon.
I managed to edit the searchform.php, converted the search <button> to <span> and edited css:
#mobile-header form.searchform {
padding-left: 235px;
}So far so good, but the script for resizing the searchform of course…[Read more]
-
Tobias started the question Better Searchfield for mobile (also desktop?) in the forum Boss. theme 9 years, 5 months ago
Hi,
as I need more space in the header and the wide search field is just too wide, I am trying to make it just an icon.
I managed to edit the searchform.php, converted the search <button> to <span> and edited css:
#mobile-header form.searchform {
padding-left: 235px;
}So far so good, but the script for resizing the searchform of course…[Read more]
-
Tobias started the question Better Searchfield for mobile (also desktop?) in the forum Boss. theme 9 years, 5 months ago
Hi,
as I need more space in the header and the wide search field is just too wide, I am trying to make it just an icon.
I managed to edit the searchform.php, converted the search <button> to <span> and edited css: `
#mobile-header form.searchform {
padding-left: 235px;
}
`So far so good, but the script for resizing the searchform of course…[Read more]
-
Tobias started the question Better Searchfield for mobile (also desktop?) in the forum Boss. theme 9 years, 5 months ago
Hi,
as I need more space in the header and the wide search field is just too wide, I am trying to make it just an icon.
I managed to edit the searchform.php, converted the search <button> to <span> and edited css: `#mobile-header form.searchform {
padding-left: 235px;
}`So far so good, but the script for resizing the searchform of course…[Read more]
-
Tobias started the question Create a blank Buddypress Template page and Tab in the forum Boss. theme 9 years, 5 months ago
Hi,
I’ve searched the forum, but it seems like this hasn’t been asked?
I want a new Buddypress page and have a tab/navigation for it too of course.
So I think I could make a copy of a .php-file, delete the content part and paste the shortcode I want to display. But what file do i have to duplicate?
-
Tobias started the question Height of Topbar/Header/Masthead in the forum Boss. theme 9 years, 7 months ago
Hi,
I’m trying to get the topbar a bit smaller.. 75px I think, is a bit too high. and i think i keep missing some classes by hacking the css..?
thanks
-
Tobias replied to the question Blur half of "bb-cover-photo" in the forum Boss. theme 9 years, 7 months ago
Ah, thanks – works! 🙂
-
Tobias replied to the question Blur half of "bb-cover-photo" in the forum Boss. theme 9 years, 7 months ago
Thanks TJ! So, now my code looks like this:
<div class="outerblur">
<div class="testblur">
<?php
//output cover photo without upload button
$cover_photo = buddyboss_cover_photo_get($object,$object_id);
$actual_photo = wp_get_attachment_image_src($cover_photo["attachment"],"full");
echo $actual_photo[0];
?>
</div>
</div>But I…[Read more]
-
Tobias replied to the question Blur half of "bb-cover-photo" in the forum Boss. theme 9 years, 7 months ago
Thanks TJ! That’s already helpful! 🙂
-
Tobias started the question Blur half of "bb-cover-photo" in the forum Boss. theme 9 years, 7 months ago
Hi,
I’m trying to blur half/part of the “bb-cover-photo” (BuddyPress User background image).
So idea wise like this: http://jsfiddle.net/Lmccn0vw/2/In member-header.php my code is this:
[...]
<?php do_action( 'bp_before_member_header' ); ?><?php
//output cover photo.
echo buddyboss_cover_photo("user",bp_displayed_user_id());
?><div…[Read more]
-
Tobias started the question Blur half of "bb-cover-photo" in the forum Boss. theme 9 years, 7 months ago
Hi,
I’m trying to blur half/part of the “bb-cover-photo” (BuddyPress User background image).
So idea wise like this: http://jsfiddle.net/Lmccn0vw/2/In member-header.php my code is this:
[...]
<?php do_action( 'bp_before_member_header' ); ?><?php
//output cover photo.
echo buddyboss_cover_photo("user",bp_displayed_user_id());
?><div…[Read more]
- Load More