Announcement

Collapse
No announcement yet.

Receipt Page

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

    Receipt Page

    Please view attachment so that the following makes sense...

    ...Can anyone tell me how to make Purchase Order Number: the same size as all the other text and the area where gtwrgtrwg is the same background colour as the rest.

    Any help much appreciated.
    Attached Files
    Rob Lane
    www.DATARAX.co.uk

    #2
    Have a look at Act_Order04.html in your Site1 folder. If it is not obvious why these items are different, post that section of code for others to look at.
    Bill
    www.egyptianwonders.co.uk
    Text directoryWorldwide Actinic(TM) shops
    BC Ness Solutions Support services, custom software
    Registered Microsoft™ Partner (ISV)
    VoIP UK: 0131 208 0605
    Located: Alexandria, EGYPT

    Comment


      #3
      Receipt

      Hi Bill,

      Thanks for responding. Here is a snippet from the html. The netquotevar in bold, seems to be applicable to the bit that I need to alter, the trouble is that
      I am not a designer so I can only try basic changes (which I did but with no joy).


      NETQUOTEDEL:PAYMENTPANEL
      NETQUOTEDEL:PAYMENTSENTSEPARATE
      <TR>
      <TD WIDTH="50%" BGCOLOR="NETQUOTEVAR:CHECKOUTEM" CLASS="actxsmall"><B>NETQUOTEVAR:PAYMENTMETHODTITLE:</B></TD>
      <TD WIDTH="50%" BGCOLOR="NETQUOTEVAR:CHECKOUTBG" COLSPAN=2 CLASS="actxsmall">NETQUOTEVAR:PAYMENTMETHODNAME</TD>
      </TR>
      NETQUOTEVAR:PURCHASEORDERNUMBER
      <TR>
      <TD BGCOLOR="NETQUOTEVAR:CHECKOUTEM"><B><SPAN CLASS="actxsmall">NETQUOTEVAR:CREDITCARDTYPETITLE:</SPAN></B></TD>
      <TD BGCOLOR="NETQUOTEVAR:CHECKOUTBG" CLASS="actxsmall">NETQUOTEVAR:CREDITCARDOPTIONS</TD>
      <TD BGCOLOR="NETQUOTEVAR:CHECKOUTBG" CLASS="actxsmall">&lt;&lt;&lt; NETQUOTEVAR:SELECTONE</TD>
      </TR>

      Any help appreciated
      Rob Lane
      www.DATARAX.co.uk

      Comment


        #4
        Try
        Code:
        <span class="actxsmall">NETQUOTEVAR:PURCHASEORDERNUMBER</span>
        to take care of the size issue - don't see any way at getting the colour for the second cell though.
        Bill
        www.egyptianwonders.co.uk
        Text directoryWorldwide Actinic(TM) shops
        BC Ness Solutions Support services, custom software
        Registered Microsoft™ Partner (ISV)
        VoIP UK: 0131 208 0605
        Located: Alexandria, EGYPT

        Comment


          #5
          Would it work if a new class was created in the actinic.css to include a background colour as the <td> is being generated from elsewhere? Worth a try


          Bikster
          SellerDeck Designs and Responsive Themes

          Comment


            #6
            Bill, I tried this but nothing happened. Thanks for your help though!
            Rob Lane
            www.DATARAX.co.uk

            Comment


              #7
              Hi Jont, thanks for the advise, but my knowledge of website design is limited and to me classes are what you get at school, so I wont be able to create one, because I dont know what one is (looking at how I constructed this sentence ,perhaps I should go back to school).

              Thanks for the response anyway
              Rob Lane
              www.DATARAX.co.uk

              Comment


                #8
                If a span tag wrapping the NQV had no effect, this means the entire html string including formatting is included in the code represented by the NQV.

                Unless someone pops in here and says - if you amend this bit of perl - then I would say we are stuck with what we have.

                Thinking on why the background is not shaded - is this meant to accept user data entry? So they can add their own PO number cross-reference to the receipt?
                Bill
                www.egyptianwonders.co.uk
                Text directoryWorldwide Actinic(TM) shops
                BC Ness Solutions Support services, custom software
                Registered Microsoft™ Partner (ISV)
                VoIP UK: 0131 208 0605
                Located: Alexandria, EGYPT

                Comment


                  #9
                  Hi Bill, yes when you purchase you can enter your own order ref, but its a standard actinic function, which you would have hoped would keep the same design format as on the rest of the page
                  Rob Lane
                  www.DATARAX.co.uk

                  Comment


                    #10
                    Hmm - I can understand the programmer thinking - this is an entryfield so we need to draw the customer attention to it - and using a different (non-shaded) background for a form entryfield is industry standard.

                    Just cannot understand why it would not be the first line of the table, in this case.
                    Bill
                    www.egyptianwonders.co.uk
                    Text directoryWorldwide Actinic(TM) shops
                    BC Ness Solutions Support services, custom software
                    Registered Microsoft™ Partner (ISV)
                    VoIP UK: 0131 208 0605
                    Located: Alexandria, EGYPT

                    Comment


                      #11
                      Do you think it would it be easy to move somewhere else on the receipt page, but even so it still leaves the text size issue.

                      Comment


                        #12
                        Hi,

                        Am checking on the issue with regards to the colour and the background. AS for moving it around on the page, you can do that, just move the variable over to the location you would require it to display in.

                        Kind regards,
                        Bruce King
                        SellerDeck

                        Comment


                          #13
                          Hi,

                          You will need to edit OrderScript.pl which you will find in your Site1 folder. Please make sure to make a copy of the script and backup . Open the script with an editor like notepad..

                          Look for
                          $sPaymentPanel = "<TR>

                          you will see this right below it ..

                          @Response = ACTINIC::EncodeText($::g_PaymentInfo{'PONO'});
                          $sPaymentPanel .= "<TD BGCOLOR=\"$$::g_pSetupBlob{FORM_EMPHASIS_COLOR}\"><FONT FACE=\"ARIAL\" SIZE=\"1\"><B>" .
                          ACTINIC::GetPhrase(-1, 81) . ":</B></FONT></TD><TD COLSPAN=2><FONT FACE=\"ARIAL\" SIZE=\"1\">";
                          $sPaymentPanel .= $Response[1] . "</FONT></TD>";

                          Change to

                          @Response = ACTINIC::EncodeText($::g_PaymentInfo{'PONO'});
                          $sPaymentPanel .= "<TD
                          BGCOLOR=\"$$::g_pSetupBlob{FORM_EMPHASIS_COLOR}\"><SPAN
                          CLASS=\"ACTXSMALL\"><B>" .
                          ACTINIC::GetPhrase(-1, 81) . ":</B></SPAN></TD><TD BGCOLOR=\"$$::g_pSetupBlob{FORM_EMPHASIS_COLOR}\" COLSPAN=2><FONT FACE=\"ARIAL\" SIZE=\"1\">";

                          You can choose font size on the end of this string to suite your need. Save and exit. Update your site and you should be able to see the difference.

                          Kind regards,
                          Bruce King
                          SellerDeck

                          Comment


                            #14
                            Hi Bruce,
                            I cut & pasted the changes. As a result the title Purchase Order Number: displayed at the same size as other text(when it had been bigger) which was exactly what I wanted , however, the area which displays the actual order number now has the same bgcolor as the title and there is no text.

                            Any ideas.
                            Rob Lane
                            www.DATARAX.co.uk

                            Comment


                              #15
                              Hi Bruce,

                              The background colour for the area that the order number displays in is actual
                              set by Design>Colors>Form Backgound would that make a difference to the script which has used {FORM_EMPHASIS_COLOR} for both bg colors.
                              Rob Lane
                              www.DATARAX.co.uk

                              Comment

                              Working...
                              X