Tampilkan postingan dengan label social media. Tampilkan semua postingan
Tampilkan postingan dengan label social media. Tampilkan semua postingan

How To Embed Twitter-Hosted Videos On Your Website?

10.33 0



Following along the same lines as Facebook, Twitter recently announced a video-hosting feature that lets you capture and upload videos using official Twitter apps without having to upload them first on a third-party service such as YouTube. This was indeed a welcome feature, and in sharp contrast to how Twitter had been predominantly text-based and monotonous in the past. However, as with any video-hosting service, you need a way to share that video elsewhere on the web.

Read more »

How Snapchat Can Be Used To Grow Your Audience?

10.33 0

Snapchat


Snapchat is an exciting new social media platform through which people can send photos and short videos to each other. We recently talked about some of the ways you can market your brand on Snapchat. One problem for brands was, reaching out to their potential customers. Pulling contact numbers out of your marketing list was less than desirable. With a new update though, Snapchat has added the Discover feature for users to discover new content.

Read more »

How To Post On Instagram From The Web?

10.11 0

Post on Instagram from web


According to a latest study by the Pew Research Internet Project, Instagram is now the fastest growing social network. Somehow Instagram has managed to find the right balance between social sharing, and social interaction. The result is a place that is growing in both capabilities and popularity, and drawing more and more non-conventional users to it.

Read more »

Pinterest Rolling Out Promoted Pins For Marketers

10.20 0

Pinterest for Business


Pinterest is so much more than just sharing images. Think about it; people on Pinterest are more interested in what they want (probably in the future), as opposed to what they're doing (as on Facebook, Twitter etc.). And with Pinterest Guided Search, users can look through billions of pins to find things they've probably never seen before! This makes Pinterest the perfect tool for marketers. Pinterest has announced that it will now start rolling out promoted pins, so that marketers can fully benefit from the network.

Read more »

Facebook Popup Like Box Widget For Blogger

04.43 0
Facebook has become the leading social media service on the Internet playing host to over 1.3 billion users; of those, 800 million login to their dashboard feeds at least once a day. Thanks to the vast number of active users on services like Facebook, acquiring new readers as a blogger or content provider has become easier than ever.

In order to produce an effective digital campaign, you absolutely must take advantage of social media by doing things like integrating Facebook on Blogger. Email marketing can be useful, but it comes with restrictions that could limit your blog's potential. Perhaps the most significant problem is that emails don't come with a face or personality like Facebook does.

Think of a time when you received an email in you inbox from someone you didn't know. Where you inclined to open it or did you send it right to the junk folder? If it's your first introduction to new consumer, they simply don't know who you are, what you want, and how you got their email. This sets off an initial breakdown of any type of trust that might have developed. The reputation of email marketing is further deteriorated with a study done by Kaspersky Lab, an Internet research firm. They estimate that around 70% of all the emails sent in the world are spam.

Sharing site content using a Facebook Like Box is just one of many strategies that can generate a regular flow of traffic from a diverse demographic that might have been previously inaccessible. Adding a Facebook Like Box to your site helps to reduces your individual workload, and instead distributes that ability equally among your readers.

When someone reads your content and appreciates the kind of work that you produce, they'll be willing to share that information to their followers and fans, setting off a viral reaction. The first step necessary to making this a reality is to make this change to your site. These next few steps will provide you with a quick and easy guide on how to add a 'Like Box' to your Blogger site so that you can began taking advantage of these great opportunities.


Click here for a DEMO


How to Add the Facebook Popup Like Box Widget

1. Log into your Blogger account and select your blog > go to 'Layout' & click the 'Add a Gadget' link on the right side
2. Once the popup window is open, select the HTML/JavaScript gadget from the list:


3. Copy and paste the following code inside the empty box:
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js' type='text/javascript'></script>
<style>
#fbox-background {
    display: none;
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

#fbox-close {
    width: 100%;
    height: 100%;
}

#fbox-display {
    background: #eaeaea;
    border: 5px solid #828282;
    width: 340px;
    height: 230px;
    position: absolute;
    top: 32%;
    left: 37%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#fbox-button {
    float: right;
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 0px;
}

#fbox-button:before {
    content: "CLOSE";
    padding: 5px 8px;
    background: #828282;
    color: #eaeaea;
    font-weight: bold;
    font-size: 10px;
    font-family: Tahoma;
}

#fbox-link,#fbox-link a.visited,#fbox-link a,#fbox-link a:hover {
    color: #aaaaaa;
    font-size: 9px;
    text-decoration: none;
    text-align: center;
    padding: 5px;
}
</style>
<script type='text/javascript'>
//<![CDATA[
jQuery.cookie = function (key, value, options) {
// key and at least value given, set cookie...
if (arguments.length > 1 && String(value) !== "[object Object]") {
options = jQuery.extend({}, options);
if (value === null || value === undefined) {
options.expires = -1;
}
if (typeof options.expires === 'number') {
var days = options.expires, t = options.expires = new Date();
t.setDate(t.getDate() + days);
}
value = String(value);
return (document.cookie = [
encodeURIComponent(key), '=',
options.raw ? value : encodeURIComponent(value),
options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
options.path ? '; path=' + options.path : '',
options.domain ? '; domain=' + options.domain : '',
options.secure ? '; secure' : ''
].join(''));
}
// key and possibly options given, get cookie...
options = value || {};
var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent;
return (result = new RegExp('(?:^|; )' + encodeURIComponent(key) + '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null;
};
//]]>
</script>
<script type='text/javascript'>
jQuery(document).ready(function($){
if($.cookie('popup_facebook_box') != 'yes'){
$('#fbox-background').delay(5000).fadeIn('medium');
$('#fbox-button, #fbox-close').click(function(){
$('#fbox-background').stop().fadeOut('medium');
});
}
$.cookie('popup_facebook_box', 'yes', { path: '/', expires: 7 });
});
</script>
<div id='fbox-background'>
<div id='fbox-close'>
</div>
<div id='fbox-display'>
<div id='fbox-button'>
</div>
<iframe allowtransparency='true' frameborder='0' scrolling='no' src='//www.facebook.com/plugins/likebox.php?
href=https://www.facebook.com/pages/Helplogger/120574614736021&width=402&height=255&colorscheme=light&show_faces=true&show_border=false&stream=false&header=false'
style='border: none; overflow: hidden; background: #fff; width: 339px; height: 200px;'></iframe>
<div id="fbox-link">Powered by <a style="padding-left: 0px;" href="http://helplogger.blogspot.com" rel="nofollow">Helplogger</a></div>
</div>
</div>
4. Press the 'Save' button to add the widget to your blog. That's it!

Customization

  • After adding the code, replace the address in blue https://www.facebook.com/pages/Helplogger/120574614736021 with your site's facebook page URL.

  • The widget will appear 5 seconds after the page finishes loading. If you want to change this delay, change the number 5000 to a greater or lesser number in this part:
.delay(5000)
  • By default, the like box only shows up the first time the user visits your page.  If you would like the Facebook box to popup every time the page loads, then remove this line of code:
$.cookie('popup_facebook_box', 'yes', { path: '/', expires: 7 });
  • If you want to display only when user visits your homepage, go to 'Template' > hit the 'Edit HTML' button on the right side and search by clicking anywhere inside the code area and pressing the CTRL + F keys for this tag:
</body>
Paste the facebook popup widget right above the body tag and make sure to include the conditional tags below:
&lt;b:if cond='data:page.type == "index"'&gt;ADD THE FACEBOOK WIDGET CODE HERE &lt;/b:if&gt;
After saving your work, you can test out your new feature by returning to one of your old posts which should bring up a little popup widget asking if you'd like to join the site's facebook page.

If you don't see the Facebook Like Box on the page, you may need to delete your cookies or check out the 'Customization' section above in order to display the widget every time a user visits your site. Once this widget is added to your site, all your hard work should start to translate into an increase in web traffic and number of Facebook fans.

How To Change Your YouTube Account URL?

10.33 0



Are you stuck with your YouTube account URL you picked long ago that doesn't quite capture the essence of what you do anymore? Despair not, for YouTube is giving you a way out. You can now get a new custom URL that's more befitting of your brand. This is definitely better than opening up a brand new channel, and losing all of your previous subscribers. The option will be made available over the next week.

Read more »

The Fastest Growing Social Networks And Apps For Marketers Today

10.33 0


tumblr

What is the hottest social networking platform to be on right now? If you thought Pinterest or Instagram, then you'd be close. But not close enough. If you thought Facebook, you couldn't have been more wrong! This time, the baton has been picked up by a network that's a blogging platform as well! A report by Global Web Index reveals that Tumblr is now the fastest growing social network, with its active user base having grown 120% in the past six months!

Read more »

How To Send Money With SnapChat?

10.11 0


Send money with Snapchat!

Just when we thought messaging apps couldn't get any more unconventional, along comes Snapchat with a whole new trick up its sleeve. The popular photo messaging application that recently came to fame has announced a new feature "Snapcash" today through a deal with Square Cash, whereby users can send money to their friends as simply as sending a text message. The feature has been rolled out on Android, with the iOS version coming soon.

Read more »

Why Should You Join New Social Networks Early On?

10.11 0


Ello and Tsu - new social media to watch

It is true that life has become too fast-paced to be delving into social networks left and right. Joining every other social network is a mark of the overly ambitious, and is sometimes frowned upon. But when a promising new network pops up, getting onto the bandwagon isn't necessarily a bad thing. We have seen two new social networks surface this fall, and here's why you should check them out before everyone else does.

Read more »

Twitter Building Timeline Design Similar To Facebook News Feed

10.11 0


New Twitter newsfeed

If you are one of those Twitter users who stick around because of its simplicity and sense of urgency, then your days of enjoying Twitter are probably at an end. Twitter has recently announced that it is working on some changes on users' homepage streams, and replacing the real-time updates with an algorithmically-controlled timeline not unlike the one you see on Facebook. If you run a business, this could mean a new approach for Twitter marketing is in order.

Read more »

How To Use Twitter To Drive Holiday Sales?

10.11 0


Drive sales with Twitter

Winter is a wonderful time, as it brings around the holiday season! Shoppers from around the world wait for this all year, which makes it a great time for businesses to get active. According to recent stats from Twitter, 54% of the users are motivated to make a purchase after looking at promotions. So for businesses looking to capitalize on the sales potential this holiday season, now would be the time to start developing a campaign to get new customers on board.

Read more »

Users In France Can Now Transfer Money With Tweets!

12.04 0

Transfer money with Twitter


If you had social networks like Twitter pegged as mere amusements, then you couldn't be more wrong. Social media finds its uses in many daily-life situations, the most recent one being wire transfer. If you live in France and want to send money over to someone, you can do it as simply as making a tweet. Your 140 characters might be worth real money soon. Perhaps the New Social Order is upon us!

Read more »

Meet Ello - The Anti-Facebook Social Network

12.01 0

Ello


You might be spending dozens of hours weekly on Facebook or Twitter, but it is Ello that's the new cool kid around the block. Ello is a new social network that intends to go up against the big guns, and it isn't backing down. The slogan "Simple, beautiful & ad-free" says it all. And the network intends to knock out the competition by striking at where it hurts the most.

Read more »

Twitter Now Working To Make Timeline More Like Facebook

10.27 0

Twitter


A few days ago, Twitter rolled out experimental tweaks on the main Twitter timeline, showing actions like favorited tweets to some users. It also began showing tweets from accounts that you don't follow. Twitter has now made these changes official, which marks a new journey for Twitter timelines as they start resembling Facebooks'. Timelines used to be simple before - just tweets related to people you have followed. But there's a new timeline algorithm at play now.

Read more »

How To Embed A Tweet Within A Tweet?

12.03 0


Twitter

Ever felt the need to quote a tweet without having to retweet it or copy-pasting its entire content? You can save quite a bit of character space simply by embedding other tweets within your own. Tweetception, if you will. Twitter mobile apps previously allowed users to embed Tweets within Tweets, a feature that has now been made available for the desktop version as well. And it couldn't be any easier!

Read more »

Keep Track Of Twitter Trends With Hashtag Tracking And Analytics Tools

11.01 0

Hashtags


Do you use Twitter or other social media to stay up to date with the latest happenings? With the use of hashtags on Twitter, you can broadcast and stay updated with events around the world. Not only that, Twitter can be used to monitor the latest trends. Hashtags make communications filterable and organized, which could be put to great use for getting feedback and suggestions. But there's more - you can take your research to the next level by using some great hashtag tracking and analytics tools!

Read more »

Now Search Twitter Hashtags And Users With Bing!

11.09 0

Bing + Twitter


Search is one game Microsoft just won't give up on, even in the face of stern competition and enormous odds. Constantly adding new features, Bing is all gearing up to take on Google. In a fresh announcement, Microsoft has taken its partnership with Twitter further to include more content from the microblogging site on Bing Search. Starting this week, Bing will include Twitter hashtag and handles searches in its search results.

Read more »

How To Make The Most Of Animated GIFs On Twitter?

11.13 0

Twitter introduces animated GIFs


Twitter timelines used to be woefully color-devoid up until only a few months ago when they finally decided to allow users to add images to tweets. A welcome change, no doubt. Taking one step further, Twitter has introduced another feature - support for animated GIFs - something that has been sadly absent from social media. Facebook doesn't support animated GIFs as yet, which gives marketers on Twitter one more trick up their sleeves.

Read more »

How To Find Out Who Isn't Following You Back On Twitter?

11.11 0

Friend Or Follow


Social media is all about connections. But while Facebook might be referred to as an on-stage microphone, Twitter is more like a two-way radio, where businesses rely on interactions to grow (which is kind of ironic, considering it is Facebook that requires mutual consent for a connection). If you're active on Twitter, you may know that when you follow someone, they might not always follow you back. Well, you can use tools like FriendOrFollow to find out who isn't following you back, and who is inactive etc.

Read more »

Pinterest Announces Guided Search For Easier Content Discovery

11.11 0

Pinterest Guided Search


Search engines are great for answering specific questions. For example, a tutorial for building Android apps, weather conditions in a city, and so on. But don't you sometimes feel at a loss to pinpoint what you're looking for, and randomly sift through the internet for a chance encounter? Perhaps you need some creative ideas for your upcoming vocations. But there never existed a search engine that could help you with such stuff.



Until now.

Read more »