Skip to:
Content
Pages
Categories
Search
Top
Bottom

BuddyPress registration terms and conditions.


  • jessicana
    Participant

    @jessicana

    Hello,

    I want to use this snippet for Buddypress registration TOS:

    function bpfr_tos_link() {
      echo ' <b><i class="icon-thumbs-up"></i> Terms and conditions</b>';	
    }
    add_action( 'bp_before_register_page', 'bpfr_tos_link' );

    Apparently, this snippet shows TOS at the top of the page which is not the best option.
    When I change before to after, it appears under the left hand side column but doesn’t look right. I want to have the TOS link to appear above or under the sign up button or under the right hand side column of buddypress registration page. How can I control the positioning?

    Thanks

Viewing 1 replies (of 1 total)

  • danbp
    Participant

    @danbp

    hi @jessicana,

    another solution is explained here.

    Or you can add a custom action hook to the registration template at a more appropriate place of your choice.

    Something like do_action ('jessicana_tos'); and by adding some div’s. Of course you have to use a child-theme to do this.

    And in the above function remove last line and replace it by add_action( 'jessicana_tos', 'bpfr_tos_link').

Viewing 1 replies (of 1 total)
  • The topic ‘BuddyPress registration terms and conditions.’ is closed to new replies.
Skip to toolbar