-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: misspelling typo vendor contact form input field
- Loading branch information
1 parent
00d3c5d
commit 2b8df0f
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
<input type="email" name="email" value="<?php echo esc_attr( $email ); ?>" placeholder="<?php esc_attr_e( '[email protected]', 'dokan-lite' ); ?>" class="dokan-form-control" required="required"> | ||
</li> | ||
<li class="dokan-form-group"> | ||
<textarea name="message" maxlength="1000" cols="25" rows="6" value="" placeholder="<?php esc_attr_e( 'Type your messsage...', 'dokan-lite' ); ?>" class="dokan-form-control" required="required"></textarea> | ||
<textarea name="message" maxlength="1000" cols="25" rows="6" value="" placeholder="<?php esc_attr_e( 'Type your message...', 'dokan-lite' ); ?>" class="dokan-form-control" required="required"></textarea> | ||
</li> | ||
</ul> | ||
|
||
|