Forum Replies Created
-
Author
-
CandromParticipant
I did all the steps you mentioned.
Here is what is inside the debug files, after commenting an activity update:
COPY CODE[30-Mar-2016 17:49:45 UTC] PHP Notice: Undefined index: slug in /home/ginkgoga/public_html/wp-content/themes/buddyapp/lib/plugins/buddypress/navigation-icons.php on line 41 [30-Mar-2016 17:49:45 UTC] PHP Notice: Undefined index: name in /home/ginkgoga/public_html/wp-content/themes/buddyapp/lib/plugins/buddypress/navigation-icons.php on line 45 [30-Mar-2016 17:49:45 UTC] PHP Notice: Undefined index: slug in /home/ginkgoga/public_html/wp-content/themes/buddyapp/lib/plugins/buddypress/navigation-icons.php on line 41 [30-Mar-2016 17:49:45 UTC] PHP Notice: Undefined index: name in /home/ginkgoga/public_html/wp-content/themes/buddyapp/lib/plugins/buddypress/navigation-icons.php on line 45 [30-Mar-2016 17:49:56 UTC] PHP Notice: Undefined offset: -1 in /home/ginkgoga/public_html/wp-includes/post-template.php on line 268 [30-Mar-2016 17:49:56 UTC] PHP Notice: Undefined index: slug in /home/ginkgoga/public_html/wp-content/themes/buddyapp/lib/theme-functions.php on line 280 [30-Mar-2016 17:49:56 UTC] PHP Notice: Undefined index: link in /home/ginkgoga/public_html/wp-content/themes/buddyapp/lib/theme-functions.php on line 285 [30-Mar-2016 17:49:56 UTC] PHP Notice: Undefined index: name in /home/ginkgoga/public_html/wp-content/themes/buddyapp/lib/theme-functions.php on line 285
CandromParticipantI’m not sure if you understand what I mean.. or maybe it’s me that is not understanding something here..
ome menu items, like rtmedia “Media” menu-item, is not present on this page.
Theres also menu items that can be added through plugins like myCred. According to BuddyPress docs, you can change this order using the following code:COPY CODEfunction my_change_profile_tab_order() { global $bp; $bp->bp_nav['settings']['position'] = 10; $bp->bp_nav['activity']['position'] = 20; $bp->bp_nav['friends']['position'] = 30; $bp->bp_nav['groups']['position'] = 40; $bp->bp_nav['blogs']['position'] = 50; $bp->bp_nav['messages']['position'] = 60; $bp->bp_nav['profile']['position'] = 70; } add_action( 'bp_setup_nav', 'my_change_profile_tab_order', 999 );
This works fine, it does change the order in the user menu and tab menu, but only on buddypress pages! Other pages do show the default order and included blankspaces.
CandromParticipantI fixed it the iOS Safari display.
Somehow at a certain screensize there’s a margin appearing below footer, not sure why it was designed that way. I fixed it with the following css code:
COPY CODE.sidemenu-footer-inner { margin-bottom: 0px !important; }
-
AuthorPosts