Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fabiensebban/6284a29714ca7ec09ac64099809d5f1c to your computer and use it in GitHub Desktop.
Save fabiensebban/6284a29714ca7ec09ac64099809d5f1c to your computer and use it in GitHub Desktop.
WISHLIST POWER - Move the wishlist button to another location in the product page
// Add this code in the <script> tag of the footer.liquid file
// Wishlist Power button in product card
let wishlistPowerButton = document.querySelector("ooo-wl-access-button");
if (wishlistPowerButton){
document.querySelector(".product-info__block-item[data-block-id=\"title\"]")?.appendChild(wishlistPowerButton)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment