Select Page

Customize the Project Permalink

Want to replace the term “Projects” in the project taxonomy. Here’s how!  Open functions.php in your Child Theme and add the following code. Please Note: In this example, “Projects” is replaced with “Videos”. Simply...

Create a Search Field Shortcode

Want to add the WordPress search form in your post or page. Here’s how!  Open functions.php in your Child Theme and add the following code: function wpbsearchform( $form ) { $form = '<form role="search" method="get"...

Randomize Order of the Portfolio Grid

To randomize the order of the portfolio grid, follow these steps: Add the following code to the bottom of your child theme’s functions.php: if ( ! function_exists( 'et_builder_add_main_elements' ) ) : function et_builder_add_main_elements() { require...

Replace Default Footer with Custom Divi Builder Footer

Create custom footer in Divi Library Go to Divi Library and click on Add New. Name the template and select “Section” for your Template Type. Customize the footer section with rows and modules however you like. Insert your custom footer section into footer.php Open...

Media Queries Tip Sheet

Below are some quick code snippets you can use in your CSS file to accommodate for iPad and iPhone devices. iPad iPad (portrait) @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) { /* YOUR CSS GOES HERE */ }...