Change The Comma in Term/Categories Lists
add_filter( 'wpex_list_post_terms', function( $terms ) { $terms = str_replace( ',', ' · ', $terms ); return $terms; } );
add_filter( 'wpex_list_post_terms', function( $terms ) { $terms = str_replace( ',', ' · ', $terms ); return $terms; } );
add_filter( 'wpex_page_header_classes', function( $classes ) { $classes[] = 'container'; return $classes; } );
add_filter( 'wpex_header_style', function( $style ) { if ( wpex_has_overlay_header() ) { $style = 'three'; } return $style; } );
// Enable Lightbox Title for Portfolio Media Gallery // Uses image alt attribute for the title add_filter( 'wpex_portfolio_gallery_lightbox_title', '__return_true' );
add_filter( 'wpex_woo_version_supported', '__return_false' );
body #site-header, body #site-header-sticky-wrapper.is-sticky #site-header { background: #000 url( YOUR_IMAGE_BACKBGROUND_URL ); }
body .page-header.background-image-page-header { background-position: bottom center; }
@media only screen and (min-width: 960px) { body.wpex-has-vertical-header #site-header { width: 400px !important; } body.wpex-has-vertical-header.full-width-main-layout #wrap { padding-left: 400px !important; } }
add_filter( 'wpex_download_single_blocks', function( $blocks ) { unset( $blocks['meta'] ); // Remove meta unset( $blocks['share'] ); // Remove social share return $blocks; } );
IMPORTANT: As of 2018 Google changed things so you can no longer disable related videos. Read more here.