How To move Wish list Button After Add to cart

How To move Wish list Button After Add to cart Button ?

You can do this with CSS:



/* remove wish list link */

.add-buttons-wrap .wish-link.text-button {

display: none;

}

all buttons after the add to cart you can push down with display block, maybee add a padding. example padding-top: 10px;



.product-main-info .add-buttons-wrap {





border: medium none;

display: block;

vertical-align: middle;

white-space: normal;

width: 200px;

}

Sorry I didn’t read your question correctly, i thought you wanted to remove it. :?

I can simple disable Wishlist addon, if you are not using it ;)





Valentin

[color=#808080][size=2]part of hungryweb.net[/size][/color]

I got it Just Add :





[html]{if !$hide_wishlist_button}

{include file=“addons/wishlist/views/wishlist/components/add_to_wishlist.tpl” but_id=“button_wishlist_$obj_prefix``$product.product_id” but_name=“dispatch[wishlist.add…$product.product_id]” but_role=“text”}

{/if}[/html]



to add_to_cart.tpl

[quote name=‘Vali’ timestamp=‘1380799597’ post=‘169095’]

I can simple disable Wishlist addon, if you are not using it ;)





Valentin

[color=#808080][size=2]part of hungryweb.net[/size][/color]

[/quote]



Where do you disable this addon? I did it with CSS and would obviously prefer to just disable?

[quote name='philspeak' timestamp='1381312417' post='169424']

Where do you disable this addon? I did it with CSS and would obviously prefer to just disable?

[/quote]

in Manage Add-ons just disable Wish List add-on

[quote name='meetshamee' timestamp='1380896285' post='169179']

I got it Just Add :





[html]{if !$hide_wishlist_button}

{include file=“addons/wishlist/views/wishlist/components/add_to_wishlist.tpl” but_id=“button_wishlist_$obj_prefix``$product.product_id” but_name=“dispatch[wishlist.add…$product.product_id]” but_role=“text”}

{/if}[/html]



to add_to_cart.tpl

[/quote]



Work fine, but now I have two links “add to wishlist”!

How can I remove the first one?