Skip to:
Content
Pages
Categories
Search
Top
Bottom

activity stream customization


  • hallsy
    Participant

    @hallsy

    I am trying to get my activity stream to look like this sites http://para.llel.us/themes/salutation-wp/

    Where do i go to rid the default buttons for ; delete, reply, favourite (when logged in) and the words wrote a new post..(when logged out). All i want is plain text for the above buttons. I also want to rid of the extra avatar that comes up for the friend accepted activity so it just looks like the demo site above.

    I am running the newest versions of both WP and BP. I am also using the theme which i have posted above.

    thanks

Viewing 2 replies - 1 through 2 (of 2 total)

  • @ChrisClayton
    Participant

    @chrisclayton

    You can remove the button styling via css to turn it into plain text. something like…

    `div.activity-meta .acomment-reply a {
    background: white;
    background: -moz-linear-gradient(top, white 0%, #FFF100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,white), color-stop(100%,#EDEDED));
    background: -webkit-linear-gradient(top, white 0%,#FFF 100%);
    background: -o-linear-gradient(top, white 0%,#FFF 100%);
    background: -ms-linear-gradient(top, white 0%,#FFF 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#ffffff’, endColorstr=’#FFF’,GradientType=0 );
    background: linear-gradient(top, white 0%,#FFF 100%);
    border: none;
    }`

    ETC.

    You can also use CSS to remove the avatar

    `.activity-list .activity-content .activity-header img.avatar {
    display: none !important;
    }`

    Hi Thanks for this information it was helpful … i have another question to add…

    Im using the default BP theme and therefore In the activity stream i want to increase the size of the text that being published – please can you suggest how to do this as i’m ripping my hair out trying to figure this out.

    Also if possible how do i remove the header words ‘Site activity’ from the activities section?

    Thanks in advance

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘activity stream customization’ is closed to new replies.
Skip to toolbar