vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   New Posting Features - Easy Forms v4.x - Create a form or multiple forms without php or html knowledge (https://vborg.vbsupport.ru/showthread.php?t=234385)

steve71 12-27-2010 11:02 AM

I was wondering about updating as we have multiple forms. I have exported all of the forms but I assume that the update will not affect them and I will not have to import them again? I seem so recall than when you import forms it changes all of their Q field numbers that output specific fields and would require editing each form.

Also...it would be great if the option to select the location (forum ID) a form will be output was integrated as a user field so they could select it while filling out the form. This way we could just use one form for all as the only variable is the users location.

interfx 12-29-2010 08:10 PM

Is there a way to make the table output sortable by clicking on the table header title? ie. when you click on "Tell Us your Name" it will sort the output alphabetically?

https://vborg.vbsupport.ru/attachmen...5&d=1264688687

interfx 12-29-2010 08:15 PM

Quote:

Originally Posted by mobe00 (Post 2133198)
bump..any ideas here ? this is how i want it to look out when it pulls data from easy forms into a signature

Did you ever figure this out? This is a great idea!

sean.lxsm 01-01-2011 04:50 AM

Installed !
You've saved me !! haha Thanks man~

Happy New Year to Everyone 2011

steve71 01-04-2011 09:06 AM

It would be a great improvement if the user could select the output forum of an easy form.

We are using easy forms for users to advertise in different cities. Currently it requires creating one for each city. If the users could select the forum output (city) then one easy form could be used for all locations.

TeknoSounds 01-04-2011 09:35 AM

Quote:

Originally Posted by steve71 (Post 2143773)
It would be a great improvement if the user could select the output forum of an easy form.

We are using easy forms for users to advertise in different cities. Currently it requires creating one for each city. If the users could select the forum output (city) then one easy form could be used for all locations.

This feature could be of great use to me as well. Seconded.

career 01-05-2011 01:26 PM

Pls help, if possible.
How to change this variable $form[submitlimitperuser] per user?

I created new extra field in Vb for users, so only admin can edit it. For example it'll be field10.
Then for user1 i changed the value of this field to 1 and for user2 to 2 for example.
I need to know how to limit number of submitting form per user's field10.

MikeWarner 01-06-2011 05:46 PM

Quote:

Originally Posted by your24hourstore (Post 2043450)
you would have to create a plug in in admincp/plugin manager

you would put some code in it like this
Code:

if (in_array($forumid, array(5)))

      header( 'Location: http://www.hillbillygold.com/forums/misc.php?do=form&fid=1' ) ; 
 }

heres a pic of what the plug in looks like

added: hook location newthread_start you will have to edit the part that describes the forum you want to make the thread open in array(5)))

and you will have to edit the form&fid=1' one is the form number im useing all forms have their own numbers

oh yes and of course you will have to replace the www.hillbillygold.com part

I've followed this exactly, but it isn't working. Instead of going to the form, it goes to the normal new thread page.

Assuming I've inputted this correctly, is there any other reason why this might be stopped from working? i.e. setting conflict, vbseo..... etc. Many thanks.

geoff21 01-07-2011 12:54 AM

Ok this is really really slick bananalive. I'm using this for a mmo guild website and it works great for the applications.

One quick question that was probably asked in the last 51 pages...but instead of the nav bar saying "forms", where would I got to edit it to say "apply", or something to that effect?

TeknoSounds 01-07-2011 02:33 AM

Quote:

Originally Posted by geoff21 (Post 2145220)
Ok this is really really slick bananalive. I'm using this for a mmo guild website and it works great for the applications.

One quick question that was probably asked in the last 51 pages...but instead of the nav bar saying "forms", where would I got to edit it to say "apply", or something to that effect?

I imagine its in phrases for the mod

geoff21 01-07-2011 02:49 AM

Quote:

Originally Posted by TeknoSounds (Post 2145249)
I imagine its in phrases for the mod

let's for a second pretend I've had vb for say...4 days, and everythign i know about php, html, etc is what i learn in forums...phrases for the mod you say? If you don't mind, explain it to me like I'm a 4 year old :p

TeknoSounds 01-07-2011 03:26 AM

AdminCP->On the left side look for Languages and Phrases->Search in Phrases
:)

geoff21 01-07-2011 02:33 PM

Quote:

Originally Posted by TeknoSounds (Post 2145272)
AdminCP->On the left side look for Languages and Phrases->Search in Phrases
:)

Thank you very much, got it all set up :)

Sarcoth 01-07-2011 06:21 PM

Quote:

Originally Posted by bananalive (Post 1972263)
No need for a query for that, it is already cached in vBulletin userinfo

1. Create 'Custom' question
2. Use following php Code:

PHP Code:

$answer '<input class="textbox" type="text" readonly="readonly" id="q_' $formbit[id] . '" name="' $formbit[id] . '" value="' $vbulletin->userinfo[field8] . '" />'


Heya Bananalive,

I was wondering if there was a way to make this work if the profilefield was a Multiple-Selection Menu. I'm allowing the users to select up to 3 options in a particular field and I would like to have the selected ones displayed on the form I created.

Thanks in advance.

SBKTR 01-08-2011 09:18 AM

Everything was working fine with forms until I copied a form.

So now I have the original AND the copy, it's not what I wanted or needed.

Now I need to either be able to edit or delete the copy and I cannot.

I have checked and rechecked premissions, it's all set right.

Help?

steve71 01-08-2011 11:24 AM

Quote:

Originally Posted by SBKTR (Post 2145888)
Everything was working fine with forms until I copied a form.

So now I have the original AND the copy, it's not what I wanted or needed.

Now I need to either be able to edit or delete the copy and I cannot.

I have checked and rechecked premissions, it's all set right.

Help?

You must update the q fields (if you are calling up q fields) after making a copy.

Thread/ PM/ Email Title:
{q_228}

steve71 01-08-2011 11:32 AM

Quote:

Originally Posted by MikeWarner (Post 2145021)
I've followed this exactly, but it isn't working. Instead of going to the form, it goes to the normal new thread page.

Assuming I've inputted this correctly, is there any other reason why this might be stopped from working? i.e. setting conflict, vbseo..... etc. Many thanks.

You can use a conditional (FORUMDISPLAY) to direct members to a form from certain forums.


<vb:if condition="$foruminfo['forumid'] == xx">

You can also use a conditional to redirect only certain member groups.

<vb:if condition="is_member_of($bbuserinfo, 25) AND in_array($foruminfo['forumid'], array(1,2,3,10,11))">

SBKTR 01-08-2011 12:53 PM

Quote:

Originally Posted by steve71 (Post 2145911)
You must update the q fields (if you are calling up q fields) after making a copy.

Thread/ PM/ Email Title:
{q_228}

I don't have a problem with the q fields. I made a copy of one of the forms. On the COPY there is no edit or delete button to get rid of it. There is an edit/delete field on the original, NOT on the copy.

printedgear 01-08-2011 02:40 PM

I'm just not a good searcher I guess and I'm too novice at this. Can somebody direct me how to make a form I've created mandatory for a reply to a post. For example, when they click "Reply to thread" the form comes up.

I got it - I didn't click the option to show forms in the quick links. From there I found the form URL and posted it to the link in the forum setup.

printedgear 01-09-2011 12:38 AM

How can I put a button on the user's screen to export the data to excel? This would be awesome for me. Thanks!

Alisa Lindsay 01-12-2011 05:40 PM

1 Attachment(s)
Hello...

I use this mod at several forums. This is the first time I've had this issue.

I installed the mod on my new forum (4.0.8). When I used the Copy Form function, the copy will not allow me to edit or delete it. I checked all my settings in the AdminCP and they look correct. I am User #1, and in Admin user group so should have all permissions.

Help please...provided screen shot.

Best Regards...Alisa

printedgear 01-13-2011 02:48 AM

I've got my form set up, but would like to make one modification if somebody could help out. I'd like one dropdown to filter a second. For example - dropdown #1 US States filters dropdown #2 Cities in that state. Can anybody help?

Alisa Lindsay 01-14-2011 03:05 PM

I loathe bumping my own messages, but I really need help on this. Sorry.

Quote:

Originally Posted by Alisa Lindsay (Post 2148131)
Hello...

I use this mod at several forums. This is the first time I've had this issue.

I installed the mod on my new forum (4.0.8). When I used the Copy Form function, the copy will not allow me to edit or delete it. I checked all my settings in the AdminCP and they look correct. I am User #1, and in Admin user group so should have all permissions.

Help please...provided screen shot.

Best Regards...Alisa


bananalive 01-14-2011 04:45 PM

1 Attachment(s)
Quote:

Originally Posted by Alisa Lindsay (Post 2148973)
I loathe bumping my own messages, but I really need help on this. Sorry.

Quote:

Originally Posted by Alisa Lindsay (Post 2148131)
Hello...

I use this mod at several forums. This is the first time I've had this issue.

I installed the mod on my new forum (4.0.8). When I used the Copy Form function, the copy will not allow me to edit or delete it. I checked all my settings in the AdminCP and they look correct. I am User #1, and in Admin user group so should have all permissions.

Help please...provided screen shot.

Best Regards...Alisa

I think the issue might be that copied forms do not have a 'creator'. In attached file I've altered it so copied forms have the same creator as the form being copied.

bananalive 01-14-2011 04:45 PM

Quote:

Originally Posted by printedgear (Post 2148279)
I've got my form set up, but would like to make one modification if somebody could help out. I'd like one dropdown to filter a second. For example - dropdown #1 US States filters dropdown #2 Cities in that state. Can anybody help?

Sorry, not possible at the moment.

Alisa Lindsay 01-14-2011 05:01 PM

Many Thanks...Looks like that may have fixed the issue!

printedgear 01-16-2011 01:24 AM

Thanks Bananna,

Can it be modified or updated to allow a filter on the output table? For example - a dropdown on the column heading that will allow the entire table to be filtered by that value. Like a dropdown for States and when Virginia is selected, only virginia rows are shown.

Welshy2008 01-17-2011 09:45 AM

1 Attachment(s)
Hello Bananalive,

I need some help if you'd be so kind, Please?

I have entered a username section in a "Custom" section, on a form that will be e-mailed to me.

Below are some screnshots of what it looks like (THE Field is too far over to the left and Not centered like the others, and this is what I wish to do, please)...

... And the second screenshot is of my actual code entered on the Custom input.

Please let me know where I have gone wrong and how to correct it?

Many Thanks.

biancolaw 01-17-2011 04:49 PM

This addon is the greatest. This should SO be added to the retail vbulletin suite.

One question, would you know how I could add a link to the section widget to link to the forms I create? I've tried editing the vbcms_widget_sectionnavext template and adding code in there per a post from vb.com but nothing changed in the section at all.

Vowgaming 01-18-2011 12:18 PM

have browsed through all 66 pages to see if there is anyway to get a custom email sent to the person after they submited a form.

Reason for this we have used a form as a application for a clan web site.
(unregstered users can fill out form)
field 4 is email address of user

what I would like is php code for vbull to emai to filed 4 (email field)

Tried using url forward option to a seperate script to send email but can not work out how to pass the email address accross
(email.php?p={q_4}) on url to forward to does not take the data

Hendrik83 01-18-2011 02:16 PM

Hi, how can i redirect to a different url based on yes or no answer?

ErnestA 01-18-2011 06:41 PM

Is there anywhere I can see a working demo of this?

Mastar 01-18-2011 10:11 PM

I'm getting this error:

Parse error: syntax error, unexpected ':' in /home/****/public_html/forums/misc.php(89) : eval()'d code(1299) : eval()'d code on line 1

bananalive 01-19-2011 11:58 AM

Quote:

Originally Posted by Welshy2008 (Post 2150388)
Hello Bananalive,

I need some help if you'd be so kind, Please?

I have entered a username section in a "Custom" section, on a form that will be e-mailed to me.

Below are some screnshots of what it looks like (THE Field is too far over to the left and Not centered like the others, and this is what I wish to do, please)...

... And the second screenshot is of my actual code entered on the Custom input.

Please let me know where I have gone wrong and how to correct it?

Many Thanks.

Add class="textbox" before />

bananalive 01-19-2011 12:02 PM

Quote:

Originally Posted by biancolaw (Post 2150549)
This addon is the greatest. This should SO be added to the retail vbulletin suite.

One question, would you know how I could add a link to the section widget to link to the forms I create? I've tried editing the vbcms_widget_sectionnavext template and adding code in there per a post from vb.com but nothing changed in the section at all.

Are you adding html?

HTML Code:

<a href="misc.php?do=form&amp;fid=2">Link to form...</a>

bananalive 01-19-2011 12:11 PM

Quote:

Originally Posted by Vowgaming (Post 2150906)
have browsed through all 66 pages to see if there is anyway to get a custom email sent to the person after they submited a form.

Reason for this we have used a form as a application for a clan web site.
(unregstered users can fill out form)
field 4 is email address of user

what I would like is php code for vbull to emai to filed 4 (email field)

Tried using url forward option to a seperate script to send email but can not work out how to pass the email address accross
(email.php?p={q_4}) on url to forward to does not take the data

I'm not sure what you're trying to do? You can send an email out using vbmail function:
PHP Code:

vbmail($q['4'], $title$message1$from$uheaders$vbulletin->userinfo['username']); 


bananalive 01-19-2011 12:15 PM

Quote:

Originally Posted by Hendrik83 (Post 2150949)
Hi, how can i redirect to a different url based on yes or no answer?

Form Hook: Before Submit:
PHP Code:

if ($q['1']==2)
{
$form['redirecturl'] = "http://url1.com";
}
else
{
$form['redirecturl'] = "http://url2.com";


1 is the question hash

bananalive 01-19-2011 12:17 PM

Quote:

Originally Posted by Mastar (Post 2151168)
I'm getting this error:

Parse error: syntax error, unexpected ':' in /home/****/public_html/forums/misc.php(89) : eval()'d code(1299) : eval()'d code on line 1

Do you have more details?

What page?

Sarcoth 01-19-2011 08:22 PM

Bananalive, in case you missed mine, or have not gotten that far back yet:

https://vborg.vbsupport.ru/showpost....&postcount=974

Thank you.

Mastar 01-19-2011 09:05 PM

1 Attachment(s)
Quote:

Originally Posted by bananalive (Post 2151430)
Do you have more details?

What page?

I get that error above the forum on the application I created.

Also the application looks like this:


All times are GMT. The time now is 09:25 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02456 seconds
  • Memory Usage 1,855KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (1)bbcode_html_printable
  • (3)bbcode_php_printable
  • (20)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete