Important: Total has a built-in function so you can easily add new sidebars via Appearance > Widget Areas. However, if…
The Total social widget by default only displays the site icons but the name of the sites are in the…
// Display the 'my_custom_sidebar' for the page with ID of 2 and all children of this page add_filter( 'wpex_get_sidebar', function(…
You can override any of the Total theme's custom widgets via your child theme. Simply copy the widget file from…
add_filter( 'wpex_get_sidebar', function( $sidebar ) { // Alter sidebar for single gallery posts if ( is_singular( 'gallery' ) ) {…
// Removes all custom Total widgets add_filter( 'wpex_custom_widgets', '__return_false' );
/** * Add New Social Options To The Social Links Widget. * * @link https://total.wpexplorer.com/docs/snippets/add-new-social-options-to-the-fontawesome-social-widget/ * @deprecated 1.4.9 */ add_filter(…
/** * Display different sidebar templates for your site * Requires Total 2.0.3 or greater */ function my_wpex_get_sidebar_template( $template )…
/* Center Font Awesome Social Widget Icons */ body .fontawesome-social-widget ul { text-align: center; } body .fontawesome-social-widget ul li {…