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
minimum pro
Remove Call Out Action section after header from all inner pages on Minimum PRO Theme
This article is for all Minimum PRO theme users. A call out box is coming after header on all inner pages. Using conditional tag you can remove it from all inner pages. Open the functions.php file in Theme Editor ( Dashboard->Appearance->Editor) and find this function “minimum_site_tagline”. Now replace the full code by this code.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
function minimum_site_tagline() { if( !is_front_page() ) return ; printf( '<div %s>', genesis_attr( 'site-tagline' ) ); genesis_structural_wrap( 'site-tagline' ); printf( '<div %s>', genesis_attr( 'site-tagline-left' ) ); printf( '<p %s>%s</p>', genesis_attr( 'site-description' ), esc_html( get_bloginfo( 'description' ) ) ); echo '</div>'; printf( '<div %s>', genesis_attr( 'site-tagline-right' ) ); genesis_widget_area( 'site-tagline-right' ); echo '</div>'; genesis_structural_wrap( 'site-tagline', 'close' ); echo '</div>'; } |
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