Hi,
can anyone help add some instructional text? I would like to add this text right below "Special Instructions or Order Comments" heading and above the actual text box where customers would type.
Hi,
can anyone help add some instructional text? I would like to add this text right below "Special Instructions or Order Comments" heading and above the actual text box where customers would type.
Link to this page
The link is below:
http://www.bequjuice.com/store/index...ckout_shipping
you'll probably need to log in, use dummy account:
Log In email: [email protected]
Password: zencart
It's in first step of checkout.
You would edit includes/languages/english/YOUR_TEMPLATE/checkout_shipping.php
Would you be able to offer some instruction on how to do that? Which code to insert or what to edit?
define('TABLE_HEADING_COMMENTS', 'Special Instructions or Comments About Your Order');
You would probably place your custom text here.
define('TITLE_CONTINUE_CHECKOUT_PROCEDURE', 'Continue to Step 2');
define('TEXT_CONTINUE_CHECKOUT_PROCEDURE', '- choose your payment method.');
define('TABLE_HEADING_COMMENTS', 'Special Instructions or Comments About Your Order <br />Add some more text here along with the line break. Don\'t forget to escape any apostrophes.');
Please do not PM for support issues: a private solution doesn't benefit the community.
Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.
No... not exactly...
Your text HAS to be part of the define - not "below" it...
The quickest (but "dirty") method is to do something like this:
define('TABLE_HEADING_COMMENTS', 'Special Instructions or Comments About Your Order<br /><br /><span id="mySpecialText">This sentence will be replaced by your custom text</span>');
As you have described the text within a span, which has its own ID, you can then apply a STYLE to it in your stylesheet.css file...
EG:
#mySpecialText {colour: #ff0000; font-size: 12px;}
20 years a Zencart User
Kim beat me to it !![]()
20 years a Zencart User
Yeah, I thought of that a couple minutes ago and just came back to correct it. You guys are too quick!Your text HAS to be part of the define - not "below" it...