Announcement

Collapse
No announcement yet.

invoice page shows and prints as one long column

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    invoice page shows and prints as one long column

    The shipping and billing info are all in one column. The Product information looks normal.

    Is there a way to fix this so the shipping and billing info are across from each other in two columns?

    Thanks

    #2
    Re: invoice page shows and prints as one long column

    Originally posted by gangadevi View Post
    The shipping and billing info are all in one column. The Product information looks normal.

    Is there a way to fix this so the shipping and billing info are across from each other in two columns?

    Thanks

    Did you recently make a change here Store Settings > Customer Fields

    This may be the reason why.

    Try reverting the template back to original Suivant

    If that does not work try using this code...

    <div class="basket-product-row">
    <p class="column whole h6">Ship To:</p>
    <address class="column whole">
    <mvt:if expr="g.Basket:ship_fname OR g.Basket:ship_lname">
    <strong>&mvte:global:Basket:ship_fname; &mvte:global:Basket:ship_lname;</strong><br />
    </mvt:if>
    <mvt:if expr="g.Basket:ship_comp">
    &mvte:global:Basket:ship_comp;<br />
    </mvt:if>
    <mvt:if expr="g.Basket:ship_addr1 OR g.Basket:ship_addr2 OR g.Basket:ship_city OR g.Basket:ship_state OR g.Basket:ship_zip OR g.Basket:ship_cntry">
    &mvte:global:Basket:ship_addr1;&nbsp;
    <mvt:if expr="g.Basket:ship_addr2">
    &mvte:global:Basket:ship_addr2;<br />
    </mvt:if>
    <mvt:if expr="( NOT ISNULL g.Basket:ship_city ) AND ( NOT ISNULL g.Basket:ship_state )">
    &mvte:global:Basket:ship_city;,
    <mvt:else>
    &mvte:global:Basket:ship_city;
    </mvt:if>
    &mvte:global:Basket:ship_state; &mvte:global:Basket:ship_zip; &mvte:global:Basket:ship_cntry;<br />
    </mvt:if>
    <mvt:if expr="g.Basket:ship_email">
    Email: &mvte:global:Basket:ship_email;<br />
    </mvt:if>
    <mvt:if expr="g.Basket:ship_phone">
    Phone: &mvte:global:Basket:ship_phone;<br />
    </mvt:if>
    <mvt:if expr="g.Basket:ship_fax">
    Fax: &mvte:global:Basket:ship_fax;<br />
    </mvt:if>
    </address>
    </div>
    <div class="basket-product-row">
    <p class="column whole h6">Bill To:</p>
    <address class="column whole">
    <mvt:if expr="g.Basket:bill_fname OR g.Basket:bill_lname">
    <strong>&mvte:global:Basket:bill_fname; &mvte:global:Basket:bill_lname;</strong><br />
    </mvt:if>
    <mvt:if expr="g.Basket:bill_comp">
    &mvte:global:Basket:bill_comp;<br />
    </mvt:if>
    <mvt:if expr="g.Basket:bill_addr1 OR g.Basket:bill_addr2 OR g.Basket:bill_city OR g.Basket:bill_state OR g.Basket:bill_zip OR g.Basket:bill_cntry">
    &mvte:global:Basket:bill_addr1;&nbsp;
    <mvt:if expr="g.Basket:bill_addr2">
    &mvte:global:Basket:bill_addr2;<br />
    </mvt:if>
    <mvt:if expr="( NOT ISNULL g.Basket:bill_city ) AND ( NOT ISNULL g.Basket:bill_state )">
    &mvte:global:Basket:bill_city;,
    <mvt:else>
    &mvte:global:Basket:bill_city;
    </mvt:if>
    &mvte:global:Basket:bill_state; &mvte:global:Basket:bill_zip; &mvte:global:Basket:bill_cntry;<br />
    </mvt:if>
    <mvt:if expr="g.Basket:bill_email">
    Email: &mvte:global:Basket:bill_email;<br />
    </mvt:if>
    <mvt:if expr="g.Basket:bill_phone">
    Phone: &mvte:global:Basket:bill_phone;<br />
    </mvt:if>
    <mvt:if expr="g.Basket:bill_fax">
    Fax: &mvte:global:Basket:bill_fax;<br />
    </mvt:if>
    </address>
    </div>
    Happie Mendenhall
    Support Technician
    Miva, Inc.

    Comment


      #3
      Re: invoice page shows and prints as one long column

      Thanks Happie, I added

      <br>
      <b>Add Gift Message</b>
      <input type="textarea" name="add_gift_message" value= "" />

      to the bottom of the Customer Fields section on the OSCT page to add a gift message box. That part works.

      Should it be somewhere else?

      Won't reverting back to the original remove the gift message option?

      I appreciate any direction you can provide.

      Comment


        #4
        Re: invoice page shows and prints as one long column

        Happie,

        I have the same problem. After changing the customer fields as we need (bill/ship to switched) all the customer info. pages get messed up. Please resolve this problem in future updates but for now, should I copy the div tags from the original one? Or is it easier to modify the Suivant version with the changes done by Miva (which I don't really know are)? If you can help out, that would be great.

        Thanks
        Omar Waheed
        http://dar-us-salam.com
        ~~~~~~~~~~~~~~~~~~
        Dar-us-Salam Publications
        Worship the Creator, not the Creations!

        Comment


          #5
          Re: invoice page shows and prints as one long column

          Check the code for the gift message itself. That might be breaking the chain.
          Best,
          Pamela

          Consultant / Developer / Trainer
          Contributing Editor to Practical Ecommerce
          Author of the Official Guides for Miva Merchant
          pamelahazelton.com

          Comment

          Working...
          X