Easily create forms with no HTML or PHP knowledge. Questions can be made compulsory and are checked before the form is submitted. Forms can be previewed. (You can create multiple forms)
A few years ago I had a buy/sell/advertise forum on the honor system. I just asked member to donate a certain small amt to the site fund for each item sold. It was abused greatly. They sold and I recieved almost nothing.
So.... is there a way with easy forms to NOT submit post as "the member posting it", but rather as an "un-registered member", or "a chosen member ID#", mine or someone else.
or maybe even just collect the posters ID# and post it in the post, without the name and without the posters info in the postbit.
To reply they would be forced to use easyform rather than normal reply button. (I think I seen that somewhere in this mod).
That way, PM's and emails would not quite so easily over ride my knowledge of a sale.
Yes, I know they can still post in other forums or pm's, which item is theirs, but I can discourage that somewhat in the posts at least. At any rate I may get a little better portion than I was before.
Poor bananalive.... so many request, so little time.
As for the form checking the members name im not great with hooks and queries. Can you elaborate more on how to check for a real member username before the form is submitted.
Form hook before submit
PHP Code:
if ($q[8])
{
$user = $db->query_first_slave("SELECT userid FROM " . TABLE_PREFIX . "user WHERE username = '" . $db->escape_string($q[8]) . "'");
if (!$user)
{
$complete = false;
$inputerror[8] = "Invalid User";
$iqs[] = '8';
$incompleteqs[] = $qn[8];
}
}
A few years ago I had a buy/sell/advertise forum on the honor system. I just asked member to donate a certain small amt to the site fund for each item sold. It was abused greatly. They sold and I recieved almost nothing.
So.... is there a way with easy forms to NOT submit post as "the member posting it", but rather as an "un-registered member", or "a chosen member ID#", mine or someone else.
or maybe even just collect the posters ID# and post it in the post, without the name and without the posters info in the postbit.
To reply they would be forced to use easyform rather than normal reply button. (I think I seen that somewhere in this mod).
That way, PM's and emails would not quite so easily over ride my knowledge of a sale.
Yes, I know they can still post in other forums or pm's, which item is theirs, but I can discourage that somewhat in the posts at least. At any rate I may get a little better portion than I was before.
Poor bananalive.... so many request, so little time.
This isn't an ideal way to do it, but it works.
hook: before submit
1. All new threads submitted through easy forms go into moderation when logged in as a user (not when logged in as admin). I'm pretty sure I have everything set up right but I may need a set of second eyes.
2. Preview button. I get an error.
Please help.
As apparently I am the only dumb one who has this issue...bananalive can I donate to your mod or something so maybe you can take a look at my setup as to why the form goes into moderation and why my preview button creates an error. I REALLY want to use this mod. I've used the preview button on other areas and I did not get an error.
As apparently I am the only dumb one who has this issue...bananalive can I donate to your mod or something so maybe you can take a look at my setup as to why the form goes into moderation and why my preview button creates an error. I REALLY want to use this mod. I've used the preview button on other areas and I did not get an error.
Thanks,
Maria
do you still get the preview error if you disable attachments?