BuddyBoss Home – Web Support Forums Themes BuddyBoss theme Social Buttons Delete and Add Vine

Viewing 3 posts - 1 through 3 (of 3 total)
  • Question

    #33952
    @jmar42

    How do you delete some of the social buttons on the bottom in the Child? Also, how do I add Vine into it?

    Answers

    #33955
    @jmar42

    I figured out deleting the buttons on the bottom but was curious how to add a Vine logo into it?

    #33979

    Alyssa
    Participant
    @alyssa-buddyboss

    Line 78 of footer.php you will see this code:

    <!-- display social icons if added in Theme Customizer -->
                        <?php if ( get_theme_mod( 'boss_link_facebook' ) !== '') : ?>
                            <li><a class="link-facebook" title="<?php _e( "Facebook", 'buddyboss' ); ?>" href="<?php echo esc_url( get_theme_mod( 'boss_link_facebook' ) ); ?>" target="_blank"><span></span></a></li>
                        <?php endif; ?>

    This is the theme integration of social icons.
    You will need to add only the line item for fine so it would look something like this:
    <li><a class="link-vine" title="Vine" href="[insert link to vine here]" target="_blank"><span></span></a></li>
    Then you will need to code the icon by adding something like this to your custom.css file:

    .link-vine span:before {
    content: "\f09a";
    }

    Where content is the font awesome icon for vine http://fortawesome.github.io/Font-Awesome/cheatsheet/

Viewing 3 posts - 1 through 3 (of 3 total)
  • The question ‘Social Buttons Delete and Add Vine’ is closed to new replies.