Studiopress Social Eyes WordPress Theme

Here is the 2011 new wordpress theme from studiopress, this is a beautiful premium magazine style wordpress theme for content rich websites. Also this new wordpress theme is a studiopress genesis theme framework child theme, you can get this simple clean wordpress layout just for $24.95.

Simple Clean wordpress theme: Social Eyes

Studiopress Social Eyes WordPress Theme for Blog Sites
Demo / Download
The simple and pretty blog theme includes an extensive number of features making it easy to customize. Features includ 6 layout options for posts / pages, navigation menu management, various custom widgets, SEO options, theme options panel and more. This theme is good for any niche. No matter you are runing a celebrity gossip site, auto site, health site or real estate website, you can use this new wordpress theme for your site.

Genesis Framework Features

  • 6 Layout Options – selectable site wide or for individual post/page
  • Automatic Updates – easy upgrade similar to the way that WordPress itself (and plugins) are handled
  • Custom Widgets (MyTweets, User Profile, eNews & Updates, Featured Posts, Featured Pages)
  • Theme Setting Panels – many settings that let you fine-tune the way your site looks
  • Import / Export Settings – the Genesis Theme and SEO settings are completely portable, so you can back up, restore, and transfer settings from one install to another
  • Navigation menu controls
  • Drop down navigation menu
  • Custom Hooks (40+) – a hook is a piece of code written into the theme that allows you to attach additional content to the theme itself
  • User Control System – allows admin to turn on/off theme settings, layouts and SEO option availability for users on a per user basis
  • Post Thumbnails
  • Custom Widgets
  • Register / Unregister Layouts
  • Dynamic Text / Image Logo option
  • Search Engine Optimised
  • Author Box – display per page option
  • Widget-Ready
  • Integrated Blog
  • BuddyPress Compatibility
  • Breadcrumb navigation
  • Developed for Localization
  • SEO Options (site wide and individual page/post controls)
  • Post and Page Tracking/Conversion Code box

Prices
Social Eyes Theme: $24.95
Studiopress Pro Plus All-Theme Package: $249.95 (best value)
Demo / Download

Read more

StudioPress Genesis Framework v1.4 Download

Studiopress released a the new version of Genesis theme framework today! Studiopress Genesis Theme has always been about offering valuable cool features, while at the same time allowing maximum control through the use of intelligent Theme Settings, liberal use of action hooks and filters, and semantic markup, no matter you are new to wordpress or an expert you can try this cool wp theme.
In this new version of Genesis theme, it offers more control to developers who use Genesis to run their development business; and now the Genesis offers more SEO control for professional publishers, you can rank high easily use this theme; the most important part: Genesis offers increased flexibility for bloggers and casual users ! If you love this functional wordpress theme, why not get it now?

If you already a Genesis theme user, you can upgrade your Genesis in the wordpress admin panel, and of course, you get FREE update. Or you can download the free studiopress genesis theme 1.4 in the support forum.

How to update to the new version of Genesis 1.4?
Here are the steps:
Step 1:
genesis theme download
Step 2:
studiopress genesis theme
Finally:
genesis theme backend

Here are the new features of Genesis theme framework:

Import/Export Settings

This new feature of genesis theme has been high on the demand list for quite some time now, and finally the team offer this to genesis users.

Basically, the Genesis Theme and SEO settings are now completely portable, so you can back up, restore, and transfer settings from one install to another. As you know, the other wordpress themes have no this feature. And this feature is easy to use.

Read more

Studiopress Expose WordPress Theme

Here is a new 2010 wordpress theme released by studiopress, which is a simple clean wordpress theme for gallery, blog, portfolio, showcase websites. If you are going to find a Stylish, Minimal simple clean wordpress theme, this expose theme is for you.

Studiopress Expose WordPress Theme has many new features. This theme also a child theme of studiopress genesis theme. You can custom background/header, this new genesis theme has 6 layout options, featured images, threaded comments
Here is a picture of this studiopress theme: expose
studiopress-expose-theme
Whether you’re a novice or advanced developer, Genesis provides the foundation to create incredible websites and takes WordPress to places you never thought it would go!And this time is the best time to buy studiopress wordpress themes now, because you can use studiopress discount code to get 25% off if you buy now(dobeweb.com readers only)!
If you are a studiopress Pro Plus member, you can download this studiopress theme free in the support forum. All others can purchase the package here. If you have already purchased the Genesis Theme Framework and any other child theme previously, you can simply purchase the child package by itself, otherwise you need the Expose + Genesis Theme package.The price is $75 and you can use studiopress coupon code to save.
Here is a inner page of this new studiopress wordpress theme expose:
studiopress theme downloadThe inner page is very simple and clean right? Looks so great. And the homepage, you can showcase your products or photographs, a good showcase or photographers wordpress theme.
If you are looking for wordpress themes for photographers, here are some good ones.
Here some good business wordpress themes for companies.

Read more

How to Add Adsense to StudioPress Genesis Theme Framework

This post will help you add Google Adsense code or other advertisement codes to StudioPress Genesis Theme Framework. It is easy to add adsense code to studio press wordpress theme genesis.

Also I am a user of studiopress genesis theme framework, this is new to most of us, I really do not know how to add my advertisement codes to this theme. For the previous classic themes, I can add my codes to single.php or index.php. then add my codes to the proper codes. I can add my ads in my wordpress admin panel: click appearance,editor, find the right file, click, add my codes, save,done! But for studiopress genesis theme, you may have trouble. Don’t worry, Brain will help us solve this problem.

With the Genesis Theme Framework, adding “blocks of code” and placing them into certain areas on a site can easily be done with action hooks.

How to Add Google AdSense To Your Studiopress Genesis Theme Posts

Step #1

The first thing you’ll want to do is establish the CSS that you’ll need for the AdSense block. Inside your child theme’s style.css file, add this code:

/***** AdSense Post ********************/

.adsense-post {
float: right;
margin: 0 0 10px 10px;
}

This piece of code will create a container that will float to the right and be wrapped by the post content. If you want the AdSense block to be floated left, simply change the code to this:

/***** AdSense Post ********************/

.adsense-post {
float: left;
margin: 0 10px 10px 0;
}

Step #2

Next, you’ll want to create a file where you will place your AdSense code. You will also need to define the container for the code as well, so you create a file called adsense-post.php and place this into it:

<div><script type="text/javascript">// <![CDATA[
google_ad_client = "pub-12345678901234";     /* 250x250, created 7/28/10 */     google_ad_slot = "3220529950";     google_ad_width = 250;     google_ad_height = 250;
// ]]></script>
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script></div>

Obviously you will replace the sample AdSense code with your own.

Step #3

Now that you have defined the style and created the php file for your AdSense code, you have to establish a way to implement it into your site. Open your child theme’s functions.php file and find this code:

// Start the engine
require_once(TEMPLATEPATH.'/lib/init.php');

Immediately after that, place the code below:

// Place Google AdSense code into post
add_action('genesis_before_post_content', 'include_adsense_post', 9);
function include_adsense_post() {
if ( is_single() )
require(CHILD_DIR.'/adsense-post.php');
}

The code above creates a function that says “if this is a single post, hook the adsense-post.php file just above the post content”. Because you defined your Google AdSense container to float: right, this allows the post to wrap itself around your box.

Of course, you can add any codes just like this. Yes, this is a little harder than the classic themes. If you do not like studiopress theme framework, you can buy ithemes premium wordpress themes, or woothemes,press75 themes etc, and we also have coupons for these themes.

Read more

StudioPress Freelance CMS WordPress Theme

A new cms wordpress theme released today from studiopress.com : The Freelance, which is an elegant simple clean wordpress theme for corporate related websites. StudioPress Freelance theme This new studiopress WordPress theme works on the Genesis Theme Framework and can be downloaded by Pro Plus members in the support forum.This simple clean business wordpress is … Read more

Studio Press Agency WordPress Theme Download

Here is a good cms wordpress theme for corporate websites. You can use super simple,clean,professional cms wordpress theme for your company websites! Studio Press Agency WordPress Theme picture Demo / Download Agency is a wordpress theme with some nifty little features you won’t see every day on the web, it can be used for pretty … Read more

Studiopress News Child Theme Download

The previous studiopress news wordpress theme is a welcomed wp theme, and now their team have transferred the traditional wordpress news theme to a child theme of Genesis, that means if you have purchased the studiopress genesis theme, you can buy this child theme just for $24.95 instead of $59.95, and if you have purchased … Read more

StudioPress Outreach Child Theme Download

Outreach Child Theme for the Genesis Theme Framework Another new simple clean wordpress CMS theme comes out: the studio press Outreach Theme, which is easy to use and easy to customize.Good for business/corporate websites. Studiopress Genesis Theme Framework Child theme: Outreach Demo / Download I’ve always been a big fan of corporate websites. The good … Read more

Cute Pink Stylish WordPress Theme:Family Tree

If you are looking for a cute stylish wordpress theme, here is a good new wp theme from studiopress, I am sure you love this lovely wordpress theme! Demo /Studiopress Family Tree Download This is a new cute pink worpdress theme named family tree, with cool homagepage and 3 column inner page, suit most of … Read more

Enterprise WordPress Theme for Company/Business websites

A new child theme of studiopress genesis theme framework.This new Enterprise WordPress Theme is good for Company/Business websites. If you are looking for a simple clean corporate template for your website, this new fresh cms wordpress theme is for you.You can use this theme for your company website and blog. Demo / Download Small business … Read more

1 Column Clean Photo WordPress Theme for Photobloggers Pixel Happy Theme

1 Column Simple Clean Photo WordPress Theme:Pixel Happy Genesis Child Theme A very Simple,clean wordpress template for photographs from studiopress. This photo wordpress theme is able to display a slideshow below the header, has numerous layouts, and other options which can be managed from the backend options panel.A very good wp template for gallery,family albums, … Read more

Studio Press Genesis Theme Review

Why Choose Studio Press Genesis Theme? Reasons to Build Your Site With Genesis Do you love wordpress theme framework? There are 3 popular theme framework at present:thesis theme,headway theme,and the new genesis theme. As studiopress approach the anticipated public release of the Genesis Theme Framework, here are 5 reasons you should build your site using … Read more

What?StudioPress Themes Free Download

You can download the professional studiopress wordpress themes now for FREE! Of course you have to win the 12-Days-Of-Christmas $5000 Theme Contest! But it is easy to win the Contest! Download studio press wordpress themes free without studiopress coupon code! It’s Christmas time again,studiopress.com start the 12-Days-Of-Christmas $5000 Theme Contest today, the winner of the … Read more

Studiopress Chrome Theme and Example Website

Here is a cool WordPress CMS theme named Chrome Theme from the professional wordpress theme website studiopress. The default of studiopress wordpress Chrome Theme is a cms car theme, but you can customize it to different style, use on other niches, no matter a blog, company website or others. This 3-columns cms style wordpress theme … Read more