- This topic has 3 replies, 2 voices, and was last updated 13 years, 5 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore Tweaks › Removing/Re-arranging fields in the manual checkout?
Is it possible to remove certain fields in the manual checkout page?
Can I change the order in which the fields are displayed?
How do I make a field mandatory?
I figured out how to remove the “madatory” fields but cant seem to find out where to remove the “non mandatory” ones like “Country”.
Also if I wanted to add a field and make it madatory how would I go about that?
Find the following in that file (eStore_shipping_details_view.php) and delete them:
<li>
<label for=country><?php echo ESTORE_COUNTRY; ?></label>
<input id="country" name="country" type="text" value="<?php echo $_POST['country']; ?>" required>
</li>
Adding fields will require understanding of PHP coding. If you are a developer then you should be able to add your field in the same place as where you are removing the country field from (unfortunately there is no one line instruction that I can give you for that).