Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter PaulMRivera

    (@paulmrivera)

    nm. i found the glorious short code page. my bad

    Thread Starter PaulMRivera

    (@paulmrivera)

    Actually, i used the short code for the history, but is there a way to not have it go into the header?

    Plugin Author myCred

    (@designbymerovingi)

    You can remove any BuddyPress profile page by using the bp_core_remove_nav_item function. This function only takes one parameter and that is the page slug. By default, myCRED sets this to “mycred-history” but since you change this, you would need to set it so it matches your settings on the myCRED > Settings page.

    Example using the default menu slug:

    add_action( 'bp_setup_nav', 'remove_mycred_profile_menu', 12 );
    function remove_mycred_profile_menu() {
    	bp_core_remove_nav_item( 'mycred-history' );
    }

    Thread Starter PaulMRivera

    (@paulmrivera)

    That just remove it from the navigation. I’m wondering how to move it from showing up in the header. Like to be able to use the short code to display the table in a page.

    Plugin Author myCred

    (@designbymerovingi)

    Not sure I understand. myCRED does not include any history in the header. It includes a history page in your users profiles. The above code will remove this menu. There is no other history detail added.

    Thread Starter PaulMRivera

    (@paulmrivera)

    For some reason the history is a table that’s sticky to the header. It scrolls with the page. Do you have an email I can send a screenshot to?

    Plugin Author myCred

    (@designbymerovingi)

    This happens when your theme is applying custom styling to TABLE elements. Visit your page and check what CSS styling is applied to the table element and adjust your styling to fix this.

    Some themes will do this and cause the table to be inserted into the top corner of your screen.

    Thread Starter PaulMRivera

    (@paulmrivera)

    trying to find this TABLE element in my CSS. I’ll keep you posted.

    Thread Starter PaulMRivera

    (@paulmrivera)

    I found the issue. Thanks for your help.

    there was this in my theme

    .fixed {
        position: fixed;
    }

    Plugin Author myCred

    (@designbymerovingi)

    Thank you for the update

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Buddypress Balance History’ is closed to new replies.