Skip to content

Replace Header Aside Content with Widgets

Remove Term Description from Paginated Pages

Most themes by default display the term description on all paginated pages of your taxonomy archives, however, you can easily hook into the WordPress term_description function to remove it from a paginated pages like such:

Read more

Center Align Header Style 1

@media only screen and (min-width: 960px) { body #site-header-inner { text-align: center; } body .header-one #site-logo { display: inline-block; float: none; height: 50px; line-height: 50px; } body .navbar-style-one { position: static; display: inline-block; left: auto; right: auto; top: auto; }…

Read more

Change WPBakery CSS Animation Offset

The WPBakery CSS animations use a renamed version of the waypoints script so that items animate once they become visible on the screen. The default offset value is 85% which means it will trigger when the top of the element…

Read more

Display Co-Authors in Post Meta

This snippet shows how you can display multiple authors via the Co-Authors plugin within the theme's meta section (this is the section that displays the post author, category, date..etc below the post title by default).

Read more

Display Shop Sidebar for WooCommerce Cart & Checkout

By default the theme uses the is_woocommerce() conditional for displaying the WooCommerce sidebar on the website. However, WooCommerce doesn't treat the cart/shop as actual WooCommerce pages so they will display the standard page or default sidebar instead of the WooCommerce…

Read more

Add a Show All Button to the WooCommerce Shop

// Insert a show all button below the products (change the hook to fit your needs) add_action( 'wpex_hook_content_bottom', function() { if ( empty( $_GET[ 'show_all' ] ) && ( wpex_is_woo_shop() || wpex_is_woo_tax() ) ) { echo 'Show All'; } }…

Read more
Back To Top