The words "Billing Address" appear as a sort of heading preceding all the other fields, in a larger size. I don't recall noticing that text there at all before. Can I suppress it?
Hi John, a link would help us take a look. To display an image here on the forum, it needs to be hosted somewhere online, and you display it by wrapping in the img tags. (without the spaces) [i m g]http://www.somesite.com/images/someimage.jpg[/i m g]
If something seems out of place, you may have an unclosed </div> or some other html tag in the code somewhere.
Right. My store is [url]https://www.ragandbone.ca/boxoffice/products.php[/url] But you can't see the issue until you make a purchase. If you purchase using the email payment option, you can see it. If you do so, please put test in one of the name fields!
Here's a screenshot: [img]http://www.ragandbone.ca/Images/ScreenShot-2019-09-20.png[/img]
Hi, based on that image, I think it looks correct and maybe you never noticed it. The text "Billing Address" can be changed based on an entry in the languagefile. $GLOBALS['xxBilAdd']='Billing Address';
You could change that, or remove it with an entry in your includes file. edit the text $GLOBALS['xxBilAdd']='Your Address';
OR $GLOBALS['xxBilAdd']=''; should remove it.
One problem though may be that your checkout is affected. Or anywhere that the "Billing address" text might show. So if that's a problem, you should be able to open your thanks.php page and put the entry there. Just before <?php include "vsadmin/inc/incthanks.php" ?> try - <?php $GLOBALS['xxBilAdd']=''; ?>
so it's like this <?php $GLOBALS['xxBilAdd']=''; ?> <?php include "vsadmin/inc/incthanks.php" ?>
I did place a text order on my dev site and I see the css class for the div containing that text it's - div.receiptsectionhead
so in your css file, you might try div.receiptsectionhead {display:none;}
Although the same as the languagefile change, you need to text for knock on effects elsewhere on the site, or add that css to the head of the thanks.php file only.