Created
November 6, 2023 11:18
-
-
Save xlplugins/e916bee5cc1b715a45f33052fbbb9ff1 to your computer and use it in GitHub Desktop.
Disable Theme cart icon and attach FK Cart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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