Zen Cart Logo
Forums / General Questions / google adsense sidebox appearing in SSL

google adsense sidebox appearing in SSL

Locked

Views: 1,734

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
20 Aug 2007, 11:03 PM
#1
ztotheetothen avatar

ztotheetothen

Zen Follower

Join Date:
Oct 2006
Location:
Los Angeles
Posts:
111
Plugin Contributions:
0

google adsense sidebox appearing in SSL

hi everyone,

I've been getting some sales, but I've noticed that a lot of customers dont complete the checkout process. i realized that google ads that i have setup in my sideboxes are breaching the SSL.

can anyone help me fix the sideboxes so that they won't appear when customers are using the checkout?

my website here

any help is greatly appreciated

21 Aug 2007, 12:54 AM
#2
econcepts avatar

econcepts

Totally Zenned

Join Date:
Dec 2005
Posts:
1,505
Plugin Contributions:
2

Re: google adsense sidebox appearing in SSL

Just use the overrides system available to you with Zen and tell it to remove the sideboxes on any of the checkout pages.

Instructions for this can be found at the top of the following file:

/includes/templates/[your template directory here]/common/tpl_main_page.php

Do you really make all that much money from your AdSense ads? I mean REALLY enough to keep it in place. If you are making a good amount from it (like MORE than an average sale at your store consistently) then I could see keeping it.

Otherwise, remove it. It will decrease conversion of the site.

There is a place, time, and most importantly SPOT (as in proper placement) for AdSense and similar ad programs. Unless your products aren't of interest to your visitors (to which I would reply, "you would do better finding out and targeting the proper visitor base that wants to become your 'customer' and buy your product) I would remove it totally.

It might not only be the fact that they violate the SSL security, but the pure fact that they are present.

Wouldn't you rather sell your products than make a few bucks from AdSense?

You can make more money with AdSense by placing it on its own site (non-ecommerce) than you probably will on your e-com site anyhow.

Just something to think about.

Finally, just making a change or two to a website and thinking it will increase conversion (checkouts) is usually only going to disappoint. There is a lot more to increasing conversion of websites then just removing an element or two. With e-commerce sites you should have tracking in place (Google Analytics) to record what is really going on, and then test various methods that enhance the overall Customer Experience.

21 Aug 2007, 7:30 PM
#3
ztotheetothen avatar

ztotheetothen

Zen Follower

Join Date:
Oct 2006
Location:
Los Angeles
Posts:
111
Plugin Contributions:
0

Re: google adsense sidebox appearing in SSL

hi econcepts,

thanks for your reply. i make about $5 day through adsense.
however when i removed adsense, i was getting about 30% less traffic, according to google analytics. adsense crawler is not supposed to generate traffic, but it did for me.

but regardless, i need to make my checkout secure, so at least the customers wont leave

23 Nov 2007, 4:46 AM
#4
import4sale avatar

import4sale

New Zenner

Join Date:
Nov 2007
Posts:
4
Plugin Contributions:
0

Re: google adsense sidebox appearing in SSL

hi! i know my thread may be too late for u and hopefully it still helps.
i had same problem before and with the code below was issue be solved:

<?php // test if googleadsense should show $show_googleadsense= true; if ($request_type == 'SSL') { $show_googleadsense= false; } else { $show_googleadsense= true; } if ($show_googleadsense) { ****------- Your google adsense code here -------------***** ?>// eof googleadsense display control