Skip to content

Register A New Custom Sidebar

Change Related Portfolio Columns for Mobile

/** * Add responsive grid classes to related portfolio entries * Note: Only add the classes you need. For example if the default columns * are set to 3 no need to define 3 columns again for tablet devices. *…

Read more

Move Payment Options in WooCommerce Checkout to Top Right

// Remove the payment options form from default location remove_action( 'woocommerce_checkout_order_review', 'woocommerce_checkout_payment', 20 ); // Add the payment options form under the "order notes" section // Important you will have to also add the following custom CSS to your site:…

Read more

Trim Custom Excerpts

A custom excerpt allows you to write exactly what you want shown for the excerpt. Because of this, when the theme detects a custom excerpt, it displays the full text without trimming it. If you’re using elements like Post Cards…

Read more

Open Entries with Redirection in a New Tab

add_action( 'wp_footer', function() { ?> ( function( $ ) { 'use strict'; $( document ).on( 'ready', function() { var $entriesWithRedirect = $( '.has-redirect' ) $entriesWithRedirect.each( function() { var $this = $( this ); $this.find( 'a' ).attr( 'target', '_blank' ); }…

Read more
Back To Top