Skip to content

Instantly share code, notes, and snippets.

@xlplugins
Created November 6, 2023 11:18
Show Gist options
  • Save xlplugins/e916bee5cc1b715a45f33052fbbb9ff1 to your computer and use it in GitHub Desktop.
Save xlplugins/e916bee5cc1b715a45f33052fbbb9ff1 to your computer and use it in GitHub Desktop.
Disable Theme cart icon and attach FK Cart
add_filter( 'jas_gecko_wc_shopping_cart', 'vincijaswim_disable_header_cart', 9999 );
function vincijaswim_disable_header_cart( $output ) {
return do_shortcode( '[fk_cart_menu]' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment