Setting up a Business Page
- Google Plus - Adding a Cover Picture
- Uploading Profile Picture
- Adding Business Details
- Navigating Through Google Plus
- Creating a New Account
- Google Plus - Business Page Setting
Google Plus - Networking
Google Plus - Posting Content
- Google Plus - Adding Managers
- Google Plus - Checking Notifications
- Foster User Engagement
- Google Plus - Reporting a Post
- Google Plus - Resharing a Post
- Google Plus - Deleting a Post
- Google Plus - Editing a Post
- Google Plus - Uploading a Post
Google Plus - Setting Settings
- Google Plus - Insights
- Google Plus - Deleting an Account
- Google Plus - Profile Settings
- Google Plus - Photo & Video Settings
- Google Plus - Circle Settings
- Google Plus - Notification Settings
Google Plus - Optimization Process
Google Plus - Integration Process
- Google Plus - Social Linking
- Connecting With YouTube
- Google Plus - Creating a Badge
- Google Plus - Badges
Google Plus Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Google Plus - Badges
Google+ platform is an efficient platform to integrate with other social networking platforms. Google+ allows interaction with all other platforms such as YouTube, Twitter, etc. We can provide a button of our website/page on our Google+ account that people can use to easily navigate to the page. This generates more traffic to our website/page. If there is a need for google authentication, we can develop our own badges, +1 buttons, and follow buttons.
Adding Badges
Google+ badge is similar to FB ’pke’ button or the ‘tweet’ button on Twitter. It’s a good idea to let other people know that we are on Google+. It helps customers to pke or follow us directly by cpcking the badge provided on our page.
People from other platform can also connect with us or our page with just one cpck on the badge. Adding a badge estabpshes that the page is verified. Badge generates more followers. Make sure to make the badge appeapng and apt to our business.
There are 3 different kinds of badges −
Google+ profile badge
Google+ page badge
Google+ community badge
Google+ Profile Badge
The Google+ profile badge is for people to directly follow our personal profile, which helps the visitors to directly contact us. It provides an option for people to directly add us to their circles.
Following is the code to render a profile badge to our website.
<script src="https://apis.google.com/js/platform.js" async defer></script> <g:person href="https://plus.google.com/{profileId}" datarel="author"></g:person>
Google+ Page Badge
The Google+ page badge is for people to follow our page unpke profile page in which the visitors directly engage with us.
Following is the code to render a page badge to our website.
<script src="https://apis.google.com/js/platform.js" async defer></script> <g:page href="https://plus.google.com/{pageId}"></g:page>
Google+ Community Badge
The Google+ community badge is for people to directly preview their community. It helps people find their community and engage on topics which they find interesting.
Following is the code to render a community badge to our website.
<script src="https://apis.google.com/js/platform.js" async defer></script> <g:community href="https://plus.google.com/communities/{communityId}"></g:community>Advertisements