Jump to content
  • 0

Dodanie "zapytaj o produkt" w kodzie pomoc


masakra

Question

Witam, chcę dodać przycisk zapytaj o produkt gdy tylko nie będzie produktu na stanie. 

Dodałem taki przycisk w pliku product-add-to-cart.tpl i fajnie wyświetla się w tedy kiedy ma lecz po naciśnięciu nie chce odesłać na link href lecz znów do koszyka.

 

Tutaj kod

        {block name='product_quantity'}
            <div class="row extra-small-gutters product-quantity">
                <div class="col col-12 col-sm-auto">
                    <div class="qty">
                        <input
                                type="text"
                                name="qty"
                                id="quantity_wanted"
                                value="{$product.quantity_wanted}"
                                class="input-group"
                                min="{$product.minimal_quantity}"
                        >
                    </div>
                </div>
                <div class="col col-12 col-sm-auto">
                    <div class="add">
                        <button
                                class="btn btn-primary btn-lg add-to-cart"
                                data-button-action="add-to-cart"
                                type="submit"
                                {if !$product.add_to_cart_url}
                                    disabled
                                {/if}
                        >
                            <i class="fa fa-shopping-bag fa-fw bag-icon" aria-hidden="true"></i>
                            <i class="fa fa-circle-o-notch fa-spin fa-fw spinner-icon" aria-hidden="true"></i>
                            {l s='Add to cart' d='Shop.Theme.Actions'}
                        </button>			
                        {if !$product.add_to_cart_url}
                        <button
                                class="btn btn-primary btn-lg add-to-cart"
				href="TUTAJ LINK"
                        >
                            <i class="fa fa-shopping-bag fa-fw bag-icon" aria-hidden="true"></i>
                            <i class="fa fa-circle-o-notch fa-spin fa-fw spinner-icon" aria-hidden="true"></i>
                            {l s='Zapytaj o produkt'}
                        </button>
				
			</button>
                        {/if}

                    </div>
                </div>
	        {hook h='displayAfterProductAddCartBtn' product=$product}
            </div>
        {/block}

 

Ktoś wie może jak to rozwiązać żeby ten przycisk odsyłał na jakiś tam link?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...