It’s time to release another Wordpress Themes.
This is the first magazine style theme from iBizPress series. This theme is integrated with auto scrolling featured area (Powered by jCarousel). Like my previous theme, this theme also available in 5 colors (Light, Dark, Green, Orange, Red).

Theme Name: iBizPress Magazine
Theme Features:
- Available in 5 colors (Light, Dark, Green, Orange, Red)
- Animated featured area
- Easy Feedburner email subscription
- Extra field for video post creation
- Passed xhtml Validation
- Control panel page (feedburner, featured content, magazine category configuration)
- Extra field in post area for easy thumbnail upload.
- Breadcrumbs section at post page so user can easily navigate the site.
- Compatible with all major browsers
- Drop down menu
- 2 widgetized area
Theme Installation:
- Upload the theme at wordpress theme directory and activate it at wordpress admin (Just like any other theme).
- Once theme is activated, the link to theme option page will appear at your wordpress admin menu (under Appearance).

- Proceed to the theme option page. You’ll found the various settings for the theme (Feedburner ID, Feedburner URL, About Us, Video Category, Featured Post and Featured Category).
- Feedburner ID - You will need your website Feedburner ID in order for the email subscription function to work. Once you logged on to your feedburner account, you can find your feedburner ID in the address bar of your browser.

- Feedburner URL - Your feedburner url. For example: http://feeds.feedburner.com/Izwan00
- About Us - Just tell something you like here.
- Video Category - Select category you intended to put all your video post.
- Featured Post - Select post to display in featured area (homepage).
- Featured Category - Select category to display at homepage. There are 4 spots available, which is Category #1 (top-left), Category #2 (top-right), Category #3 (bottom-left), Category #4 (bottom-right).
- Feedburner ID - You will need your website Feedburner ID in order for the email subscription function to work. Once you logged on to your feedburner account, you can find your feedburner ID in the address bar of your browser.
- Post Creation - When creating a post, iBizPress Magazine theme will add additional field to post editor, like shown below:
- 100px by 100px thumbnail - This field is required for every post.
- 184px by 135px thumbnail - This field is required if you intend to put the post as featured.
- Youtube Video ID - Required for video post.
- Video Post Creation - Just make sure to put youtube video id in each video post. You can find this id in youtube url. For example, if the url is http://www.youtube.com/watch?v=swed544fe, then the ID is swed544fe.
Live Demo:
Theme Downloads:
For more premium wordpress themes, please check out our gallery at http://www.technologytricks.com/most-popular-premium-wordpress-themes/
To receive updates on new articles, subscribe to Technology Tricks today.



















34 Comments Received
April 28th, 2009 @ 7:21 AM
That is very good indeed
April 28th, 2009 @ 11:31 AM
Nice theme…I have always been partial to the magazine layouts.
They just seem more un-blog-ish.
April 28th, 2009 @ 4:20 PM
This is a funky looking magazine style template that would work well with a news site - but I might try on a new online store I’m developing
Budding Health′s last blog post..Product Review: Ultimate gum disease cure and toothache relief solution
April 28th, 2009 @ 5:04 PM
if there are tab-style in the sidebar will be better..
ithemes′s last blog post..Free Wordpress Theme Elegent Designs Stylish
April 28th, 2009 @ 7:14 PM
ithemes, that was a great idea. Thanks.
izwan00′s last blog post..iBizPress Magazine - Magazine Style Premium Wordpress Themes
May 3rd, 2009 @ 10:51 PM
i love this theme.. but how can i setup dropdown menu?
thank for sharing izwan
nakaturi′s last blog post..Acer Ferrari 5000 Review
May 4th, 2009 @ 10:19 PM
thanks for the template. i really love this.
May 8th, 2009 @ 9:01 AM
Nice theme,thanks.
May 10th, 2009 @ 6:18 PM
Could you tell me how to display feature video?
I can’t display it. I tried to paste ID video post but it didn’t change anything
May 11th, 2009 @ 12:39 AM
Hi nice magazine style theme…i like to implement it for my new portal..i have to place categories in menu bar,instead of in sidebar..how to do this?
May 11th, 2009 @ 7:56 AM
I like the new themese… very formal and something something ideal for finance and other business related blog. Somehow sometimes some blog themes are too informal.
I like this one better. Will use it soon.
May 12th, 2009 @ 2:50 AM
HI, Its a great theme but for some reason i cnt get the youtube video posts to work, i put the youtube id in, and publish the post, but theres no video, and when i go back to the post the video id has gone, any help..?
May 15th, 2009 @ 2:00 AM
Nice theme with great color combinations - very clean and uncluttered design.
May 21st, 2009 @ 2:22 PM
I managed to figure out the problem with the video posts. It didn’t appear to be saving the youtubeID. Just change the following function in the functions.php
function thumbnail_save_postdata()
{
global $wpdb;
$overrides = array(’test_form’ => false);
$file_100 = wp_handle_upload($_FILES['thumbnail'], $overrides);
$file_184 = wp_handle_upload($_FILES['featured_thumbnail'], $overrides);
$url_100 = (strlen($file_100['url']) == 0) ? $_POST['thumbnail_text'] : $file_100['url'];
$url_184 = (strlen($file_184['url']) == 0) ? $_POST['featured_thumbnail_text'] : $file_184['url'];
$tubeID = $_POST['youtube_id'];
if(!empty($url_100))
{
$postID = $_POST['post_ID'];
$sqlQuery = “DELETE FROM ” . $wpdb->prefix . “postmeta WHERE post_id=$postID AND meta_key=’ibizmag_postimg_100px’;”;
$wpdb->query($sqlQuery);
// adding record in the database
$sqlQuery = “INSERT INTO ” .
$wpdb->prefix . “postmeta(post_id, meta_key, meta_value)
VALUES($postID, ‘ibizmag_postimg_100px’, ‘$url_100′)”;
$wpdb->query($sqlQuery);
}
if(!empty($url_184))
{
$postID = $_POST['post_ID'];
$sqlQuery = “DELETE FROM ” . $wpdb->prefix . “postmeta WHERE post_id=$postID AND meta_key=’ibizmag_postimg_184px’;”;
$wpdb->query($sqlQuery);
// adding record in the database
$sqlQuery = “INSERT INTO ” .
$wpdb->prefix . “postmeta(post_id, meta_key, meta_value)
VALUES($postID, ‘ibizmag_postimg_184px’, ‘$url_184′)”;
$wpdb->query($sqlQuery);
}
if(!empty($tubeID))
{
$postID = $_POST['post_ID'];
$sqlQuery = “DELETE FROM ” . $wpdb->prefix . “postmeta WHERE post_id=$postID AND meta_key=’ibizmag_youtube_id’;”;
$wpdb->query($sqlQuery);
// adding record in the database
$sqlQuery = “INSERT INTO ” .
$wpdb->prefix . “postmeta(post_id, meta_key, meta_value)
VALUES($postID, ‘ibizmag_youtube_id’, ‘$tubeID’)”;
$wpdb->query($sqlQuery);
}
May 22nd, 2009 @ 3:41 AM
Thanks Geak for the code. I managed to fixed it but I just doesn’t have much time recently. I’ve uploaded the updated version of the theme.
May 24th, 2009 @ 2:54 AM
Hi,
I want to publish my portal using iBizPress green theme but I tried many time for featured posts.Featured posts on slider are not working,
When I click on Number link like 1,2,3,4,5 Featured posts link does not work.Even I fill the featured posts on this theme’s Control panel.
Pl tell my how can work slider.If there is any other method Pl tell me.
Thanks,
Technogati′s last blog post..Edit Your Photos With Fun.
May 24th, 2009 @ 10:42 AM
I tested this theme with wordpress 2.7.1 and the featured post is worked. If it doesn’t work, please check the following checklist:
1. I’ve tested it with wordpress 2.7.1. Make sure you have this version or the latest version.
2. FTP your site and chmod ‘777′ folder wp_content/uploads. If the folder doesn’t exists, you need to create the folder yourself.
3. Make sure you download the latest version of iBizPress green.
4. When creating/editing a post, make sure you fill in the thumbnail fields (100px by 100px and 184px by 135px).
5. After post created/published, please select the featured post at iBizPress Magazine theme settings.
May 24th, 2009 @ 12:21 PM
Thanks for your reply.But still followed all the steps give by you.Still not working.
I have done whatever you guided me.Please solve my this issue so I can publish my portal with your valuable theme.
I am using Wordpress 2.7.1
Technogati′s last blog post..Edit Your Photos With Fun.
May 25th, 2009 @ 2:50 AM
I have no idea what setting you missed because everything is working on my website. If you need more question, please email me directly to izwan00[at]gmail.com
May 25th, 2009 @ 9:51 AM
Thankyou very much.
Technogati′s last blog post..Edit Your Photos With Fun.
May 31st, 2009 @ 11:31 PM
Hi,
I love your themes, especially this one. I downloaded a copy. Thanks a lot for this!
- Glenn
June 4th, 2009 @ 8:44 AM
hello
This is a nice and beautiful theme.
I use the light theme and I tried to put a banner (985×250) in the header, so i modify the css :
#header {
float: left;
width: 985px;
height: 250px;
background-image:url(images/banner.jpg);
}
But my banner exceeds on both sides
When i reduce my banner (975×250), it’s always lighty on the left side.
How can i center my banner ?
Can you help me ?
June 4th, 2009 @ 11:36 AM
Olive, I’m not sure… but, you can try this.
#header {
float: left;
width: 985px;
height: 250px;
background:url(images/banner.jpg) no-repeat top center;
}
let me know if it work.
June 4th, 2009 @ 11:56 PM
sorry it doesn’t work but i tried this:
#header {
width: 975px;
margin-right: auto;
margin-left: auto;
height: 250px;
background:url(images/banner.jpg);
}
It works, there is just a little gap
thanks for your help
June 6th, 2009 @ 4:02 AM
Nice theme. I downloaded it. Thanks a lot!
Natasha′s last blog post..Долой трудности перевода!
October 4th, 2009 @ 5:45 AM
I just can’t make scrolling featured area to work
November 20th, 2009 @ 9:32 PM
Nice theme…
I like this…
January 22nd, 2010 @ 3:59 PM
V. nice..
wan.. ko dah jadi fulltime blogger ke skrg?
Pingback & Trackback
Leave A Reply