How/where can I edit the thank you page?

Jerry created the topic: How/where can I edit the thank you page?

Hi,

Just downloaded the free version. Once I get that
figured out I'll see what you offer for the upgrade.

Everything came together pretty well, except for
the thank you page. I can't see where to make
adjustments on that.

Please advise.

Thanks.

#26878

Please Log in or Create an account to join the conversation.


Support replied the topic: How/where can I edit the thank you page?

Dear Jerry,

Please go to your form, click on Form Options button and go to Actions after submission tab. You will see a few options. If you need to set up a "thank you" note, please select the option Custom Text and add the necessary text into the editor.

If you have your "thank you" page already set up, please choose the option URL and paste the full URL of your page in the input.

Thank you.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#26890

Please Log in or Create an account to join the conversation.


Jerry replied the topic: OK, now can I change the size of the fields?

Thanks for the help. It worked fine.

Now, I'm wondering if I can enlarge the size of the fields.

What you have is fine but doesn't exactly match the style
of my site. I'd like fields to be longer and a bit taller as well.
I know I can go longer but don't see any way to increase
the height.

Then, I'd also like to increase the size of the fonts.

Is any of this doable? If there are templates in the paid version
that will deliver the look I'm describing, let me know.

Thanks again.

Jerry

#26941

Please Log in or Create an account to join the conversation.


Support replied the topic: OK, now can I change the size of the fields?

Dear Jerry,

There are editable themes available in the pro version, surely. Here's the CSS that you can use to change the font size of the labels, input text and field height:

input[type="text"] {
    height: 33px;
    font-size: 18px;
}
.wdform-label {
    font-size: 18px;
}

Please edit the values as needed and add the code to the style.css file of your website's theme. In case they don't get applied, please add !important to the rules.
Thank you.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#26954

Please Log in or Create an account to join the conversation.


Jerry replied the topic: How/where can I edit the thank you page?

I took a screenshot of part of my page, with some questions.

Please grab a look and let me know what you think.

Thanks.

screencast.com/t/sTdYoihsT

#26959

Please Log in or Create an account to join the conversation.


Support replied the topic: How/where can I edit the thank you page?

Dear Jerry,

We are listing the answers to your questions bellow:

1. If you want to have a single-field Name input, please user Your Name field (you can edit its label).
2. For the input height please clear your browser's cache and test again.
3. Set the labels to be on top of their inputs by editing the fields and setting Field label position to Top. Please check the screenshot attached.
4. Again, as the first suggestion, there is a Phone field with single input, please enable that one instead.
5. For the single choice (radio button) problem, please give us the link to your form page and we'll suggest a CSS solution.

Thank you.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#26968
Attachments:

Please Log in or Create an account to join the conversation.


Jerry replied the topic: How/where can I edit the thank you page?

Hi,

I made some changes and it looks better.

The code to change the size of the label font worked, but the size of the fields didn't. I added important and it still didn't.

input[type="text"] {
height: 33px;
font-size: 18px;
}
.wdform-label {
font-size: 18px;
}

Is there anything else I can try to increase the size of the fields.

As well, is there code to increase the size of the captcha?

Thanks.

Other question. Does buying the paid version get me around all these issues or are they just colored backgrounds, etc?

#26989

Please Log in or Create an account to join the conversation.


Support replied the topic: How/where can I edit the thank you page?

Dear Jerry,

The pro version gives a variety of themes, which are CSS stylesheets and can be modified as needed.

For the input font size, please give us the link to your form page and we will suggest the proper CSS code.

Regarding to your question about increasing the size of the fields, height and width are the attributes you should change.

Here's the code for increasing the captcha size:

.captcha_img {
    width: 100px;
}

Thank you.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#26997

Please Log in or Create an account to join the conversation.


Jerry replied the topic: How/where can I edit the thank you page?

Thanks, the captcha code worked fine.

URL to the page:

guamtraining.com/contact

Issues:

1. I will likely put a sidebar in so I don't have to make the contact form
huge but it does need to be bigger. Thus, my request for enlarging the
fields.

2. The radio button sections don't line up with the labels.

3. The text on the labels for the radio buttons also needs to be larger.

4. I might want to put all of it into a background to make it look better
and fuller, thus my possible interest in the other version.

Thanks.

Jerry

#26999

Please Log in or Create an account to join the conversation.


Support replied the topic: How/where can I edit the thank you page?

Dear Jerry,

Thank you for the link. We're listing the corresponding answers to your questions bellow:

1. To enlarge the height of the text inputs, please try using this code:

.contactform11 input[type="text"] {
    height: 30px !important;
}

2. Regarding to the better alignment of radio buttons, please see the following:
.wdform-ch-rad-label {
    margin-top: 0px !important;
}
input[type="radio"] {
    margin-top: 0px !important;
}

3. As for the radio button label font size, you'll need this:
.wdform-ch-rad-label {
    font-size: 18px !important;
}

4. If you'll need to add a background to the form only, please use #contactform11 ID.

Thank you.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#27004

Please Log in or Create an account to join the conversation.


Jerry replied the topic: How/where can I edit the thank you page?

This is great support...thanks.

Everything worked except for two small things I noticed.

1. On the radio buttons some are different sizes. There
are five, and the top three are smaller than the last two.
Can we fix that?

2. I'm not sure what to do with the background color.
When you write, "please use #contactform11 ID," what
am I supposed to do with that?

If I'm correct, there is no way to swap out check boxes
for radio buttons, right? That is included in the paid
version?

One way or the other, this kind of service deserves to
be rewarded. I'm not sure whether it will be the paid
version of CFB or something else, but I will be buying
a product from you.

Thanks again.

Jerry

#27011

Please Log in or Create an account to join the conversation.


Support replied the topic: How/where can I edit the thank you page?

Dear Jerry,

1. The radio buttons have the same size, you can check that with a screen ruler. Here's a program that you could use: www.arulerforwindows.com/ .

2. Using the ID #contactform11 means selecting the element with that ID the following way:

#contactform11 {
    background-color: #ff0000;
}

Please change the color code as needed.

For the checkbox question, could you please clarify? Do you mean you want square boxes instead of rounds for your single choice fields?

Also, thank you for your interest in purchasing our products.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#27016

Please Log in or Create an account to join the conversation.


Jerry replied the topic: How/where can I edit the thank you page?

Hi,

I opened the contact page in Chrome and the buttons look fine.
In Firefox they look different. Strange.

Re: swapping the elements, I was wondering if it's possible to
change out the check boxes and make that a radio button item
as well. Under the paid version, is that possible?

Thanks.

#27017

Please Log in or Create an account to join the conversation.


Support replied the topic: How/where can I edit the thank you page?

Dear Jerry,

That is just default browser styles of Chrome, Firefox, we haven't modified it in the lite version. As for your second question, unfortunately we are having trouble understanding your requirement. Could you please describe more in details?

Thank you.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#27019

Please Log in or Create an account to join the conversation.


Jerry replied the topic: How/where can I edit the thank you page?

Hi,

What I trying to do was have radio buttons for
morning-afternoon-evening, rather than check
boxes.

Is it possible to delete items and add others in
the paid version?

Thanks

#27021

Please Log in or Create an account to join the conversation.


Support replied the topic: How/where can I edit the thank you page?

Dear Jerry,

Unfortunately it is not available neither in lite, nor the pro version of the plugin. If you want to add/remove fields, you need to use Form Maker. Here's its demo site: wpdemo.web-dorado.com/wp-admin/admin.php?page=manage_fm . Please feel free to test anything you'll need.

Thank you.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#27022

Please Log in or Create an account to join the conversation.


Jerry replied the topic: How/where can I edit the thank you page?

Two questions.

1. I see Contact Form Maker and Wordpress Form Maker, both at the same price.
Wordpress Form Maker seems to be an upgraded version. Is that true?

2. If I had Wordpress Form Maker, would that integrate with my free version of
Contact Form Builder and what I've already created, or does WFM have the same
email capability and I wouldn't need CFB?

Thanks.

#27026

Please Log in or Create an account to join the conversation.


Support replied the topic: How/where can I edit the thank you page?

Dear Jerry,

1. The full versions of Contact Form Maker and Form Maker plugins are identical. The difference is in their lite versions. However, Form Maker is being updated more frequently, than Contact Form Maker.

2. Form Maker has not only the same e-mail capability, but even more options in Form Options. Please feel free to test within our demo. But unfortunately Contact Form Builder forms cannot be integrated into Form Maker, since they are two different plugins.

Thank you.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#27033

Please Log in or Create an account to join the conversation.


Jerry replied the topic: How/where can I edit the thank you page?

If I understand correctly, "Wordpress" Form Maker is the one that is updated most frequently.

Thanks.

#27036

Please Log in or Create an account to join the conversation.


Support replied the topic: How/where can I edit the thank you page?

Dear Jerry,

You're correct, here's the plugin link from our site: web-dorado.com/products/wordpress-form.html .

Thank you.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#27038

Please Log in or Create an account to join the conversation.


Jerry replied the topic: How/where can I edit the thank you page?

Hi,

Just bought the WP Form Maker and I'm starting to look at it.

Rather than have labels at the left or on top, is there a way to
have label text inside of the field, which disappears once the
user begins to enter data?

I intend to enlarge the fields as discussed before and if I could
have the label text inside in a gray font color, that might work
out well.

By the way, from a graphical appeal perspective, the sample
images you had on the sales page — sample mortgage application,
etc., is the style I'd like to achieve.

Just asking, is there a ton of custom CSS that goes into that or
is there a way to access that code somewhere and then just
customize?

Thanks.

#27039

Please Log in or Create an account to join the conversation.


Support replied the topic: How/where can I edit the thank you page?

Dear Jerry,

Thank you for purchasing Form Maker. Enjoy using it!

1. Please check the screenshot attached. If you want to setup the field labels inside the fields, please firstly write the desired label inside Value if empty attribute. After you setup your form fields like that, please add the following CSS code to your form's theme:

.wdform-label {
    display: none;
}

It will hide your form's labels.

2. If you like the theme of Mortgage application form sample, please open it, go to Form Options and you will see its theme in General options tab. You can use that theme on your form by selecting it from its Form Options.

3. There are variety of themes in Form Maker > Themes section. You can modify any of them or create new ones based on the default themes (meaning you'll need to copy the styles from them).

Please also check out this playlist: www.youtube.com/playlist?list=PLnxWPiY5t...AbwFEw3Yy8BwsGV5OwPr . We are going to add new guiding videos for Form Maker every week, which you can use when setting up your forms.

Thank you.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#27043
Attachments:

Please Log in or Create an account to join the conversation.


Jerry replied the topic: How/where can I edit the thank you page?

Hi,

I didn't see a sample for the mortgage application in the 11 forms
in the package. Is there somewhere else to look?

Looking at the mortgage appl image on the sales page, nothing
I've done so far is anywhere close to that. This is why I asked if
that took a huge amount of custom CSS to produce.

I appreciate the support and getting answers, but I need more of
a ready-made solution, and when I saw that image I figured that's
what I was getting and could just customize it with my specific
fields and be done.

Without something like that I can see spending several days or a
week trying to get one form set up, and I just can't afford that.

Is there any chance you can provide me the code it took to design
that, or point me to it if it's in the plugin somewhere?

Thanks.

#27048

Please Log in or Create an account to join the conversation.


Support replied the topic: How/where can I edit the thank you page?

Dear Jerry,

Please be informed, that the Mortgage application form image is just the design we've created. But the green theme for it is Theme 03 green, so please try selecting that from Form Options > General options.

And please let us know if you need to change anything in there.
Thank you.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#27049

Please Log in or Create an account to join the conversation.


Jerry replied the topic: How/where can I edit the thank you page?

Does that design exist as a real template somewhere
or was it just an artist's rendering?

I'm trying to shave time here. I'd like to load up an
existing template that has that kind of look and style,
and then lay in the fields I need.

Is that possible?

#27050

Please Log in or Create an account to join the conversation.


Time to create page: 0.389 seconds
Powered by Kunena Forum

WORLD-CLASS SUPPORT

We are here for you every step of the way. Turn to our support with any questions you might have about our products and services. Our experienced customer care team is available to help you as fast as we possibly can.

Contact us