Code

Discussion on WordPress Contact Form Plugin/Form builder - ARForms

Discussion on WordPress Contact Form Plugin/Form builder - ARForms

Cart 10,189 sales
Recently Updated

reputeinfosystems supports this item

Supported

This author's response time can be up to 2 business days.

2679 comments found.

Hi, I want to know if I can use an specific email for each contact form. Example: CF1 send info to email1@email.com CF2 send info to email2@email2.com

Thanks in advance! GG

Hey GG,

well yes you surely can do that. on edit form page. you see button on top Email notifications. there you can set different email address for admin notification for each form.

plz let me know if there is any further difficulty.

for some reason my “manage forms” section is showing only blank page. As a result I am unable to edit anything. Its rather important that i find a solution soon!

Also..I do love this plugin. I just don’t know why it isn’t working.

still waiting for your reply :) hope you wont put negative rate for not understanding question

Yeah ill just open up a ticket

received your support request 10 minuts ago and already replied your ticket. plz go through it.

Thanks

Hi,

Is there any possiblity of using a more simple captcha?

I’ve completely checked out the plugin and it is perfect save for the huge footprint that recaptcha uses.

Regards,

Gary

Hey gary,

have good news for you, next version is coming with custom captcha, and lot of other exciting features. we ll launch it probably within a week time.

thanks

Ankur

Good news and I will be watching for it.

yes sir, new version with have custom captcha and lots of other things just launched

I reviewed the demo and would like to purchase but have a question. I have multiple aweber lists and will need to have individual forms hooked up with them. But, in the demo I only seen a place to embed one form or api… Does your plugin support individual subscriptions for each form?

Hello, has the new version came out yet?

hello,

yes new version is in testing phase. as do not want that people start getting disappointed after installing new version. hopefully by the weekend it will be released. :)

Finally New version 2.0 just went live. checkout

  • :) Great plugin for building and styling forms with no coding experience
  • :) Has some advanced features like multi-page forms
  • :) Extremely responsive support that seems to genuinely care about the user experience and squashing bugs
  • :| Relies on jQueryUi
  • :| Could be more flexible in terms of styling for those with coding experience
  • :( Inserts multiple CSS calls
  • :( Not responsive
  • :( Couldn’t get it working on my IIS test server.

I am told that the new version will solve the listed pain points, and I believe that the author is dedicated to making this plugin the best that it can be.

As for the test server issue, the author is working very hard, and has been in constant communication with me to recreate and resolve the issue on their end. It works beautifully on my public server.

As to the Non-responsive issue, most of the form is responsive and does collapse. However, there are 2 problems that I noticed immediately:

  • For multi-part forms, the heading that outlines each step and highlights the current step is a table, and it blows out the side of the form when the screen is re-sized.
  • Multiple-column fields do not resize to 100% of the form width when they stack for smaller screens. They maintain that they are in a column that is half of the width of the screen, and size accordingly, giving them the appearance of 50% size.

1024px Wide:

Screen Shot 1 - 1024px wide

320px Wide:

Screen Shot 2 - 320px wide

yes in above case,

multi step will always need enough space to fit in. as you have 6 tabs which can not fit in small area. plus we have to keep fixed bcoz, wordpress has huge number of different themes. so, in some theme it would look more weird if we do not apply few things strict. our thinking will be general rather then specific.

and regarding multi column i think we may be able to improve it in our next version.

:) thanks for your valuable feedback

Hey Rob, new version just arrived with lots of further customization available like conditional laws, fields/form level css, new checkboxes. import/export forms and lot more

Hi !

each and every time a form is submitted, it is then can be notified to an email address right ? is this in the Email Settings ?

let say when some one submit form my email blabla@gmail.com will received and email inbox. right ?

thank you

Hello,

well, yes you can setup dynamic fields too. so, user can get automatic response from your website. still if you have more difficulty in anything then we would be happy to help you. kindly contact me using message window on our profile page.

Hi when I change the styling for the label settings “Label Position” to top I find that the “Form Title & Description” are displayed. They cannot then be removed.

I need to get my forms up and running on my website asap, is there any fix for this??

well, i would not let you think that way that you lost your money. you have shown faith in our product. kindly allow a day, we will try to give you solution for your need.

I still have faith in you, the issue is I need to get a website completed a.s.a.p. and I need to be fast. I will keep popping back and having a llook to see what you have come up with. In the meantime the one that appears to suit my needs is “Form Generator” plenty more going on in the back there.

okay no problem. kindly leave me a message from our profile page so, we can contact you directly.

Hi Where do I find the settings so that the emails shows as coming from the original enquirer rather than from the Wordpress site?

I want to be able to hit reply in my received email and communicate directly with the enquirer.

Thanks for the swift response. Front end wise this plugin looks very nice, but backend wise on the way that the email is managed. This means this plugin cannot be used to initiate and then continue communication with potential customers. A shame really. Yes I have lost my money on this one but I may come back and visit when you enhance the system.

hey,

glad to inform you that in our next version we will have that facility to add dynamic from email address as well. our next version comes with many exciting features hopefully in around 10 days.

new version just arrived please checkout. lots of new exciting things are there.

Hello I really like the form demo. It is by far the best form builder I have come across for WordPress. It is very well built and has some of the most useful features you would find on a high end premium form. I did however notice that there lacked the ability for branching logic (unless I missed it in the demo?) and would be useful for several things including dynamic surveys. I was just wondering if this would be a feature in the list of upcoming updates?

Hey,

thanks for showing interest in our product. and thanks for understanding its quality. our form builder even will not include js and css in the frontend pages where its short code is not used.

regarding conditional laws etc things and many more exciting features are coming in 10-12 days in our next version.

New version just arrived. please checkout. conditional laws and lot more exciting things are available in best manner.

Hi. Do you plan to make this compatible with Bootstrap 3?

hey,

it currently support bootstrap 2.3 next version will have support of 3 too.

The column layout seems to be broken. If e.g. i have 3 text fields. The first and second shall be in a 2 column layout. The third shall sit below and spawn 100% width. I set field one and two each to 2 column. Field three to 1 column.

The first two fields are displayed in 2 columns but the label of field three is inline to the two other fields. And field 3 is displayed without padding (space) under the two others.

I have solved the issue by introducing a new css class called frm_single_column defining clear:both. In addition i have modified the source code of /arforms/core/helpers/fieldhelper.php to apply this new class to all fields which are set to 1 column. In line 2684 i have added

if( isset($field['classes']) and $field['classes'] == 'arf_1' ){
  $arf_classes = 'frm_full';
} else

The complete code block now reads

if( isset($field['classes']) and $field['classes'] == 'arf_1' ){
  $arf_classes = 'frm_full';
} else if( isset($field['classes']) and $field['classes'] == 'arf_2' and  empty($arf_column_classes['two']) ){
  $arf_column_classes['two'] = '1';
  $arf_classes = 'frm_first_half';
  unset($arf_column_classes['three']);
} else if( isset($field['classes']) and $field['classes'] == 'arf_2' and isset($arf_column_classes['two']) and $arf_column_classes['two']=='1'){
  $arf_classes = 'frm_last_half';
  unset($arf_column_classes['two']);
  unset($arf_column_classes['three']);                
} else if( isset($field['classes']) and $field['classes'] == 'arf_3' and empty($arf_column_classes['three']) ){
  $arf_column_classes['three'] = '1';
  $arf_classes = 'frm_first_third';
  unset($arf_column_classes['two']);
} else if( isset($field['classes']) and $field['classes'] == 'arf_3' and isset($arf_column_classes['three']) and $arf_column_classes['three'] == '1' ){
  $arf_column_classes['three'] = '2';
  $arf_classes = 'frm_third';
  unset($arf_column_classes['two']);    
} else if( isset($field['classes']) and $field['classes'] == 'arf_3' and isset($arf_column_classes['three']) and $arf_column_classes['three'] == '2' ){
  $arf_classes = 'frm_last_third';
  unset($arf_column_classes['three']);
  unset($arf_column_classes['two']);                        
} else {
  unset($arf_column_classes['two']);
  unset($arf_column_classes['three']);
  unset($arf_column_classes);
  $arf_classes = '';
}

This workaround works for me in my form. It is not fully tested and it might cause issues with other forms.

And some cosmetic tuning would be great, e.g. to get a nice 2 column layout the css classes should be

.arfformfield.frm_left_half, .arfformfield.frm_right_half, .arfformfield.frm_first_half, .arfformfield.frm_last_half{width:49%;}
.arfformfield.frm_left_half, .arfformfield.frm_first_half{margin-right:2%;} 

Would be great if you could give the column layout some attention with the next update.

Regards

Michael

the level of additional features we have added, we had to make some big changes. i believe future updates will not be such big jump. so, for buyers too it would be easy to understand.

hope you understand that i am trying to give you 30-40% EXTRA facility for the same price. thanks for your encouragement.

Dont worry. All is fine. I fixed the issues in the css directly.

glad you could fix it. thanks

i love it is this support Arabic ?

hello,

yes it surely supports arabic. infact admin part of plugin too has support of arabic langauge and its wpml supported. :)

hello, I need help. I installed the plugin but when I try to activate it I get this error:

Fatal error: Cannot redeclare class formhelper in /home2/mafai44/public_html/featuredleads.com/wp-content/plugins/arforms/core/helpers/formhelper.php on line 12

hello,

no problem, kindly send me your login details through messagebox of my profile page. so, can go through it and can help you asap.

Hey kyle,

your theme’s class was conflicting with ARforms’s class. i have fixed it for you. :)

I had some problems – wrote 1 email, response in-between 30 minutes!! ....than, everything got solved, really perfect assistance, I recommend at all! five stars*

spread the word martin

thanks for such kind comment martin. we will be encouraged and try to make ARForms better and better and bring new versions very fast. :)

Hello Pre purchase question, Can we put it in a widget in sidebar, cause in the demo i can’t put my sidebar width that is 260px

Thanks

yes surely you can put it in sidebar. it has lot of customization options in size. further more we are always available to help you. plz do let me know if u have more doubts.

Hello,

I can’t change the size and height of the submit button (button per se and the font size).

I’ve changed the size of submit button many times in the administration, the preview shows the changes right, but on frontend it keeps to be same size.

What would you recommend?

Thank you

Petr

i have already applied it for first form you have created on home page. check here http://www.masterenglish.us/ :)

hope you are happy with our support level.

You are the best! Thank you very much, evything is working now… I would like to use your form on another webpage with the same theme or Retro theme. Will you send me any instruction, or may I ask you for your help with the another website?

Thank you once again.

Petr

Hey petr,

well, with little knowledge of css you surely can overcome with theme related problems. but if you can not solve problem then you can always come to us. so, just make another purchase of license and start using. lot of exciting features are coming soon. :)

Feature Request

I have played around with your plugin and I like it. Please consider the following enhancements for future updates:

- allow custom classes for each field like the width settings

- allow global custom padding for input fields (at the moment you have defined 6px 13px !important so it cant be overwritten)

- allow class .frm_required to be overwritten or to be defined in the styling section (color, size, super)

- allow all font settings to be undefined (inherit from theme settings)

u seem senior technical person. so, you must have noticed that we have made this plugin such a way that when you put short code on any page then only on that page our js and css will load. not on every page of front end, which saves lot of resources. many plugins in market currently do not do such practice.

we have facility to setup global custom css. if you go general setting. you will notice that.

You are awesome. Your support is much appreciated. I was so concentrated with searching through the css files and source code that I missed the custom css settings. Thank you for the hint.

The German translation file contains some wrong language. It seems to be dutch.

hello,

thanks for leting us know. we had used google transaltor. actually another buyer from germany already so, in next version you will have better german translated copy. :)

we already working on it. In next version it will be better.

well, as i had promised. version 1.2.2 has better translation. next standard release will have some nice features which you already requested. :)

Awesome plugin and team support always here to help you in short time.

David

hey david,

thanks for all your cooperation and patience. please feel free to contact us if you have further theme compatiblity issues.

Thanks

Form doesn’t work. Is there any problem SMTP ?

well, dont worry, we surely will help.

please give me more detail on your problem. kindly message me through our profile page with your site url etc details.
by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey