Skip to content

Alter Blog Entry Elements(blocks) For Specific Categories/Tags

Alter Blog Entry Elements(blocks) For Specific Categories/Tags

/** * Alter the blog entry blocks via filter. * Available Blocks: featured_media, title, meta, excerpt_content, readmore. */ add_filter( 'totaltheme/blog/entry_blocks', function( $blocks ) { // Alter for "web-design" category if ( is_category( 'web-design' ) ) { $blocks = array( 'title',…

Read more

Remove All Core WooCommerce CSS

/** * Remove all WooCommerce CSS styles and allow you to fully design everything from scratch * */ function my_remove_all_woo_css() { wp_deregister_style( 'woocommerce-general' ); // Remove core css wp_deregister_style( 'woocommerce-smallscreen' ); // Remove core responsive css wp_deregister_style( 'wpex-woocommerce' ); //…

Read more

Alter Home Link In Breadcrumbs

// Alter breadcrumbs home link URL function my_alter_breadcrumbs_home_link( $args ) { $args['home_link'] = 'YOUR CUSTOM LINK'; return $args; } add_filter( 'wpex_breadcrumbs_args', 'my_alter_breadcrumbs_home_link' ); // Alter breadcrumbs home link HTML function my_alter_breadcrumbs_home_link_old( $trail ) { $trail['trail_start'] = 'YOUR TITLE'; return $trail;…

Read more
Back To Top