Want to show Pre-order Instead of Add to Shopping Cart

When Buy in Advance is selected in backend. the storefrom on product page shows Add to Shopping Cart just as normal and below shows a message saying this product will be available on date



But i want to show Pre - Order Button instead of Add to Shopping Cart and dont want to show any message below.



Let me know how i can do this.



Thanks

Set the avail date to the date in the future when the product will be ready and it will do this for you.

what you are trying to say? i know that already… but i am asking something different here…


[quote name='jhagg' timestamp='1346998724' post='144490']

Set the avail date to the date in the future when the product will be ready and it will do this for you.

[/quote]

[quote name='jhagg' timestamp='1346998724' post='144490']

Set the avail date to the date in the future when the product will be ready and it will do this for you.

[/quote]



Did that work for you? let us know

[quote name='cool999' timestamp='1347001499' post='144494']

what you are trying to say? i know that already… but i am asking something different here…

[/quote]



Hey,



I know what you are talking about. I need the samething. iecsp.com is working on one. Here check this post out.

Click here



But they are not sure, when it will be ready. You can also, go to they website and see it in action.



Tom

thanks for the info but how you know they are working on that?


[quote name='tom437' timestamp='1347022040' post='144510']

Hey,



I know what you are talking about. I need the samething. iecsp.com is working on one. Here check this post out.

Click here



But they are not sure, when it will be ready. You can also, go to they website and see it in action.



Tom

[/quote]

[quote name='cool999' timestamp='1347026644' post='144519']

thanks for the info but how you know they are working on that?

[/quote]



I had contact them about the addon and I was told that, they are workingh on it, but they are not sure when it will be ready.





Tom

I need it badly… i hope they provide it soon… thanks

[quote name='cool999' timestamp='1347196625' post='144624']

I need it badly… i hope they provide it soon… thanks

[/quote]

Me too

Hi



in skins/basic/customer/buttons/add_to_cart.tpl



find


{include file="buttons/button.tpl" but_id=$but_id but_text=$but_text|default:$lang.add_to_cart but_name=$but_name but_onclick=$but_onclick but_href=$but_href but_target=$but_target but_role=$but_role|default:"text"}




replace it with


{if $product.avail_since > $smarty.const.TIME}
{include file="buttons/button.tpl" but_id=$but_id but_text=$lang.pre_order but_name=$but_name but_onclick=$but_onclick but_href=$but_href but_target=$but_target but_role=$but_role|default:"text"}
{else}
{include file="buttons/button.tpl" but_id=$but_id but_text=$but_text|default:$lang.add_to_cart but_name=$but_name but_onclick=$but_onclick but_href=$but_href but_target=$but_target but_role=$but_role|default:"text"}
{/if}




and add a Language Variable “pre_order” “Pre-Order”

[quote name='projectmyst' timestamp='1354577991' post='150362']

Hi



in skins/basic/customer/buttons/add_to_cart.tpl



find


{include file="buttons/button.tpl" but_id=$but_id but_text=$but_text|default:$lang.add_to_cart but_name=$but_name but_onclick=$but_onclick but_href=$but_href but_target=$but_target but_role=$but_role|default:"text"}




replace it with


{if $product.avail_since > $smarty.const.TIME}
{include file="buttons/button.tpl" but_id=$but_id but_text=$lang.pre_order but_name=$but_name but_onclick=$but_onclick but_href=$but_href but_target=$but_target but_role=$but_role|default:"text"}
{else}
{include file="buttons/button.tpl" but_id=$but_id but_text=$but_text|default:$lang.add_to_cart but_name=$but_name but_onclick=$but_onclick but_href=$but_href but_target=$but_target but_role=$but_role|default:"text"}
{/if}




and add a Language Variable “pre_order” “Pre-Order”

[/quote]Hey



You are the BEST. Thank you soooo much for helping me.

[quote name=‘tom437’ timestamp=‘1347285815’ post=‘144692’]



Me too

[/quote]



Sorry for my late response. I posted it.