Showing posts with label Search. Show all posts
Showing posts with label Search. Show all posts

Right Side Search Ads Disappeared- Implications !

Post February, 23rd, 2016, Google Adwords has stopped showing Paid Ads on Right Hand side of the search result pages.

To adjust with the new situation, advertisers need to tune their campaigns.

Following Implications are immediate concerns:

  1. Reduced number of ads will show on the Search Result Page. Although Google has increased the number of Top Listing from 3 to 4, this is only for Highly Commercial queries
  2. Search ads will show on Top and bottom of the Organic Results. It means number of ads on a page will vary from 3to7. How frequent bottom ads shows is not certain. Even if we assume 7 ads on a page, its a drop from earlier 11-14. Huge!
  3. Only Exception so far disclosed are Product Listing Ads, PLAs Or Shopping ads, which are eligible to appear on the right side.
  4. It is not clear whether, ads without extensions and all other bells & whistles are allowed to enter the Top or not. Documented Position so far which perhaps still holds is such ads get preference. So, if your campaign contains only ads and keywords, they will be worst hit with this change.

Your To-Do List after the change:

  1. Immediately extract Top Vs Other Report and calculate the bid to cope with the situation.
  2. Study the Competitors Report via Details tab. How many have outranked you how many times and figure out How to survive in the changed ecosystem.
  3. Create as many extensions as possible. Although only 3 can show at a time, you never know which will give you extra punch and impressions, when others fail to trigger.
  4. Make your campaign as much feature loaded as possible. More features you add more likely they are to appear
  5. Elevate your bidding to the level of CPA/Portfolio. It would act as a hedge against crazy competition. Let Google’s algorithm take care of your Cost of Acquisition.
Read This >>

Is Google's Vertical Search really a threat to online Directories?

What are Vertical/Specialized Search?

Those of you who haven't recently searched on Google for Hotels or tickets, may not be knowing, what this vertical search is. Google, has a while back launched services similar to many booking engines already available for such type of services.

These Booking engines, are already big clients of google, regularly availing adwords platform, for driving traffic on their portal. Some of them are not happy over this move by Google and have threatened lawsuit. Google, to mitigate the aftermath has listed some of these service providers, with great degree of prominence, prompting users to book their tickets through their site.

You should google on some such terms, like - Hotels in delhi- to know in depth, How it looks like!

Is the threat Real?

Is Google really trying to kill such booking engines, or, is it trying to play a longer game, which though now looks like a friendly approach towards, these Booking Services, might be a long term plan to eliminate them.

So, the fear is real, and maybe Google won't need them in future.

Value Addition or Just another Google' UI Experiment?

Let us postpone the possibilities of future, and concentrate on what it offers in terms of user experience to a searcher. After all, the person searching for something, needs to be convinced that the product or service is genuine. Let us think about it from that angle.

Google's SERP for these searches has been spammy for a long time. Google has inserted, map, local listing and a lot of nonsense, into SERP, for these terms.

Who doesn't know, what kind of crap Google's local listings are!

It is full of spams, with self written testimonials by businesses. Many businesses listed there often use others' brand names for stealing their queries. In a nutshell, it is not something which deserves such a high position in search result. It is bad for Good Businesses who lose customers to bad ones because of these listings, and also, for consumers who get cheated because of these fake listings, reviews and ratings which features with a lot of prominence in SERP. In the long run, they are harmful for Google too.

It is around Trust, not the Artificial Buzz

The listings which are really beneficial for users is not a very easy task to achieve. It is not the rave or rant of any xyz, that should feature with such a prominence, but, it is rather how much genuine they sound. So, actually it is not into How big the buzz around something is, rather how much real people are behind that buzz, that is important, which Google does not tell you. But, that is the greatest requirement of our time!

So, the future doesn't belong to the one, who features with prominence there.

The Future belongs to those who can prove, the testimonials, they are showing, no matter if they are fewer, are by the real people, whose only intention was to avail their services.

People are already exposed to a lot of social networks and they know, what are the comments they should trust and what they should ignore or suspect.

Coming back to Google's Specialized Search and similar online directories, If you can't help users take decisions, for which they will feel obliged to thank you, then you don't deserve to be where you are. Same goes with Google, if people start hating you after following your suggestions, then certainly, you will too lose their attention.

Read This >>

Breadcrumb with Navigation for More Pageviews

Breadcrumbs are trails of webpages in a website that you have browsed, shown mostly on the top of the pages for better back and forth navigation.

Breadcrumb_Blogpost_webpage
Breadcrumb with Post Navigation

In blogger we use Labels as Breadcrumb, which though are not true breadcrumb, we just show the crosss linkage of pages across Labels. Since, labels themselves may no be cross linked, it is advised to show only one of them, to avoid any possible penalty.

Here, I would be giving you a code which not only shows breadcrumb on your blog post but also, has an embedded Newer post, older Post Navigation on the top, that sits seamlessly on the top of your blogger post. Check this post for Live Demo, and play with it to learn how it functions.


First, add the following code into the CSS of your blogger template:

.breadcrumbs{border-bottom:1px solid #E7E7E7;
font: 8px "Lucida Sans Unicode","Lucida Grande",sans-serif;}.charfix {
 font-size:130%; line-height:0; } 



Then find the below code in your template,

<b:include data='top' name='status-message'/>

Immediately above that paste this code:

<b:include data='posts' name='breadcrumb'/>

Now Find, the Following code in your template:

<b:includable id='main' var='top'>


There may be two places of the above code. If it occurs once, paste the below code (Modified form of Anish's Code) just above it. If twice, then paste below code above second one:

<b:includable id='breadcrumb' var='posts'>
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
<div class='breadcrumbs'><span><a expr:href='data:blog.homepageUrl' rel='tag'>Home</a></span> &#187; <span><data:blog.pageName/></span></div>
<b:else/>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<!-- breadcrumb for the post page -->
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.labels'>
<div style='display:inline'><span class='breadcrumbs' xmlns:v='http://rdf.data-vocabulary.org/#'>
<span typeof='v:Breadcrumb'><a expr:href='data:blog.homepageUrl' property='v:title' rel='v:url'>Home</a></span>
<b:loop values='data:post.labels' var='label'>
<b:if cond='data:label.isLast == &quot;true&quot;'>
 &#187; <span typeof='v:Breadcrumb'><a expr:href='data:label.url' property='v:title' rel='v:url'><data:label.name/></a></span>
</b:if>
</b:loop>
 &#187; <span><data:post.title/></span>
    </span><b:if cond='data:newerPageUrl'><b:if cond='data:olderPageUrl'>
    
      <a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-older-link&quot;' expr:title='data:olderPageTitle'><span id='blog-pager-older-link'><span class='Charfix'>&#9668;</span>  </span></a>
    
    </b:if>
    
      <a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-newer-link&quot;' expr:title='data:newerPageTitle'><span id='blog-pager-newer-link' style='float:right'><data:newerPageTitle/><span class='Charfix'>&#9658;</span>  </span> </a>
     </b:if></div>
<b:else/>
<div class='breadcrumbs'><span><a expr:href='data:blog.homepageUrl' rel='tag'>Home</a></span> &#187; <span>Unlabelled</span> &#187; <span><data:post.title/></span></div>
</b:if>
</b:loop>
<b:else/>
<b:if cond='data:blog.pageType == &quot;archive&quot;'>
<!-- breadcrumb for the label archive page and search pages.. -->
<div class='breadcrumbs'>
<span><a expr:href='data:blog.homepageUrl'>Home</a></span> &#187; <span>Archives for <data:blog.pageName/></span>
</div>
<b:else/>
<b:if cond='data:blog.pageType == &quot;index&quot;'>
<div class='breadcrumbs'>
<b:if cond='data:blog.pageName == &quot;&quot;'>
<span><a expr:href='data:blog.homepageUrl'>Home</a></span> &#187; <span>All posts</span>
<b:else/>
<span><a expr:href='data:blog.homepageUrl'>Home</a></span> &#187; <span>Posts filed under <data:blog.pageName/></span>
</b:if>
</div>
</b:if>
</b:if>
</b:if>
</b:if>
</b:if>
</b:includable>

Save it, and again add or overwrite the existing CSS for the New Post, old post link, preferably through Add CSS feature of your blog:

#blog-pager-older-link, #blog-pager-newer-link, #home-link{background:#DDDDDD; border:double;padding:1px;display:inline-block;font-size:9px;}

Save, the template & check, how it looks like on post pages. You will find something like, one shown in the image of this blog.


(Note, This blogpost may not show the Navigation, till it is the newest post. For Checking how it functions and live demo, check an older post)
Read This >>

Targeting Long tail Search Terms, marked Low Search Volume!

What are Long Tails?

Contrary to what many people believe, Long tail has nothing to do with the length of the search query. Even a short search term may be the part of long tail. The terminology has something to do with its graphical representation. If you  plot keywords against search volumes, you will get a graph of Small number of Search Queries getting most of the volume, which shows as a Graphical Peak with steep slope downward, and a Long tail afterwards, with steady slope almost running parallel to the axis, representing terms which are Larger in number, but individually triggers very low volume of searches.

History

Historically, it was Amazon, who discovered that a large number of their collection were unnoticed because of low volume of searches against them on homepage, and they can boost sales by presenting them alongwith their mainstream products. Individually, they have few seekers, but combined together they become huge!. Hence the term Long tail !

Importance and Targeting of Long Tail Keywords

What is of importance here is, in the Graph, Area under the curve represents, the Reach of your Ads. You can cultivate and grow this Long tail in the curve to such an extent that
Area (Long Tail  Search Terms)   >    Area (High Search Vol.. Keywords) !
Can you afford to ignore them?? 

In Google Adwords, Google doesn't allow you to target most keywords which are part of this long tail, because they are huge in number and individually have very low search volume against them. Since, Google has to monitor ads targeting search queries for a large number of legal, ethical and safety parameters and requirements, it is not feasible for them to allow targeting ads on such queries. So, you find Low Search volume notifications against them. However, you may have your ads appear for these terms through broad matched similar looking keywords. That seems to be the only simple way of targeting Long Tails. Other way you can use Dynamic Search Ads, but then a lot depends on Data Structuring of your Website and Content Optimization.

Chances of appearing on these Long tail terms increases with better structuring of your adgroups. If your adgroups are well themed, giving clear cut message to the system, what they mean for, with respect to keywords, categories, situations etc., it will in most probability, occupy most of the Long tail terms, automatically. The Google, though in its documentations  doesn't reveal much about the mechanism of how broad match keywords are matched, the point not to be forgotten is it always adds a factor, Other relevancy factors, in various documentations. So, actually it is all into the structuring of your Adgroups that gives the message of what is being targeted and where it can be matched and more important Projected ! You can fine tune it further by adding Nagative Matches or if you are willing to go farther, try Penumbra Match Type. Something, you should never forget, in adwords, it is actually the Good Structuring of Your Adgroup/Campaign, that leads you towards perfection in targeting, not by inserting a lot of keywords into your account.

Read This >>

Dynamic Search Ad with Remarketing is an Effective Strategy

Dynamic Search ads

Dynamic Search ads are ads with Dynamic Headline, which are automatically generated by Google, depending on the content of the page and the website. It places your ad according to your historical performance in Organic Search

  • You can still write remaining two lines. 
  • It doesn't require any keyword in the adgroup.
  •  If you have keywords in the adgroup it will target ones not there.   

Obvious benefits you can derive from Dynamic Search Ads are:

  • It has the potential for supplementing your SEO. It judges queries where you can get better clickthroughs, automatically.
  • You get extra placement on keywords, which are already performing well.
  • It matches the headline, Search Query, Landing Page automatically, and also improves upon the CTR on auto pilot. You can see it improving with time.
  • It can throw ads on queries, which you won't be able to target through conventional methods, those typical Low Search Volume types, that too according to the website content!

dynamic_search_ad
Adwords Dynamic Search ad with Organic Listing
Although it works outside the periphery of keywords in the adgroup, you may find them competing with other ads in some situation where you have multiple adgroups. So, don't get surprised, because it only excludes keywords in the adgroup and not the keywords in the campaign.

Remarketing through Display ads


Remarketing is simple to set up. It is an adwords feature, that works through doubleclick coookies, which allows you to track and show your ads to already defined kind of visitors on your website. Visitors may not come through adwords they may come through any source. You need to install the doubleclick patch through your google analytics account. If you have opted for display content support in GA, then default code includes this patch. After this you simply need to specify what kind of visitors you want to remarket, and change the Privacy Note on your website according to the guidelines. Remarketing allows you to repeatedly show ads to visitors who have visited certain segment of your website, as specified by you, whenever they visit a website having adsense. For better results:

  • You should have a dedicated adgroup for remarketing only.
  • You should have impression caps for ads enabled. Don't show same ad to a visitor multiple times. It might irritate them.
  • You should have view through conversion column enabled.
  • You should have rationally fixed cookie expiry time, so that it stops showing after sometime.

Both the feature works well for advertisers who want to make the most of SEO of ones website. Both the feature has the capability of utilizing your SEO efforts for improving the traffic. It is a low risk Adwords Strategy, which any website owner can implement without any need of big expenditure on either adwords budget or management of it. It gives great results in minimum efforts!

Read This >>

Simplified Schema formatting of content for Search Rich Snippet & Adwords

Many microdata(microformats), formats like RDFa were brought forth by different sources working in different directions for structuring data on the webpage. Google, Yahoo & MSN came together to formulate a universal categorization language on the web. Their Joint collaboration is schema.org convention of tagging information, which can be easily mastered, applied and understood by Search Engines & webmasters.

RDFa has been a popular way of Data Structuring for a long time now. After the adoption of RDfa open graph by Facebook and RDFa goodrelations for ecommerce, it has become a popular convention. However, with all major search engines announcing the transition towards Schema.org, it is better to talk about schema only.

Schema taxonomy relies on hierarchical structuring of data along the attributes, itemscope, itemtype & itemprop. There are few other attributes which are of lesser importance, like itemid. We shall concentrate on the most important ones only, here.

Itemscope, is the signal to search robots that the container where it is present, contains some data of interest to them which are structured according to the schema.org convention. Like, if the <div itemscope..... is encountered, it expects itemtype data to know what is the subject of the structured data. Whether, it is person, profession, organisation.... Here, comes the role of the attribute itemtype. So, the container div now should give the information about the kind of data expected within it. The attribute itemtype, refers to a particular url for this purpose. If the data contained is of a person, then itemtype should refer to schema.org/Person, if the data is of a professional service. It should refer to schema.org/ProfessionalService. So, our div container may look like,
< div itemscope itemtype="schema.org/Person"
<div itemscope itemtype="schema.org/ProfessionalService"
OR, if I want it to remain composite and split the div into two spans containing, personal and professional informations, then, I would go like this:

<div > <span itemscope itemtype="schema.org/Person"
<span itemprop="....."
<span....... Data about person
........
/span>
<span itemscope itemtype="schema.org/ProfessionalService"
<span itemprop="......"
<span....... Data about Professional Service
/span></div>

The above is a div container that contains both kind of information. Important point here is that, You can write only those values of itemprop, which are present on the itemtype referred schema url. So, just go there and pick them for marking. It is itemprop, which tells search robots, what the container contains. It may be name, nick, job-title, organization.....


So, if I write about myself, the structured data would look like:

<div class="profile"> <span itemscope itemtype="http://schema.org/Person">
<span itemproperty="name"> Ramesh Kumar</span> is a
 <span itemproperty="job-title"
>Google Adwords Qualified Professional</span> 
at <span itemproperty="affiliation">Netargument</span>
</span>.
<span itemscope itemtype="http://schema.org/ProfessionalService">
<span itemproperty="logo"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNinMGO7o9iRlFm7p0ZExxC9GpiCPUuRVxyc1owTbC8ADKMBZ20ciPGQcQFK_S8SyCD9JGj0FBvFQ4czCOHKhsEHHqofMs-aOzFyuYbzDJNIjlS_T78dFja_1PzvH_fDGbuOulOy-ZPSQ/s144/logo_qualified_ind_500.jpg"/></span></span></div>

Search Engine will interpret this data as,
Name: Ramesh Kumar, job-title: Google Adwords ...... Working at: Netargument. Logo:  image URL.


job, organization name in rich snippet
Rich Snippet showing Job-title and Org, appearing in Google Custom Search 

Here, if I don't use itemtype="/ProfessionalService", then , I may not have been able to use "logo" attribute and may have been using "photo" as itemprop, which would confuse the bots that the image is my pic. Two spans prevent this situation.


Similarly, you may mark up an offer within a product div, like

<div itemscope itemtype="http://schema.org/Product"><span itemprop="brand">........<span itemprop="offers"></span></span></div> 


The markups are not limited to search snippets only. The new Offer Extension in Adwords too are rumored to work through it.


Warning: Image-url is not a valid itemproperty, Blogger Template Error![Solved]

Please note, blogger's default template contains itemprop="image-url", because of which you may get error in rich snippet tool, wherever you have hyper-linked images. This itemprop value is wrong, you should change all such values to itemprop="image". This will solve the problem.

Note: In the Examples, above, I have broken the divs into span, which is actually an styling element. You can use any element like, <p>, <a> or even nested div, depending on the situation. However, I personally avoid nested divs, because of SEO reasons. 
Read This >>

Blog SEO 2013 – Optimize All the Signals You send to Search Engines

Search Engines’ frequent algorithm changes have inculcated us to look for many new signals that are either proven or are suspected to impact SEO of your website. Some of which you might have experienced in your webpage rankings.
  1. Content Originality Signal

    Use of original content in your website is paramount for your SEO success. Particularly, Google is capable of judging the originality of the content and help the most original content rise up.  Avoid borrowed sentences, phrases or dubious paraphrasing. Google can detect!
  2. Author Reputation Signal

    Who is the writer and in which field she commands readership, determines the weightage. Tell the Search Engines, who you are, by linking to all important Social Media profiles, on the webpage. Use the (unofficial) tag   “rel=me” to tell them it is you, and let them determine your authority vis a vis the subject. This tag really helps!
  3. Social Sharing Signal

    How much the content has been shared on the social media platforms like, twitter, google plus, facebook, linkedin etc., matters in ranking of your website. Optimize the website and content for sharing. More Share & Participation means Better Rank!
  4. Genuine Anchor text Signal

    All the anchor texts used in linking should match the context. Avoid using same or similar texts as anchor at different places, they count nothing. Better, diversify the content of the anchor text, if you can’t do more justice to the link.
  5. Your Nick Signal

    This is observed by many, yet some confirmation from Gurus is due. Search Engines have learnt how you are referred to in comments and forums. So, if someone talks about “netargument”, “SEOmoz” search engines can detect without any need of hyperlink to whom they are referring to, and they give them due credit. Incredible! Get an original & unique nick so that you are not deprived of this credit because of confusion.
  6. Quality Link Signal

    You must send signals to the Search Engines that you have external links on quality websites. All Natural Looking Content and context counts. If you want to get rid of some inferior websites that links to you, use google’s Disavow Tool inside Webmaster Tools, to tell them you don’t want them to count those links.
Read This >>

Warning: Missing required field "updated" in Blogger Rich Snippet Webmaster Tool [Solved]

missing required field updated blogger   Google Search

While testing Rich Snippet for blogger posts in rich snippet testing tool inside Google Webmaster Tools, I found Warning:Missing required field “updated” problem.

A lot of bloggers have advocated deleting hfeed and hentry fields to solve this problem. This indeed solves the problem, however, deleting a field whose function you don’t fully know may become the starting point of the unknown problems. So, I started exploring it further. Blogger gives you by default “published” timestamp field. A simple tweak of this gives the desired solution. Just find the following piece of code:

<a class='timestamp-link' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='published' expr:title='data:post.timestampISO8601'><data:post.timestamp/></abbr></a>

Copy it on a notepad and simply change the class value at two places, like this:
<a class='updated' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='updated' expr:title='data:post.timestampISO8601'><data:post.timestamp/></abbr></a>

Now put the above code inside a div with display setting to none, like this:
<div style='display:none’><a class='updated' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='updated' expr:title='data:post.timestampISO8601'><data:post.timestamp/></abbr></a></div>.

Put the above code anywhere in the body part of the template, maybe just below the “published” field. Save the template and now test again inside the rich snippet tool in Webmaster tools. Warning is Gone!

P.S.----> On 15th of March, 2012, Google updated its Rich snippet guidelines and has mentioned anything inside a “display:none” won’t be considered. So, you should find a place to show it to the readers of the blog too, and remove the <div style=’display:none’> from above including the closing </div> for rich snippet to work properly.

NOTE: – Since, so many people are facing problem implementing it, I am giving you the code which you can simply copy and paste. If you have author & timestamp on the top, use this code in footer just like me and if you have default code in footer, use it on the top below the headline. This code will end all your trouble regarding, rich snippet. Just copy & paste. Wish you good luck!
<a expr:href='data:post.authorProfileUrl' rel='author' title='author profile'>
                        <span class='post-author vcard' itemprop='name'>
        <b:if cond='data:top.showAuthor'>
          <data:top.authorLabel/>
          <span class='fn'><data:post.author/></span>
        </b:if>
      </span>
                      </a><a class='updated' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='updated' expr:title='data:post.timestampISO8601'> <data:post.timestamp/></abbr></a>

Note 2:--- To determine the position of the code, simply look for <data:post.body/>. This code actually is Your Blog Post. If you post any code above it, it will appear above your blogpost. If you post below it, it will appear below the post body. In addition you have default footer-1, footer-2….. in your template. You may choose any position. Hope this information will help you in determining where to show the “updated field code”. Just keep in mind the aesthetic value of the blog.



Recommended:

  1. Simplified Schema formatting of content for Search Rich Snippet & Adwords
  2. 10 important things to do immediately after starting a BlogSpot blog
  3. 10 Ways to Quickly reduce the Bounce Rate on Landing Page
Read This >>

Multiple Presence on the same Page - It enhances your Conversion Rate Many Times Over!

Once upon a time People thought, since they have good SEO, and presence on quality keywords they don't need Adwords. Some used to think just the reverse, and perhaps still thinks so, that since they have a good running Adwords campaign, they don't need to SEO their website. Just check your stats and focus on adwords stats where, you had presence both in Organic and paid links. You would notice, you had wonderful conversion rate both in organic and paid. Why this happens? Not only it increases your percentage of links on the page over others, it increases the level of trust of visitors in you. People think since you are also present in the paid link despite being present in organic link, you are the person worth doing business with. Google now offers you three opportunities to feature on the same search page. They are 1) organic Listing, 2) Paid Listing, and 3) Local business listing.  Don't discount any of them. If you are running a hotel, or selling flowers or any kind of business, where google offers all three kind of listings, you cannot afford to go for a strategy around only one of them, because all your serious competitors are present there on all three, and  those who are not would soon be biting the dust, because whatever, single track strategy she is following, would become unprofitable sooner or later. What changed this game? There was a time when people used to advertise on keywords where they are not performing well in organic results. After sometime they found, if they advertise on same keyword where they have good presence organically too, they get great result. The practice started infecting other advertiser and this became an indication for user that what they see once is just a chance, what they see more than once is Genuineness. People want to deal with genuine people world around. Those who are present in all three listing in search get a big edge over those who are not. they see conversions flowing towards them while others would find, the keyword is getting costlier to afford every passing day! In industries where local listing matters the most like florist shops, hotels etc., you cannot afford to survive on a single listing on the page. 
Similar is the case with content network. If you are also showing direct advertisements on the website alongwith the adwords ads on the page, it greatly enhances your conversion rate, compared to what you see with only one of them. Present strategy for online marketing should be domination. Try to dominate the placements as much as you can. Don't spread yourself too far and too thin. Choose the areas where you are strong and don't just give others the chance to take a slice away from you of your meal. If you know of a website where you find great number of prospects, just go and have a deal with them. Have your presence there both directly and indirectly through any third party targeting like google adwords, and just see the difference it creates in your returns on investments. 
Read This >>

Google shows Profiles in SERP - What it may mean?


Last week Google added a new feature in SERP. When you search for the name of a person, you are likely to see some Google Profiles, at the end of the first page. Check the snapshot I have taken for Google search - Ramesh Kumar, which shows my profile in the second row. Too see such kind of results:
  • You should be signed in to a Google account
  • You should have created your Google Profile, either via gmail or through any other Google services.
All over the world SEOs are alarmed over this development. Is Google going towards Authority based ranking in SERPs. Earlier, Matt Cutts had given signal that Page Rank based ranking system might get substituted with a new system. This comment was followed by non inclusion of Page Rank indicator in google chrome web browser. Page Rank a pathbreaking advancement in search technology has been the most targeted thing among SEOs. However, since its launch, its secrets have been demistyfied by intelligent web reasearchers, and even a third rate SEO now knows it is based on inbound links. This algorithm gave rise to cat and mouse game between Google and SEOs. One side SEOs descovering the new algorithmic tweak and trying to manipulate, and on the other side, Google trying to catch the manipulators by adding some patches to this algorithm. People have gone to the extent of saying that this algorithm has given rise to spammy link building and launch of crap websites throughout the internet, to fecilitate link building. Page Rank algorithm has many loopholes, and over the time period we cannot assume it to deliver same high quality results as it used to when launched.

From the recent changes in the SERP, it looks like Google may give authoritative ranking a preference over, Page rank or at least authority might carry weightage. Let us wait till smoke gets cleared of this situation. However, if it comes out to be true, then SEOs may be running after some internet authorities to gain position in SERPs. Not an easy task though!

Read This >>

How to own a Keyword on Google

Sounds interesting? Everybody wants to own a keyword on google. You go for SEO - white hat, black hat and what not. Still google refuses to give you. It won't give you a single place in SERP, till you qualify as the most worthy fit in that slot. Fortunately, there is a way out of this situation. Google allows you to own a keyword if you give it a keyword! Attempt it strategically. When I was searching for a domain name in fashion category, I analyzed all related words like, fashion, fad, style, trend etc. Google trend result showed search volume is in this order, Style, trend, fashion, fad decreasing. Style, fashion and trend related domains were taken. Luckily, I got Stylefad.com! A combination of two words Style & Fad. One having highest search volume the other having the lowest. A good deal, isn't it? There is so much of competition for style related queries and so little for fad related one. The phrase style fad has a promising future too. Search query against it is increasing every day. After two months 6 out of 10 results talk about this website. In that way i am leading the growing tribe of this niche by creating content for them. The website would surely beat everyone else in terms of relevancy, links, and any other factor Google may apply. There is definite advantage of being a leader in search segment. Google rewards you, definitely. I was the first person to shoot a blog on - online political campaigns india, and I still dominate there, because I was present there even when others were not even thinking about it. After that I consistently shot subsequent blogs on this issue. I started being referred by others too!

So, to own a keyword on google, innovate it, propagate it, saturate it and rule. You may apply the strategy. Good Luck!
Read This >>

Your ads are not Running - Contact us for support!

In the middle of march, 2009, many adwords accounts started showing this - ads not running contact for support- notification. New accounts pending approval were mostly hit.

At first, I could not believe that it may happen at such a large scale. However, when I saw so many frustrated users, who were directed to the Help Forum by google, I had to accept that it is indeed a big problem.

Advertisers are so much dependent on Adwords nowadays that such a situation directly hit their livelihood. Many businesses have found adwords as their mainstay, and in such a situation they get infuriated.

People had almost become abusive, and any attempt to pacify them, invited their further wrath. After sometime Google came up with an explanation that some of the users were suspected to be violating Adwords Terms of services, and so were supposed to contact support. It also involved some first time users! I personally found it in one new account. On talking to a Google Guy, he was able to expedite the process and get it running within 24 hrs. Thanks to him!

The incident has a lesson. Google suspicion is also a factor in adwords, besides, so many factors we know and take care of. This incidence and many other discussions I have had with other forum members confirms that one may get hit by Google suspicion, and should try one's best to avoid it. I would sum up the occasions when Google gets suspicious, and you should try to avoid these situations:

  1. You are having multiple accounts, which you tried to hide from Google or it looks like you are having.
  2. You create unacceptable content or some cached pages in google directory or through some other way Google has reasons to believe you having slyly changed the unacceptable content.
  3. your business on your website looks like you are very ethical, but someone drops a negative remark about your business or you via feedback button on Ads by Google Box or via some other means exposing your evil side.
  4. You frequently create ads that violate their guidelines. Sometimes, you succeeded in running them, but now Google makes you wait in long queue before they start running, and sometimes you keep waiting forever.
  5. Your business model looks like you are directly or indirectly promoting some non - promotable industry.
  6. Your IP, Email, business name or billing address discloses or even potentially come closer to something about your possible tainted past.
  7. You create different websites with slight or no changes, all targeting the same audience, and run them using different accounts or it looks like you do so.
  8. Your contact address on website is in .gif format or similar format which bots cannot read, suggesting you have reasons to hide it from google.
  9. You either offer or looks like you offer something miraculous or nefarious.
  10. Your content seems lacking originality or google indexes shows you are a copycat.

Also See:
  1. Google Adwords Free Vouchers - Google Freeconomics!
  2. Adwords Authorized Resellers - Beware of Them!
  3. Google Adwords Certification - Choose the right person to work
Read This >>