Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author ulihake

    (@ulih)

    Hi bonami.

    Where do you want the information? These are custom fields for the whole basket, not for the order item table. If you want to personalize order items you have to use the Rich Guy of the plugin.

    If the custom fields are expanding the address information and you need to expand or change the shipping or billing address, I will work on that to offer more flexibility.

    Regards.
    uh

    Thread Starter bonami

    (@bonami)

    Hi Uh,

    It doesnt have to be in the order item table.

    I only need it to be in same CSS style as the rest. Now it makes this extra line a default font (times roman). It is an open extra field just for extra imformation for the customer.

    Kind regards

    Plugin Author ulihake

    (@ulih)

    Hi bonami.

    Styling of emails is problematic because the styles have to set on the tag using the style attribute to assure that the desired style shows up correctly in emails. I will have to provide configuration settings for styling to allow you to set the styles as this cannot be implemented via style sheets. I will provide a solution for this in one of the next updates.

    Regards.
    uh

    Plugin Author ulihake

    (@ulih)

    An update: For the order-received page you can add css via your style sheet.
    Example code:

    .billing_data dl {
    	width: 100%;
    }
    .billing_data dt, .billing_data dd {
    	display: inline-block;
    	width: 50%;
    }
    Thread Starter bonami

    (@bonami)

    Hi, unfortunately this didnt work. I updated the code in the extra css panel from Avada theme, is this the correct place?

    Plugin Author ulihake

    (@ulih)

    Should be. You can try to add this at the end of you style.css of your theme, to test if it works. You can also try !important to assure that there are no other style instructions that override the desired presentation:

    .billing_data dl {
    	width: 100% !important;
    }
    .billing_data dt, .billing_data dd {
    	display: inline-block !important;
    	width: 50% !important;
    }

    Please empty caches as well.
    Regards.
    uh

    Thread Starter bonami

    (@bonami)

    Hi Uh, thanks for you reply. Doesnt work unfortunately. Ive cleared cache, but still is the ‘extra opmerking’ field in default font and font-size

    Plugin Author ulihake

    (@ulih)

    Hi bonami.

    This is an example. You have to adapt it to your needs. If you place the very same code inside your css it won’t change font nor font-size. The code itself is tested and should change the presentation presenting it differently on the order-receipt page (not the email).

    Regards.
    uh

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘New billing field not in table’ is closed to new replies.