Skip to content

Change Mobile Menu Hamburger Icon Size

Change Mobile Menu Hamburger Icon Size

Here is an example CSS to make the hamburger icon bigger in the Total WordPress theme. The way the icon works is by having a span set to a fixed height and width. Inside it is another span set to…

Read more

Enable URL Hash Update For Local Scroll Links

/** * Enable URl hash update when clicking local scroll links * */ function myprefix_enable_local_scroll_hash_update( $array ) { $array['localScrollUpdateHash'] = true; return $array; } add_filter( 'wpex_localize_array', 'myprefix_enable_local_scroll_hash_update' );

Read more

Define Your Dynamic Post Template via Code

While you can already define your dynamic post template for posts, portfolio, staff, testimonials via the Customizer and you can define it for custom post types when using the Post Types Unlimited Plugin, if you are creating new post types…

Read more
Back To Top