Skip to content

Move WooCommerce Product Variations and Cart Button To Sidebar

Alter The Main Sidebar Display

add_filter( 'totaltheme/sidebars/primary/name', function( $sidebar ) { // Alter sidebar for single gallery posts if ( is_singular( 'gallery' ) ) { $sidebar = 'my_custom_sidebar_id'; } // Return sidebar return $sidebar; } );

Read more

Altering The Event Calendar Page Layouts

// IMPORTANT: There are now options at Customizer > Events Calendar for this!!! /** * Example for altering event calendar layouts. * I didn't find much documentation for the Events Calendar if you find better * conditionals to use, please…

Read more

Conditionally Select Mobile Menu Style

/** * Example function to change the mobile menu style * Available styles: full_screen, sidr, toggle, disabled */ add_filter( 'totaltheme/mobile/menu/style', function( $style ) { // Set the mobile menu style to "full_screen" on the homepage only. if ( is_front_page() )…

Read more

Custom Search Results Thumbnail Cropping

/* Sample function showing how to edit the search results featured image * * IMPORTANT: If your theme is up to date you can modify the search results image size via * the settings at Theme Panel > Image Sizes…

Read more
Back To Top