- This topic has 3 replies, 2 voices, and was last updated 11 years, 8 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 › Increase Size of Collect Customer Input Field
Tagged: change size
This is a useful field, but I need it to be bigger. Also the default font size is large which doesn’t help. I searched your forum, and I found instructions on how to make it 20 columns wide x 3 rows high with the following (below). I tried to apply the tweak, and it did change the size of the field and the font, but the data typed into the field did not make its way into the cart. I suspect this tip might be slightly out of date. Can you either update the following instructions or point me to another solution?
Search for the following line in the “eStore_button_display_helper.php” file:
<input type=”text” name=”custom_input” value=”” class=”eStore_text_input” />
Once you find it replace it with the following (there will be 2 occurrences so change them both):
<textarea name=”custom_input” cols=”20″ rows=”3″ /></textarea>
Can you please post a link to the page where you have a product so I can check a few things.
Please check out the 2nd half of this page for an example:
[http://www.yatjs.org/sefertorah]
I actually don’t see any fields on that page that uses the customization you mentioned in your above post.
This tweak that you followed was a little out of date so I am going to share you the new code for it.
Search for the following line in the “eStore_button_display_helper.php” file:
<input type="text" name="custom_input" value="" class="eStore_text_input eStore_collect_input" />
Change it to the following once you find it:
<textarea name="custom_input" cols="20" rows="3" class="eStore_collect_input" /></textarea>
There will be two occurrences of the above.