Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to personalize Yammer embed box

Tags:

yammer

I would like people in our company to be able to embed various yammer feeds into their sharepoint sites. However, the default embed box isn't looking great (the top of the box is basically name of the feed in arial on Yammer-blue background). Is there a way how to improve its look?

like image 505
DDEX Avatar asked May 28 '14 10:05

DDEX


People also ask

How do you customize Yammer?

In the Yammer admin center, click Design. Under Select Network Colors, pick a background color, or enter color hex codes for the Header Background Color and the Header Text Color (Desktop App only). Note that choosing a custom color for your header text applies only to the desktop application.

How do I embed in Yammer?

Go to the group in Yammer, and under Access Options at the bottom of the left panel, select Embed this feed in your site.

Can I integrate Yammer with SharePoint?

Yammer integration may be used in both on-premises and Office 365 SharePoint environments. You can use the remote provisioning pattern to create Yammer groups and/or Yammer OpenGraph objects to facilitate conversations when you create new SharePoint sites.

What is Yammer on SharePoint?

Yammer is an Enterprise Social Network (ESN) that is part of your Office 365 subscription. It allows for Facebook-style communication with users inside or outside of your organization.


2 Answers

Yammer offers an embed preview editor that allows you to get rid of the header and footer, among other things, and preview it online: https://www.yammer.com/widget/configure

You can remove the blue header by adding a config line in the embed code:

yam.connect.embedFeed({
         container: "#divname",
         network: "yourdomain.ca",
         feedType: "group",
         feedId: "all",
         config: {
                 header: false,
                 footer:false,
                 hideNetworkName:false
             }
          });

The widget will fill whatever div you've placed it in, so you can make it as tall or as wide as you like. Simply modify the div with css or an inline style:

    <div id="divname" style="height:600px; width:80%;"></div>

To my knowledge you cannot get rid of the input box at the very top, but you can customize what it says.

like image 128
Phil Avatar answered Sep 24 '22 23:09

Phil


Yammer doesn't allow you to customize the look & feel of their embed feed. But you can turn off the header via configuration option.

Also that blue background is coming from your network configuration. The same color as your web version, and you can change it inside Network configuration page.

like image 21
Myo Thein Avatar answered Sep 21 '22 23:09

Myo Thein