Original Request: Hello, I’m experimenting with the Whitespace theme. http://my.studiopress.com/themes/whitespace/#demo-full I really like the way that the post excerpts display on the home page, but I would like to display page excerpts, not posts. Does anyone have any tips or advice on how to achieve this? Many thanks, Tim Option 1: add the following code… Continue Reading
home page
Displaying 3 Columns Teaser Boxes Below the Banner on Home Page of Whitespace PRO Theme
By default Home page have one widget area for Welcome Text. This article will show how to create a new widget area on home page and display the 3 columns teasers in that area. Step 1: Registering a new widget area “Home Top”. Add the following code in your functions.php file:
1 2 3 4 5 6 |
//* Register home top widget area genesis_register_sidebar( array( 'id' => 'home-top', 'name' => __( 'Home Top', 'whitespace' ), 'description' => __( 'This is the home top section will come below the banner image.', 'whitespace' ), ) ); |
Step 2: Navigate… Continue Reading
Adding Fullwidth Flexslider on Home page in Minimum PRO Theme
After long gap another new tips is published today. Currently lot of users are using the Genesis Responsive Slider or Soliloquy Slider in Genesis Child Theme. But I am going with free version slider. Flexslider is a free slider which is coming from WooThemes. Minimum PRO Theme have no slider option for home page. So… Continue Reading
Create 3 columns grid view layout for home page in Minimum PRO Theme
Generally 2 columns grid view for blog posts are available in Minimum PRO Theme. But my client is asking for three columns grid loop for posts and portfolio. So I modified the home page design little bit for it. I accomplished this by following steps: 1. Remove the Grip Loop code from front-page.php file 2.… Continue Reading