• Closed
  • Ivan Tomasic
    Spectator
    September 12, 2015 at 7:36 am #20609

    Hi,

    Just wondering how can I make the order notes text area bigger(height and width)?

    Also what coding would allow me to add the customer text into another document? (I would like to place it in the Woocommerce PickingPal Picking Ticket).

    My website: http://www.essentialdrinksupplies.com.au

    Thanks.

    Denzel Chia
    Moderator
    Posts: 2656
    September 12, 2015 at 9:12 am #20615

    Hi,

    Sorry, May I know where is the location of “order notes’?
    Please post me a screenshot if possible.

    As for the following.

    Also what coding would allow me to add the customer text into another document? (I would like to place it in the Woocommerce PickingPal Picking Ticket).

    You will need to engage a woocommerce affiliate developer http://www.woothemes.com/affiliated-woo-workers/ to do this customization.

    Thanks!

    Ivan Tomasic
    Spectator
    Posts: 6
    September 12, 2015 at 9:57 am #20616

    Thanks for your reply.

    It is on the checkout page when the shipping details are added in.

    View post on imgur.com

    I thought the (Theme Options> WooCommerce> Show Woocommerce Order Notes on Checkout) might of been an evolve setup.

    Ivan Tomasic
    Spectator
    Posts: 6
    September 12, 2015 at 11:00 am #20617

    I also forgot to mention, I know how to edit the Picking Pal Ticket- I’ve added some other custom text to it.

    What I don’t know is the variable name of the ‘order notes’ text so it can be inserted into the Picking Pal Ticket. Perhaps you may know?

    Denzel Chia
    Moderator
    Posts: 2656
    September 12, 2015 at 4:02 pm #20618

    Hi,

    Thank you for your reply. Sorry I overlooked that Theme Option.
    Please use the following code in Theme Options -> Custom CSS

    #order_comments {
    height: 200px !important;
    width: 100% !important;
    }

    Are you are looking for value of attribute name in textarea?

    <textarea cols="5" rows="2" placeholder="Notes about your order, e.g. special notes for delivery." id="order_comments" class="input-text " name="order_comments"></textarea>

    It’s order_comments

    Thanks!