Reposition Genesis header right widget
//Custom Header
function sample_genesis_do_header() {
global $wp_registered_sidebars;
if ( ( isset( $wp_registered_sidebars[‘header-right’] ) && is_active_sidebar( ‘header-right’ ) ) || has_action( ‘genesis_header_right’ ) ) {
genesis_markup( array(
‘html5’ => ‘
Similar Posts

Create an Event Espresso Event
This post demonstrate how to create an event in the WordPress software plugin Event Espresso 4. Both ticketed and un-ticketed events will be explored. Login to WordPress, navigate to Event Espresso Upon logging into WordPress, navigate to Event Espresso You see the list of events. You can filter the list to show only events that…
SPF record to prevent spam delivery
How to prevent email from being sent to spam. Let say email originating from a specific IP, for example, a website contact form, is delivered to spam. One step is to add an SPF record to the domain DNS. In your domain registrar or host managing the nameservers, add a TXT record with the value:…
Open Office remove empty rows
How to remove empty rows in an Open Office spreadsheet document. Select all (Ctr+A) in the spreadsheet document Go to last cell (Ctr+Shift+End) From the main menu, navigate to Data>Sort, then select value for ‘Sort by’ and ‘Then by’ Done
Modal Popup
Javascript modal popup on page load, and exit, etc., with Jquery and Bootstrap. Sources: JS Onload: JS Mouseleave: HTML: × Shopping, Dining, Entertainment or Beaches, Golf and Area Attractions! Sarasota has it all! Request your visitors brochure today! Backdrop Opacity .modal-backdrop { opacity:0.7 !important; }
Remove Images from WooCommerce pages
single Product Pages Here’s a handy tutorial on removing product images from the single WooCommerce product page. The basic idea is that we’ll want to remove the action that adds WooCommerce images. We can do so by adding this snippet into our child functions.php or the Code Snippets plugin: 1 2 // Remove image from…
Add robots meta tag to specific page
This method is for the Genesis framework, applied in the functions.php file // Add Robots Meta add_action( ‘genesis_meta’, ‘raz_robots_meta_tag’ ); function raz_robots_meta_tag() { if ( is_page(‘page title’)) { echo ‘<meta name=”robots” content=”noindex,nofollow”>’; } }