Step 1: Replace the current front-page.php file’s code: <?php /** * This file adds the Home Page to the Parallax Pro Theme. * * @author StudioPress * @package Parallax * @subpackage Customizations */ add_action( ‘genesis_meta’, ‘parallax_home_genesis_meta’ ); /** * Add widget support for homepage. If no widgets active, display the default loop. * */ function… Continue Reading
Archives for July 2015
Making Category Archive Page in Gallery Format
Step 1: Add this following code in your functions.php file : Step 2: Create a new js file “hover.js” and put in “your-child-theme-folder/js” folder. Now add this scripts into this file: jQuery(document).ready(function($){ $(".col-3").hover(function(){ $(this).find(‘.entry-header’).fadeIn(); },function(){ $(this).find(‘.entry-header’).fadeOut(); }); }); Step 3: Loading this new JS file on your site using wp_enqueue_scripts function. Add the following php… Continue Reading
Search Input Box on Slider Using Flex Pro Theme
In this article I am showing how to accomplish this. Flex Pro theme have slider CPT. Step 1: Navigate to Dashboard > Slider > Add New page and change the WP Editor mode from Visual to Text. Now create a slider post and put the following HTML markup in WP Editor. <div class=”slider-search-form”> <form role=”search”… Continue Reading
Embed video above the Featured Post Title
This tutorial is for above user. But it will be very helpful for other Genesis folks. Step 1: Creating a custom field “video_embed_code” using WP’s Native Custom Fields feature. Go to post’s add/edit screen page and scroll down. You will get “Custom Fields” box. if it is not coming then click on “Screen Options” tab… Continue Reading