Latest Posts »
Latest Comments »
Popular Posts »

ProStores Google Analytics Ansynchronous Tracking Plug-in – FREE

Written by Matt on February 12, 2010 – 12:00 am

I am happy to offer our new ProStores Google Analytics Ansynchronous Tracking Plug-in for free here on our blog.

From Google, “asynchronous tracking optimizes how browsers load ga.js so its impact on user experience is minimized. It also allows you to put your Analytics snippet higher in the page without delaying subsequent content from rendering.”

Its also much more flexible and advanced, as well as more accurate, you can push multiple commands at once and you can even split the snippet up depending on your configuration.

1. Remove your old Google Analytics code from the footer if you have it. If you have Google E-commerce tracking in your Order Confirm page leave it, neither code will bother the other one.
2. Open your Header Template, saving a baseline as always, and paste in the code below just after the <body> tag.
3. Make sure you replace UA-xxxxxxx-x with your Google Analytics account number.

<!-- Begin Google CODE -->
<ss:if test="$page.bodytemplate.name = 'orderconfirm'">
<ss:comment>do nothing</ss:comment>
<ss:else/>
<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-xxxxxxx-x']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
  })();

</script>
</ss:if>
<!-- End Google CODE -->
Visit tracking only, doesn’t track e-commerce purchases or purchase information. See my GA – E-Commerce Plug-in to track purchases in your ProStores store.

If you still need assistance Professional install service is available, if you follow me on twitter you can get a discount.


Tags:
, , , , , , , , ,
Posted in ProStores Coding, Tips | 3 Comments »

Installing Google Analytics in your ProStores Site Video Tutorial

Written by Matt on July 11, 2009 – 1:19 pm

This brand new video tutorial will lay out the steps for installing Google Analytics in your ProStores site. Without exception if you own a ProStores store you MUST have Google Analytics installed, if you don’t you won’t be as effective with your site as you could be. Google Analytics provides the data that you can take and use to better understand where your visitors are coming from, what they are doing on your site, and why they are or aren’t turning into customers.

I hope this video tutorial will help you learn to install Google Analytics in your ProStores site.
Read more »


Tags: , , , , , ,
Posted in General Info, ProStores Admin, ProStores Coding, Tutorials | 6 Comments »

How to display related products on cart template

Written by Matt on July 22, 2008 – 4:38 pm

Just a quickie for today! :-) I’ve seen a few people using this already but I thought I’d share it with you all.

[sourcecode language="css"]

You may also be interested in the following products:



[/sourcecode]


Tags: , , ,
Posted in ProStores Coding, Tips | No Comments »

Installing Google Analytics in Prostores

Written by Matt on July 1, 2008 – 10:24 am

Google Analytics and Prostores are a match made in heaven. But the most recent update has made installation a nightmare. But thankfully workable code has been devised and posted by users on the ProStores boards. This tutorial will lay out the steps to install the code. Read more »


Tags: , , , , ,
Posted in General Info, ProStores Coding, Tutorials | 2 Comments »

ProStores Tip: Static Pages

Written by Matt on June 28, 2008 – 9:09 am

If you want to link to a static page you can create a User Defined Template, thats ProStores speak for a page you created in Design Studio, and use this code for the link.

[sourcecode language='css']page name[/sourcecode]

To create a static page go to Design Studio > Click Add a Page Template > type in the page name, which is represented by the ****** in the code above and the rest of the info > Choose User Defined Template from the final drop down box.

You then place the link in the part of the site you want it to show up in.


Tags: , ,
Posted in ProStores Coding, Tips | No Comments »

ProStores Tip: Meta Tags

Written by Matt on June 27, 2008 – 11:25 am

From the Prostores Knowledgebase

Adding Default and Custom Meta Descriptions and Keywords to Additional Pages

Currently, ProStores only displays Meta content (keywords and descriptions) on product pages. Meta content can be added to other store pages with the addition of some SSML code.
Read more »


Tags: , , , , ,
Posted in ProStores Coding, Tutorials | 2 Comments »

Welcome to One Take Media’s Blog

Written by Matt on June 27, 2008 – 11:23 am

Welcome!

I’m glad you’ve taken a moment to read our blog. The whole point of this blog is to provide tips, tutorials and articles relating to web design. Now we do specialize in work in the ProStores E-commerce system but I will be talking about general design principles as well as SEO (search engine optimization) tips and concepts.

We will update at least twice a week with a new tip, tutorial or article.

So pull up a chair and grab some coffee, or another drink of your choice, and enjoy the read!

Matthew Montgomery
President – One Take Media

I’d love to hear from you, please feel free to e-mail me any time at matt@onetakemedia.net


Tags: , ,
Posted in ProStores Admin, ProStores Coding, Tips, Tutorials | No Comments »

ProStores Tip: Creating Custom Page Titles

Written by Matt on June 25, 2008 – 2:29 pm

(From the prostores KB)

Here is a code snippet that will insert your custom page title on certain pages and then use the default ProStores functionality (the product name, category name or template name used for page title) on any pages that do not have a custom page title defined.
Read more »


Tags: , ,
Posted in ProStores Coding, Tutorials | 1 Comment »

ProStores Tip: Displaying cart $ Total and Item total

Written by Matt on June 25, 2008 – 2:05 pm

Just another quick tip to display the total $ amount in your ProStores shopping cart as well as the total number of items in your cart. They can be used together or seperately.
[sourcecode language='css']
(value of cart before shipping)
- Value of Item(s) in Cart:
- Total number of items in Cart:
[/sourcecode]


Tags: , , , ,
Posted in ProStores Coding, Tips | No Comments »

ProStores Tip: Replacing the grey buttons on checkout pages

Written by Matt on June 25, 2008 – 1:44 pm

Go to the “Checkout for Guests”, “Checkout for New Customers”, “Billing Options” templates using the Source Editor, find
[sourcecode language='css']

and replace it with


[/sourcecode]
For the Ship to and Ship to Gift templates the new button code needs to be:
[sourcecode language='css']

[/sourcecode]


Tags: , , ,
Posted in ProStores Coding, Tips | No Comments »