5707 comments found.
Hello, when I click Save, it stays in the loading line. and the old values are still to be seen but no change
Hello,
Please contact me from the support page, sending me a temporary access to the wp backend, I will debug it : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support
Hi, I just duplicated my form and I had some CSS and JS. When I preview the second form, everything looks fine – but when I use it on a page, the CSS and JS doesn’t work. I’ve tried changing the number of the form in the codes, but I cant get it to work.
Here is the URL where it doesnt work: http://18.195.189.61/priskalkulator-2/ Here it works in demo mode: http://18.195.189.61/?lfb_action=preview&form=7
Hello,
Please can you use the “reply” button for the new messages ? It allows me to follow each other more easily.
Please can you enable the option “Ajax navigation support” of the form (General settings tab) ?
Sorry, will do from now. It works fine. Also – is it possible to have more than one admin email?
Yes, by filling the wanted emails separated by commas in the “Admin email” option of the form (Email settings tab) .
Thank you. On my page I made the form into a popup window which you can see here (click “Priskalkulator” in the menu all the way to the right); http://18.195.189.61/
When you click start, the form design is weird and buttons are not aligning. Can you see why?
#estimation_popup .itemBloc > div > label {display: block !important;}
The same form shortcode souldn’t be used twice on the same page, it can create troubles in the form process .
Hi,
I don’t understand why the form on my site is different from the demo preview.
See live site here: http://18.195.189.61/priskalkulator/ And demo preview: http://18.195.189.61/?lfb_action=preview&form=2
On mobile it skews a little to the right and is not the same width/stacking. Why are they different? 
It is due to the margin of the container where you added the form shortcode. You can remove this space by adding this rule in the ”’Custom CSS rules” option of the form :
@media only screen and (max-width: 480px) {
.et_pb_row.et_pb_row_0 {
margin: 0px !important;
width: 100% !important;
}
}
Hey,
The “next” button has an ID set to it. If I want to track a customer using Google tools, how can I track each step? Is it possible to add a class to each “next” button for each step?
Hello,
The next step buttons already have unique IDs, you can see them by using your browser inspector (ex : lfb_btnNext_1 , lfb_btnNext_2 etc …) .
I only have lfb_btnNext_17. Can you check? https://easyupdate.no/priskalkulator/
No, the next step button of each step has its own id, based on the id of the step . In the mentioned form, the first one, in the step 14 is “lfb_btnNext_14”, then “lfb_btnNext_17” in the step 17 etc …
The last two steps before the final price page have the same ID on the next button. I can’t track those steps and see where a user may fall off.
Ah yes, I see it. Please can you contact me from the support page, sending me a temporary access to the backend ? I wil lfix it .
Hello, how to add access to this plugin to Editor role, not only Administrators? I installed User Roles plugin, but I can’t any capabilities from your plugin there. Thank you.
Hello,
Only admins can manage the forms, since they can contain some important informations (like Stripe keys, api keys, customers data etc …). But feel free to contact me from the support page sending me a temporary access to the wp backend, I will change that on your version .
Is it possible to set next option automatically for one input? For making quiz form I need this feature. Like to buy. Looking forward to hearing quickly.
Hello,
I received your email 1 minute ago, I replied.
Thanks for the quick and helpful reply.
Have you got my next email?
Yes, no problem, I replied.
When using the next and previous buttons are they able to be centered?
Please can you use the button “Reply”for the new messages ? It allows me to better follow each interlocutor, thanks ! It can be done by pasting these rules in the “Custom CSS rules” option of the form (tab Design) :
#estimation_popup[data-previousstepbtn="true"] .btn-next,
#estimation_popup[data-previousstepbtn="true"] .linkPrevious,
#estimation_popup[data-previousstepbtn="true"] #wpe_btnOrder {
float: none!important;
}
#lfb_bootstraped.lfb_bootstraped #estimation_popup[data-previousstepbtn="true"] #finalSlide a.linkPrevious{
display: block !important;
}
#estimation_popup[data-previousstepbtn="true"] .lfb_btnNextContainer {
text-align: center !important;
}
#estimation_popup[data-previousstepbtn="true"] .linkPrevious{
width: 220px !important;
margin: 0 auto !important;
margin-top: 12px !important;
}
Hi, is it possible to hide the progress bar until you reach a certain page? If I have questions in the start of the form, I don’t need it taking up space until the customer starts selecting products 
It can be done by pasting this code in the “Custom JS” option of the form :
jQuery(document).ready(function(){
jQuery('#estimation_popup #genPrice').addClass('lfb-hidden');
jQuery('.genSlide[data-title="My Step title"] .btn-next').click(function(){
jQuery('#estimation_popup #genPrice').removeClass('lfb-hidden');
});
});
Simply replace My Step title by the exact title of the last step where the progress bar must be hidden. It will be displayed when the user will click the “Next step” button of the target step .
Sorry, I meant price at the bottom of the page. I have progress bar to “no progress bar” and instead “show price at bottom” 
#estimation_popup [data-title="My Step title"] .lfb_totalBottomContainer,
#estimation_popup [data-title="My Step title 2"] .lfb_totalBottomContainer {
display: none !important;
}
Simply replace “My Step title” and “My Step title 2” by the exact titles of the steps where you want to hide it.
Thank you! Also, how can I overwrite the mobile stacking when 2 items side by side on desktop/tablet becomes one on top of eachother on mobile? I want to try them side by side on mobile too.
Please can you send me the url of the form ? I will give you the rule to use .
@media only screen and (max-width: 480px) {
#estimation_popup #mainPanel .genSlide .genContent .col-md-2 {
padding: 0px !important;
}
}
Thank you. Last question: Is it possible to show ”/month” on prices that are subscription activated?
jQuery(document).ready(function(){
setTimeout(function(){
jQuery('[data-showprice=1]:not([data-singleprice])').closest('.itemBloc').children('div').children('label').append('/month');
},200);
});
Hello! I am not receiving any notification emails.
Hello,
If the server doesn’t sent correctly the emails, a simple solution is to configure a smtp email account to send the messages, by using this small plugin : https://wordpress.org/plugins/easy-wp-smtp/ . It will ensure that the emails are correctly sent . Is it ok ?
Is there a Demo that shows an option to pay by Paypal or Stripe with a form??
Interesting Demo showing a Subscription to Paypal!!
Great job!
Hello,
Yes, this demo shows subscription with paypal payment at end : http://www.wordpress-estimation-payment-forms.com/demo-of-a-subscription-payment-form/
Is it possible to speed up the animation on each page? or even disable it?
Hello,
Yes, you can change the animations speed, or disable them, from the option “Animation speed” in the “Design” settings tab .
Hello guys, i have a problem with my forms. When my clients fill out the form on the website, they get a confirmation email but i do not receive anything as confirmation that someone has made a request. I need to be able to receive an email they same way the visitor does when they fills the form. Please help me with that, thank you.
Hello,
If the server doesn’t sent correctly the order to the admin email, a simple solution is to configure a smtp email account to send the messages, by using this small plugin : https://wordpress.org/plugins/easy-wp-smtp/ . It will ensure that the emails are correctly sent .
No, the problem is not with my server, all my email accounts are working fine, sending and recieving. It’s just this is not working as expected. I expected to get an email notification once someone fills out the form, but i don’t. Please help to solve that problem. Thank you/.
Yes, the order is automatically sent to the admin at end of the form (and to the customer if wanted). Please contact me from the support page, sending me a temporary access to the backend, I will debug it : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support
done. Please check
I correctly received your email, I replied.
i replied
The more variables we add the slower the software gets. It takes nearly a minute to open each item to edit it. We are using the wordpress version. Would using the stand alone version work better?
Hello,
The number of items shouldn’t slowdown the form. Please contact me from the support page sending me an export of the form, I will check it : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support
Hi, feauture suggestion: would be awesome if we could mark paid orders (via Paypal) in the backend. So that we can filter for the orders that are actually paid. In my case I need to check all my mails which orders are actually paid and that is really time consuming.
Hello,
Thank you for the suggestion. Currently, if you enable the IPN paypal option, only the verified payment will generate orders on the backend .
Hi Loopus,
Trying to make estimation and payment form use wp mail smtp but form is not being sent, can you help me fix this please?
Hello,
Yes, I correctly received and replied to your email .
Hey, We are loving the plugin! I have a question concerning the shadowing of the buttons. We have just duplicated the buttons and for some reason they have stopped becoming shadowed when selected. Is there something we should check and make sure we have enabled/disabled that could be causing an issue with this?
Hello,
Thank you ! Please can you contact me from the support page, sending me the url of the form ? I will check it : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support
Hello there and many congratulations for your innovative plugin!
I would like to know if its possible to include hidden the E&P form in a WP page and make it visible only with a button at the bottom of the page, not like a popup (modal). Is this possible?
Thank you

You can add this rule in the “Custom CSS rules” option of the form to make it invisible by default :
#estimation_popup {display: none;}
Then paste this code in the “Custom JS” option of the form to make it visible when the user clicks the button :
var buttonID = "mybuttonID";
jQuery(document).ready(function(){
jQuery('#'+buttonID).click(function(){
jQuery('#estimation_popup').slideDown();
});
});
Example of html code for the button :
<button id="mybuttonID">Open form</button>
You got it! Thank you very much!!! That’s why i rate you 5 stars!!! 
Thank you very much ! 
Been stuck for a long time now looking for demos but cant find any. Please is there a calculation that i can do that suggests, for example the time it will take to complete chosen tasks for a cleaning business. this is what i mean, example website ( https://housekeep.com/signup/quote ) the part in question is the -We recommend selecting 2.0 hours part,..... it changes according to the tasks chosen please help ASAP !!!!
You can find all the demo forms in the folder “example_data_can_be_imported” of the main zip file that can be downloaded from https://codecanyon.net/downloads .
Here is a way to do that :
- Create an hidden numberfield “Recommended hours”, enable its option “Use value as quantity” and use the option “Define quantity by calculation” to make the wanted calculation based on the selection done in the form
- Create a rich text item that shows the wanted text and use its option “Get the value of a field” to recover and display the quantity of the numberfield “Recommended hours”
Hi first of all thank you for even responding though i might not get a response i really appreciate it but i am very lost by that explanation. is there an example of this done in any of the demo forms or further clarifications you can give me please or the actual code please i beg you badly need help instantly??? i already have them forms downloaded a while ago but cant seem to find any examples
Feel free to contact me from the support page, I will send you a simple demo that shows how to do it : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support
thank you iv done that
Hi, thank you however the demo has nothing in it no content. i sent you attachment so you can see
I replied to your email .
Hi as you can see on the time stamp its been 21 days a couple days a way from a month . And where you directed me. they were not helpful at all infact they have stopped replying very unprofessional of them . i went based on what we spoke about but they were being so difficult. if you can please help me it would be great. they’ve done nothing but waste our businesses time.
i have purchased + supported unlike the majority here so please i really need your help ASAP due to time> il email you also i guess ….
Hello,
You asked for extra customizations, so I recommended you https://wpkraken.io/ . If they don’t reply to your emails, you can also find available freelances here : https://studio.envato.com/search?utf8=%E2%9C%93&search%5Bquery%5D=wordpress+customization . I replied to your new email .
Are we able to create our own variables?
Hello,
Yes, you can create hidden and preselected checkbox, enable their option “Don’t add price to total” and use the custom calculation option to make the wanted calculation . It is also possible to recover and display the price of these hidden items from a rich text item (option “Get the value of a field”), like on this demo : https://www.wordpress-estimation-payment-forms.com/credit-simulator-demonstration/
On a given product page, how can I include the current product as a factor in the estimate process please?
Hello,
There is no specific option to do that currently, sorry. The wooproducts have to be assigned to the items of the form from the backend.
hey guys, do you have a zip. file with all the templates? it will be awesome!
Hello,
Yes, all the demos are included in the main zip file of the plugin that can be downloaded from here : https://codecanyon.net/downloads You can find the file to import in the folder “example_data_can_be_imported”.
Hi I have a problem I can’t import any form. When I press the button nothing happens. But other buttons work well. I’ve done a clean reinstallation (removing from plugin folder) and still the problem…
Hello,
Please can you contact me from the support page of the plugin ? https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support . I will help you .