Title: Utility Bar
Last modified: August 22, 2016

---

# Utility Bar

 *  [csquared89](https://wordpress.org/support/users/csquared89/)
 * (@csquared89)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/utility-bar/)
 * In the theme, would it be possible to put a picture with a link to my Amazon 
   store, in the utility bar?

Viewing 1 replies (of 1 total)

 *  [jamesfroud](https://wordpress.org/support/users/jamesfroud/)
 * (@jamesfroud)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/utility-bar/#post-5580219)
 * 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.

Viewing 1 replies (of 1 total)

The topic ‘Utility Bar’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/i-transform/3.0.9/screenshot.png)
 * i-transform
 * [Support Threads](https://wordpress.org/support/theme/i-transform/)
 * [Active Topics](https://wordpress.org/support/theme/i-transform/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/i-transform/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/i-transform/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [jamesfroud](https://wordpress.org/support/users/jamesfroud/)
 * Last activity: [11 years, 4 months ago](https://wordpress.org/support/topic/utility-bar/#post-5580219)
 * Status: not resolved