if you use the editor under Themes and open..
custom_functions.php
go to line 9
it should read
$services = array ('facebook','twitter','pinterest','flickr','feed','instagram','googleplus');
you can add “,’cart'” to the end of it (cart is the closed genericon I could find…but looks ok)
so it’ll become…
$services = array ('facebook','twitter','pinterest','flickr','feed','instagram','googleplus','cart');
Save that file…
now open …
options.php
go to line 276 this should be just below
$options[] = array(
'name' => __('Google plus', 'itransform'),
'desc' => __('', 'itransform'),
'id' => 'itrans_social_googleplus',
'std' => '',
'type' => 'text');
add this:
$options[] = array(
'name' => __('Amazon Store', 'itransform'),
'desc' => __('', 'itransform'),
'id' => 'itrans_social_cart',
'std' => '',
'type' => 'text');
save this file.
Now if you go to Theme -> Theme Options and click on Social Links you should see Amazon Store and be able to add a link there.