Skip to content

Remove Custom Post Type Next & Previous Post Links

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

Remove Theme Meta Generator

This is used for support so we know what version of the theme you are using. It causes no harm having it in there, but if you must remove it here is how.

Read more

Hide WooCommerce Cross-Sells

body .cross-sells { display: none !important; } .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals { width: 100% !important; }

Read more
Back To Top