Shopify themes, liquid, logos, and UX
Hello, I would like this apps button to be the same design as the picture (1 example) and I would also like so when i press the 'add to cart' button on the app section where the video is located (2nd image), that it adds the product to cart instead of sending me to a page.
Thank you in advance!
URL: Hygiadental.com
pw: myown
Hi @jeffreym
To add the product to the cart, use the code below. Add this code in theme.liquid in the footer before </body>
<script>
$(document).ready(function() {
$('.video-text-button-button_7XGnBN').on('click',function(e){
e.preventDefault();
$('.product-form__submit').trigger('click');
});
});
</script>
Add this code to theme.liquid before </head>
<style>
.product-form__submit {
width: auto;
}
</style>
In Canada, payment processors, like those that provide payment processing services t...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025