I think, I am not able to explain my question well.
Here it is.
As you said, I tried
Worked in one field where I put "s" in urlparam...
[cred_field field='your-field-of-interest-search' post='sprofile-searh' value='' urlparam='s' class='form-control' output='bootstrap']
What I put in another filed which is not in url
[cred_field field='where-to-study-search' post='sprofile-searh' value='' urlparam='' class='form-control' output='bootstrap']
But, where the form is displaying, there is one code $tt->name which I want to show filled in this field.
This is my real question.
Hope you got, what I am trying to say.
Here is the full code below
<style>
.form-group p{
margin:0;
padding:0;
}
</style>
[credform class='cred-form cred-keep-original']
<h4>Send a request</h4>
[cred_field field='form_messages' value='' class='alert alert-warning']
<div class="row">
<div class="form-group col-sm-4">
<label>Your Name</label>
[cred_field field='post_title' post='sprofile-searh' value='[wpv-user field="user_firstname"] [wpv-user field="user_lastname"]' urlparam='' class='form-control' output='bootstrap']
</div>
<div class="form-group col-sm-4">
<label>Your Email</label>
[cred_field field='your-email-search' post='sprofile-searh' value='[wpv-user field="user_email"]' urlparam='' class='form-control' output='bootstrap']
</div>
<div class="form-group col-sm-4">
<label>Your phone</label>
[cred_field field='your-phone-number' post='sprofile-searh' value='' urlparam='' class='form-control' output='bootstrap']
</div>
</div>
<div class="row">
<div class="form-group col-sm-4">
<label>Where to study</label>
[cred_field field='where-to-study-search' post='sprofile-searh' value='' urlparam='' class='form-control' output='bootstrap']
</div>
<div class="form-group col-sm-4">
<label>Your field of interest</label>
[cred_field field='your-field-of-interest-search' post='sprofile-searh' value='' urlparam='s' class='form-control' output='bootstrap']
</div>
<div class="form-group col-sm-4">
<label>When to study</label>
[cred_field field='when-to-study-agency' post='sprofile-searh' value='' urlparam='' select_text='--- not set ---' class='form-control' output='bootstrap']
</div>
</div>
<div class="row">
<div class="form-group col-sm-12">
<label>Your Message</label>
[cred_field field='your-message-search' post='sprofile-searh' value='' urlparam='' class='form-control' output='bootstrap']
</div>
</div>
[cred_field field='form_submit' value='Submit' urlparam='' class='btn btn-primary btn-lg' output='bootstrap']
[/credform]
Now for example at hidden link
There COURSE - TESTSEARCH & COUNTRY - AUSTRALIA
TESTSEARCH is in 1st field where I put "s" as you said and it worked
but in another field, there is country name which is "$tt->name" and there it is Australia in example, there is flag also which is using just $tt->name.png... Hope you got what I am telling actually.