Original request: Requirements WordPress 4.0+ Genesis 2.2.0+ Atmosphere Pro Theme Genesis Featured Posts Combo Plugin Step 1 Drag and drop the “Genesis Featured Posts Combo” widget into Front Page 3 widget area. Now configure the following options: Layouts: Full Width (layout no. 7) Post Type: Post. You can select CPT. Check Show Post Title checkbox… Continue Reading
featured post
Displaying Backstretch Featured Image on Blog or Archive page in Genesis
First upload the backstretch.js and theme-script.js file in js folder of your child theme. Here is the script of theme-script.js file jQuery(function( $ ){ $( “main.content .post .entry-image” ).each( function(){ var post_image = $(this).data( “entry-img” ); $(this).backstretch([BackStretchImg]=post_image,{duration:3000,fade:750}); }); }); Add the following code in your functions.php file: add_action( ‘wp_enqueue_scripts’, ‘enqueue_bs_script’ ); function enqueue_bs_script() { wp_enqueue_script(… Continue Reading
Display 3 Columns Genesis Featured Posts in Home Section 2 of Parallax PRO theme
By three steps I created 3 columns featured posts in Home Section 2 widget area of Parallax PRO child theme. 1. Setup thumbnail size and regenerate the thumbnail 2. Setup Genesis Featured Post Widget 3. Add CSS in style.css file 1. Setup thumbnail size and regenerate the thumbnail Login to dashboard and open the functions.php… Continue Reading