Skip to content

How to Override Custom Widgets

How to Override Custom Widgets

You can override any of the Total theme's custom widgets via your child theme. Simply copy the widget file from the Total Theme Core plugin under total-theme-core/inc/widges/ into your child theme (best to create a widgets folder in the child…

Read more

Disable More Tag For Blog Entries

By default if the theme see's that your post is using the more tag it will use that for the blog entry excerpts. If you want to ignore the more tag and use the theme's custom excerpt function you can…

Read more

Add Border Animation Hover on Header One Menu Links

#site-navigation .dropdown-menu > li > a > span.link-inner { position: relative; } #site-navigation .dropdown-menu > li > a > span.link-inner:after { position: absolute; bottom: 0px; content: ""; background: #4a97c2; width: 0; height: 2px; left: 0; transition: 0.3s all; } #site-navigation…

Read more

Alter Breadcrumbs End Title

function myprefix_tweak_breadcrumbs( $trail ) { // Change trail end title $trail['trail_end'] = 'YOUR CUSTOM END'; // Return breadcrums trail return $trail; } add_filter( 'wpex_breadcrumbs_trail', 'myprefix_tweak_breadcrumbs' );

Read more

Change Vertical Header Style 6 Width

@media only screen and (min-width: 960px) { body.wpex-has-vertical-header #site-header { width: 200px; } body.wpex-has-vertical-header.full-width-main-layout #wrap { padding-left: 200px } }

Read more
Back To Top