Jump to content

how to edit payment address detail


Recommended Posts

  • 2 weeks later...

Hi! I also tried changing that :- ( This what I have)

 

<form action="{$link->getPageLink('order-detail', true)}" method="post" class="std" id="sendOrderMessage">
        <h3>{l s='Add a message'}</h3>
        <p>{l s='Please Give us the Physical location like Road and Building to help us quickly deliver the item(s) for you.'}</p>
        <p>'Please Give us the Physical location like Road and Building to help us quickly deliver the item(s) for you.'</p>
        <p>
        <label for="id_product">{l s='Product'}</label>
            <select name="id_product" style="width:300px;">
                <option value="0">{l s='-- Choose --'}</option>
                {foreach from=$products item=product name=products}
                    <option value="{$product.product_id}">{$product.product_name}</option>
                {/foreach}
            </select>
        </p>
        <p class="textarea">
            <textarea cols="67" rows="3" name="msgText"></textarea>
        </p>
        <p class="submit">
            <input type="hidden" name="id_order" value="{$order->id|intval}" />
            <input type="submit" class="button" name="submitMessage" value="{l s='Send'}"/>
        </p>
    </form>

Link to comment
Share on other sites

on mobile folder is :-

 

{* / TO CHECK ==========================*}
    <form action="{$link->getPageLink('order-detail', true)}" method="post" class="std" id="sendOrderMessage">
        <h3 class="bg">{l s='Add a message'}</h3>
        <p>{l s='Please give us the physical address of your location like road and building for quick delivery of this product(s) Thank you.'}</p>
        <p>'Please Give us the Physical location like Road and Building to help us quickly deliver the item(s) for you.'</p>
        <fieldset>
            <label for="id_product">{l s='Product'}</label>
            <select name="id_product" style="width:300px;">
                <option value="0">{l s='-- Choose --'}</option>
                {foreach from=$products item=product name=products}
                    <option value="{$product.product_id}">{$product.product_name}</option>
                {/foreach}
            </select>
        </fieldset>
        <fieldset>
            <textarea name="msgText"></textarea>
        </fieldset>
        <input type="hidden" name="id_order" value="{$order->id|intval}" />
        <input type="submit" data-role="button" data-theme="a" name="submitMessage" value="{l s='Send'}"/>
    </form>

Link to comment
Share on other sites

×
×
  • Create New...