By krymp on
I have drupal 7 running and I am using the module Weforms - I simply just want to display the results page to the form content after a user clicks the submit button.
You can see it in action here: http://www.ithankstevejobs.com/ (please forgive me as the field is not yet styled) but after the user clicks submit, it should then post and take them to the most recent messages.
I am also looking on how to create a view for the most recent messages.
Comments
Using a content type would be
Using a content type would be more appropriate, content is generally publicly viewable (though it does not have to be) while the data collected by webform is meant to be private, for a limited set of eyes. Also, using a content type makes the view easy.
But I don't see a way I can
But I don't see a way I can create a content type with fields that submits. With webforms I can create a textfield with a submit button in a block.
You can use the "Manage
You can use the "Manage Fields" tab of any content type to add fields. You can use Form Block to place the create form in a block.
Thanks, I was able to
Thanks, I was able to accomplish this using your advice. One last question is how can I make the Text format section under the body field hidden (http://www.ithankstevejobs.com/). I think I can hide using css, but I was wondering if there is a way to just turn it off.
Same thing for the "Body (Edit Summary)" I can't seem to hide that unless I use css.
For text format try Better
For text format try Better Formats.
The way to get rid of Edit Summary is to change the field type of the content type for Body but this is an all or non choice (all content types have or don't have a summary) and only works if there is no content. One can remove the standard body and add an alternative field.