Quick View Page

I want to add the word "Back" to replace the almost invisible x button or add the another button to the bottom menu that only allows "add to cart" "add to wish list" "add to comparison list"

How can I do this

thank you

Quick view template

design/themes/THEME/templates/views/products/quick_view.tpl

Try something like

{__('close')}

(!) Not tested

Thanks e com

I'll try

eCom- tried your Tried your suggestion and got the following error

any suggestions?

Thanks

ESS parse error: failed at `{__('close')}@gridColumns: 16;` line: 214

eCom- tried your Tried your suggestion and got the following error

any suggestions?

Thanks

ESS parse error: failed at `{__('close')}@gridColumns: 16;` line: 214

Did you edit correct file? Looks like code was added to .css or .less file

ecom- I found the correct file. Do I just add it to the end or is there some section I should insert it into. Like after the last /div or before?

It depends on the place where you want to locate the button.

I would like to see it at the bottom of the window either on the same line as ADD TO Cart or under that line.

Just to be clear I am inserting-

class="ty-btn__secondary ty-btn" onclick="$('.ui-dialog-titlebar-close:visible').trigger('click');">{__('close')}

and it is going into the file-

starts at line 172

{assign var="add_to_cart" value="add_to_cart_`$obj_id`"}

{$smarty.capture.$add_to_cart nofilter}

{assign var="list_buttons" value="list_buttons_`$obj_id`"}

{$smarty.capture.$list_buttons nofilter}

{if $capture_buttons}{/capture}{/if}

{assign var="form_close" value="form_close_`$obj_id`"}

{$smarty.capture.$form_close nofilter}

{/if}

{if $smarty.capture.hide_form_changed == "Y"}

{assign var="hide_form" value=$smarty.capture.orig_val_hide_form}

{/if}

{/hook}

Or add the same butten (continue shopping) as shown in the cart.

Thank you

Milton

Try to add code between

{assign var="add_to_cart" value="add_to_cart_`$obj_id`"}
{$smarty.capture.$add_to_cart nofilter}

and

{assign var="list_buttons" value="list_buttons_`$obj_id`"}
{$smarty.capture.$list_buttons nofilter}

After adding-

{if $capture_buttons}{capture name="buttons"}{/if}
{assign var="add_to_cart" value="add_to_cart_`$obj_id`"}
{$smarty.capture.$add_to_cart nofilter}
{assign var="list_buttons" value="list_buttons_`$obj_id`"}
{$smarty.capture.$list_buttons nofilter}
The result is good-thank you very much.
Milton

You are welcome!