Marketplace history

Real CodeCanyon questions and author answers

Browse buyer questions, pre-sale scenarios, setup issues, and direct author replies from the years when WP Cost Estimation was sold on CodeCanyon. Use this archive to see how real customers used the plugin, which integrations came up often, and how common support questions were answered.

5557 public discussion threadsPublic CodeCanyon support history
19461 messagesCustomer questions, follow-ups, and context
8679 author repliesDirect replies by loopus
78 archive pagesNewest conversations first

Public email addresses and purchase-code-shaped values are redacted. The original wording is otherwise kept as plain text so the support context remains easy to read.

Support: 2699Customization: 1536Payments: 1482PDF and email: 1275WooCommerce: 406Booking: 221Licensing: 215
Search the archive

Find a CodeCanyon question or answer

Search all 5557 public discussion threads by keyword, customer name, feature, integration, or support topic.

Type at least 2 characters to search the full archive.

Page 62 of 78

Latest archived discussions

Each thread keeps the customer question, follow-up comments, and author replies together, with the newest conversations shown first.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from sitesforchrist

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer thread
CodeCanyon source
Customer sitesforchrist

I have a minimum quantity I want to set on an item of 5 but those first 5 are free. If they select more than 5 then the price of that item should start calculating based on the quantity ($15 per item) excluding those first 5. How can I do this? This is the calculation I've tried but it's not working: 0 if(([item-11_quantity] >5) ) { (15)*([item-11_quantity]-5) }

Customer sitesforchrist

I actually figured it out. I was forgetting that I wasn't calculating the entire price but the price per item. If anyone else needs to do this type of thing this is how it would work: 0 if(([item-11_quantity] >5) ) { ([item-11_quantity] -5) * (15)/([item-11_quantity]) } With the 15 being the price per item and the 5 being how many are free. Hope this helps someone else. :) Thanks again for the great plugin!

Author loopus

Thank you :)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from glehman

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer glehman

One feature I'd like to see added is a text field for the coupon code so that when I send someone a coupon code and they enter it, it'll let them know what that coupon is good for. ie. "This coupon code is valid for 15% off your first 6 months of service." or "Welcome xyz company employee! Enjoy 10% off our services!" Thanks

Author loopus

Hello, Thanks, I note the idea .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Chasevanb

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
CodeCanyon source
Customer Chasevanb

Is there any documentation on the pricing calculation system I can take a look at before purchasing?

Author loopus

Hello, No, sorry, it's a feature I recently added, I will do a video capture soon. Here is a copy of a previous answer on how the calculation option works : Formulas use a pseudo JS code. As you can see on this screenshot : https://0.s3.envato.com/files/181139983/screen_9.png , there are two buttons “Add a value” and “Add a condition” above calculation field. The first one allowing you to select an item of your form and choose the desired attribute (price, quantity) to generate automatically the corresponding code in the calculation field. Example : [item_1_quantity] Then you can add the desired operation. Example : [item_1_price]*2 The second button opens a panel similar to the link one ( https://0.s3.envato.com/files/181139983/screen_3.png ), allowing you to create visually complex conditions. It generates a code such : if([item_1_quantity]*2 && [total_price] < 300){ ... } . The result of the calculation will be the price of the current item when the user will see it . You can also allow quantity selection using calculation .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from hellotiko

3 direct author replies in this public CodeCanyon conversation.

6 messages3 author repliesSupportCustomizationWooCommerce
CodeCanyon source
Customer hellotiko

Hi, 1. Can you share to me how the calculation/formulas work? at least the dashboard, I want to know how deep the calculation function go 2. PayPal, may I know the currency? all currencies or limited? 3. My theme is visual composer installed, may I know how to sync it? 4. I use this theme http://themeforest.net/item/urip-professional-wordpress-landing-page/11690533?s_rank=2 and use this specific layout http://worksofwisnu.com/theme-preview/urip/layout-v2/index-hero-form.html may I know how hard the styling? I mean … I want the contact form style is same as it is 5. Can I change the payment gateway from paypal to http://docs.veritrans.co.id/en/welcome/index.html Thanks

Author loopus

Hello, 1. Formulas uses a pseudo JS code. As you can see on this screenshot : https://0.s3.envato.com/files/181139983/screen_9.png , there are two buttons "Add a value" and "Add a condition" . The first one allowing you to select an item of your form and choose the desired attribute (price, quantity) to generate automatically the corresponding code in the calculation field. Example : [item_1_quantity] Then you can add the desired operation. Example : [item_1_price]*2 The second button opens a panel similar to the link one (https://0.s3.envato.com/files/181139983/screen_3.png ), allowing you to create visually complex conditions. It generates a code such : if([item_1_quantity]*2 && [total_price] The result of the calculation will be the price of the current item when the user will see it . You can also allow quantitu selection using calculation . 2. All paypal currencies are accepted for payment, you can find the list here : https://developer.paypal.com/docs/classic/api/currency_codes/ 3. You will find a "E&P Form" module in your VC modules list to easily integrate a form in a page . 4. There is a "Custom CSS" option allowing you to quickly add your own css rules to customize your form . You can give the same look as the contact form to fields and buttons using these rules : #estimation_popup .btn,#estimation_popup .form-control { height: 50px !important; border: none !important; border-radius: 6px !important; background-clip: padding-box !important; box-shadow: none !important; color: #fff !important; font-family: 'Varela Round', sans-serif !important; } #estimation_popup .form-control{ padding: 0 20px !important; background-color: rgba(255, 255, 255, 0.5) !important; font-size: 16px!important; } #estimation_popup .btn{ background-color: #f6a006!important; text-transform: uppercase!important; font-size: 20px!important; } 5. No, sorry, there is no feature to do payment with this service .

Customer hellotiko

Hi, Wow, thanks for your fast prompt 1, 3, 5. Ok, Noted 2. There is no Indonesian rupiah (my country is Indonesia), do you have any suggestion? 4. So your plugin is responsive right? 6. Can my visitor upload a file? I want an upload file field (for attachment) Thanks

Author loopus

2. You are right, paypal doesn't seem to support this currency. I see 3 possibilities : - Use the woocommerce feature (items having price must be woo products), then use a payment gateway for Woocommerce to do the payment (selected items will be added to the cart). - Assign a gravity form to the last step, and use a payment gateway for gravity (if you use Gravity feature, the form is submitted directly by Gravity and its addons) . - Maybe search for a freelance (http://studio.envato.com/search?utf8=%E2%9C%93&search%5Bquery%5D=wp+plugin+customization) to integrate your custom payment gateway to your version. 4. Yes 6 Yes, you can freely use files upload fields in your form, and choose allowed types of files and the max number of files accepted in each field. Uploaded pictures automatically show a preview . You can see it here : http://www.wordpress-estimation-payment-forms.com/demo-of-some-components/

Customer hellotiko

Hi, 4, 6. Ok Noted, so I can set the layout as static/standard/non-visual form as my theme did. Thanks for the Custom CSS too, appreciated that 2. Due to simplify the process and mitigation, I prefer to choose the Gravity Form, but just wondering what is the different between your system and Gravity Form? How to make sure that there is error during sync the fields from your system and in Gravity? I'm not sure about PayPal Payment Pro and Stripe, my business will operate in Indonesia and I hope the future clients is came from Indonesia only (so the price and any payment process will ended with Indonesian Rupiah). So which one is the best? Stripe seems cheaper than the Pro but not sure about the Indonesian rupiah stuffs Thanks

Author loopus

Hello, 2. If you assign a Gravity form to the last step, all the order will be passed to an hidden field you need to create in your Gravity form (details in documentation), and the total price to a numberfield. On gravity, you can set this numberfield as price to pay, and use the wanted plugins on the form (but the Gravity form must have only one page, as it is displayed as last step of the E&P form). For the question about Stripe, you can find accepted countries here : https://stripe.com/global .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from OLDIES_PRO

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportPDF and email
CodeCanyon source
Customer OLDIES_PRO

Hello, i just buy this plugins today and after installation i test form, system not send any data to my email and customer email. Any idea or solution?

Author loopus

Hello, Please contact me from the support tab, giving me a temporary access to the backend, I will debug it .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Tracild

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadPaymentsPDF and email
CodeCanyon source
Customer Tracild

I am interested in purchasing this plugin for a wedding venue and want to see if it is possible for visitors to fill in the options and then get a cost estimate on the screen and the estimate then emailed to the admin, but not any actual payments? We do not want to have any payment functions, just cost estimates for options selected. Thank you. Also, is a lot of coding necessary to set it up or is the back end fairly user-friendly? Thank you!

Author loopus

Hello, Of course, you can create cost estimation form without payments (you can see it on demos) . The admin (and the customer if you want) will receive it by email. You don't need coding at all to use it, just check/uncheck and fill the wanted options of your forms. Creating conditions is also done 100% visually. On backend, moving the cursor on an option, you will see more details on this feature in a tooltip.

Customer Tracild

Perfect, and thank you for the fast reply!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from thedzigner

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
CodeCanyon source
Customer thedzigner

Would it be possible to use this plugin to ask interactive questions to determine if a product is right for a customer? E.g. on a sales page the customer would answer certain questions, and the plugin would output (based on the answers) if the product is right for them?

Author loopus

Hello, No, sorry, the result can be a single price, a subscription price (or both at same time), but not a product. I note the idea, thanks .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Enrico1109

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupport
CodeCanyon source
Customer Enrico1109

When installing the plugin it gives me a message saying The package could not be installed. No valid plugins were found. What could be the issue?

Author loopus

Hello, You surely try to install the wrong zip file. Please extract the file, you will find the good plugin file, documentation and examples to import inside .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from GillianPerhaps

5 direct author replies in this public CodeCanyon conversation.

12 messages5 author repliesBuyer threadSupportLicensing
CodeCanyon source
Customer GillianPerhaps

Hi, 2 questions: 1. How to activate the plugin? I don't get any error message (but I haven't typed my license code on the website). 2. How do I set the option in a step, that you can only select 1 item? My first step, has 5 items, and I want only that you can select 1 item, and not 5.

Author loopus

Hello, 1. If you see the activation modal, simply enter your purchase code and click the button. 2. Simply use the same "group" name for the items. Only one will be selectable .

Customer GillianPerhaps

1. I don't see anything with activation. Where should I see it? On the plugins page, I can only deactive it, but I haven't activate it. 2. Thanks, it works now.

Author loopus

1. If you don't see the popup, it should be ok. If you want, you can send me a temporary access, from the support page, I will check it .

Customer GillianPerhaps

Cool, I've send the login details.

Author loopus

Thanks, well received, I replied. Everything is ok .

Customer GillianPerhaps

I don't think it's ok. Becouse I can't update the plugin. It's saying that there is an update available. Can you check once again?

Author loopus

To apply an automatic update, you need to go on the Dashboard > Updates (in wp menu) page, then select the plugin and click the button "Update plugins" . I applied it without problem .

Customer GillianPerhaps

Weird, I know how wordpress works, but I did hit the Update plugin button, unfortunatly, nothing happend.

Customer GillianPerhaps

I do see, that you have updated it, so thanks. I'll leave it for now.

Author loopus

Because you surely clicked the update button directly from the plugins page. That's why I precised you need to do it from the Updates page. Thanks .

Customer GillianPerhaps

Ah, thanks.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from loponline

3 direct author replies in this public CodeCanyon conversation.

6 messages3 author repliesBuyer threadSupportPaymentsPDF and email
CodeCanyon source
Customer loponline

Hello, First thank you very much for creating this great plugin, it seemed a good idea, but I'm a little disappointed because I have not been able to activate ... I tried to activate the plugin on two different websites (to rule out problems) and I am not able to activate it. It always gives me the same error when I want to activate the plugin: Fatal error: Can not redeclare class Mailchimp_Folders in wp-content / plugins / WP_Estimation_Form / includes / Mailchimp / Folders.php on line 3 I do not use MailChimp and I have no related plugin. Can you help me? Thank you.

Author loopus

Hello, Of course, please send me a temporary access to the backend, I will debug it . You can contact me from the support tab .

Customer loponline

Tell me an email account and send you an access. Thank you.

Author loopus

You can contact me directly from the support tab : http://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support

Customer loponline

sent!

Author loopus

fixed :)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from eli1356

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportCustomizationPDF and email
CodeCanyon source
Customer eli1356

hey http://screencast-o-matic.com/watch/cDf62I1zJB

Author loopus

Hello, I see the support page on the video, but I didn't receive your help request email yet. Please contact me from the support tab, giving me the form url, I will debug this css conflict .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from freakpower

3 direct author replies in this public CodeCanyon conversation.

6 messages3 author repliesCustomizationPaymentsPDF and email
CodeCanyon source
Customer freakpower

Hello this is really great plugin. I have question I need that I can place some text description on items in estimator - for example in some popup which appear if mouse hold on item or something like that. Is it somehow possible ? Is there also time picker ? Also will you add date picker and coupon to php version ?

Author loopus

Hello, 1. There is a description option to display a text under the items. There is also an option "Open url on click ?" allowing to open a page in a new tab (and set the focus on) when the item is clicked. 2. You can use datepickers, and dropdowns for hours. 3. I will surely add these features to the php standalone version, but it isn't planned for the moment .

Customer freakpower

Hi Thank you for replies. 1) I think I need probably more space for option description. Something about small text feld popup with scrollable text for every item. Proper item description is very important as user frequently dont know exactly what icon means and current description which appear if i hover mouse over icon in many cause is not too helpful wither. I need somehow display there for instance sentence " This service cover large hotel conference rooms with more than 500 people including lighting and conference services. Mobile floor included in porice" - some of that type description I need to have with every item. Ideally to have that scrollable txt field as you have in your demo at end of cost estimation with summary form. In ideal instance I nees such text field under icons in every step and when user select item by click on icon that text change. Is that possible ? 2) So if I understand there is not dedicated time picker where can user select time faster than if I use dropdownboxes for that ? OK I still have some questions 3) if form sended by visitor does it appear somewhere in administration so admin can review and confirm ? 4) does plugin offer good styling options which can admin change easily in administration so I can change easily, styling, form width, color, positions, text color, font size, rearrenge fields etc ? 5) does your plugin integrate with some sms plugins so admin can get sms message when form send and juser get confirmation form was received ? 6 ) does sent form appear in administration ? 7 ) Can visitor delete item from summary ? 8 ) now if visitor dont fill some required field and try send form, form doesn nothing ( so user dsont know whats wrong) Is it possible to make it way that if that happen page autoscroll to field with not filled required field or give user some feedback that he didnt fill required form ? 9 ) Is there some print button so summary of form can be printed or saved as pdf or emailed ? 10 ) your demos are not bad but do you have some really complex demo form which uses many elements and full power of your plugin I can see ? 11) can currency be switched during form filling and if yes does currency conver online using some official exchange rate ?

Author loopus

1. No 2. No 3. Yes, orders are stored in backend. No review/confirmation once submitted . 4. Yes 5. No 6. Yes 7. No 8. No 9. No 10. You can see some components on the last demo and 3 different uses (single price without payment, subscription with payment, woo commerce gift creator). You can watch the backend tutorial to see how it works and what you can do with it . 11. No, currency is defined by admin for each form.

Customer freakpower

Hi than k you for replies. a) DO you take custom jobs so you can make me that text field for more item description as custom job ? b) I think points 8 (form dont give user feedback or autoscroll to required items that user dont fill) and 9 (print final page with summary, save as pdf, send by email) ate actually very important. Its surprise for me that your plugin doesnt have it. Fact that user dont get some noticeable feedback if user dont fill some mandatory field (and because of that form cant be send) is a crucial I think as some people can think form was sent beut it wasnt or dont know why nothing happen after they click on send dorm button. Also many people will need to prin last page with summary or somehow save it ( for example in pdf) or send it somewhere by email. I think this is aklso very important. Also possibility for currency change is very handy I think... Would you think of release those functions in some update ?

Author loopus

Hello, No, sorry, I'm not available as freelance currently. Maybe you can find a free dev to create quickly a fully customized version here : http://studio.envato.com/search?utf8=%E2%9C%93&search%5Bquery%5D=wp+plugin+customization . Yes, I noted your good ideas. I will study it and will surely add these features in a next update. Thanks .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from matrixmobile

2 direct author replies in this public CodeCanyon conversation.

6 messages2 author repliesBuyer threadCustomization
CodeCanyon source
Customer matrixmobile

I can't find the form builder anywhere. I just installed the plugin.

Customer matrixmobile

Nevermind. When i manually installed it using ftp the form builder appeared.

Author loopus

:)

Customer matrixmobile

I love the form builder :) Is there any way to get rid of the Xs and checkmarks on the images? Also, can I get rid of the next step button? So that when someone clicks on one of the items it automatically goes to the next step.

Author loopus

Thanks :) 1. Simply paste this rule in the "Custom CSS rules" field of your form : #estimation_popup .icon_select {display: none !important;} 2. You simply need to use the same "group" name for your items. Only one will be selectable, and the next step button will be hidden .

Customer matrixmobile

Thank you :) and thanks for the quick response. Cheers :)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from deanjon

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadPDF and email
CodeCanyon source
Customer deanjon

Hi, how do you remove the quantity column on the email notifications ? It appears in table but i need to remove this unwanted column Also how d you blank out price on row of upload image, a default 0.00 always appear in the price column for upload image thanks

Author loopus

Hello, 1.Simply activate the option "Hide quantity column" in the "Email" tab. 2. Activate the option "Hide zero prices" in the "Email" tab.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from BrendanHop

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
CodeCanyon source
Customer BrendanHop

After checking out this plugin, seems perfect for what I need. One question I would have though is if it is possible to animate the total cost number while it slides? So it would act similar to this example: http://codepen.io/shivasurya/pen/FatiB/ I found a snippet of code and tried to plug-n-play but no cigar: $('.progress-bar-price').each(function () { var $this = $(this); jQuery({ Counter: 0 }).animate({ Counter: $this.text() }, { duration: 1000, easing: 'swing', step: function () { $this.text(Math.ceil(this.Counter)); } }); }); I also tried implementing this script: http://aishek.github.io/jquery-animateNumber/ - no luck. Any way to easily achieve this?

Author loopus

Hello, No, there is no such animation currently. I note the idea, thanks .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from paulprinttex

2 direct author replies in this public CodeCanyon conversation.

3 messages2 author repliesBuyer threadSupport
CodeCanyon source
Customer paulprinttex

Hello, there is any way to add as link condition, total quantity of various items instead of total price, this option is not on the list, some method to add ? I want to go to a certain step if a total of x items are selected in first step, the condition will be ¨total quantity¨

Author loopus

Hello, Not currently. You can create conditions based on the quantity(or price) of a specific item, or on the total price, not on total selected quantities. I'm going to add this new option .

Author loopus

Done :) I will add it in the next update. You can contact me from the support tab if you want it immediately.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Visty0137

4 direct author replies in this public CodeCanyon conversation.

7 messages4 author repliesBuyer threadSupportCustomizationPDF and email
CodeCanyon source
Customer Visty0137

Hi! One question -> How could i put the "next and previous button" under progress bar? THANKS!!

Author loopus

Hello, To do that, you need to edit the file includes/lfb-core.php, and move the line 922 (containing the btn-next button) to 587 . Then add this rule to the "Custom CSS rules" field of your form (tab design) : #estimation_popup #mainPanel .btn-next { margin-top: -80px;} #estimation_popup #mainPanel {margin-top: 80px;}

Customer Visty0137

i've just downloaded the plugin and sorry but in line 922 there isn't anything, and line 587 is if ($fullscreen) { $fullscreenCss = 'wpe_fullscreen'; } :(

Author loopus

You surely don't have the last version. Please contact me from the support tab, I will send you a custom version directly .

Author loopus

I sent you the customized version .

Customer Visty0137

Where did you send me it? Thanks!

Author loopus

To v****[email redacted]. I'm going to send it again .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from poky40

2 direct author replies in this public CodeCanyon conversation.

5 messages2 author repliesBuyer thread
CodeCanyon source
Customer poky40

Bonjour, il y aura t'il prochainement la possibilité de mettre des vidéos et audios dans le type d'objet?

Author loopus

Bonjour, Ce n'est pas prévu, mais je note l'idée, merci. Actuellement, vous pouvez ouvrir un nouvel onglet vers le (ou la page contenant le) fichier vidéo/audio en utilisant l'option "Ouvrir une url lors de la sélection?" sur un article .

Customer poky40

oui j'ai vu mais ce n'est pas pratique pour choisir parmi plusieurs vidéos ou musiques, le top serais de ne pas quitter la page et pouvoir lire les vidéo directement.

Author loopus

Entendu, c'est noté. Merci !

Customer poky40

merci a toi.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from deanjon

10 direct author replies in this public CodeCanyon conversation.

23 messages10 author repliesBuyer threadSupportCustomizationBooking
CodeCanyon source
Customer deanjon

hi the preview screen does not work and my main page appears with just all numbers in blocks at bottom Fr Sa Su 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 I have my short code set to [estimation_form form_id="2" fullscreen="true"] but the full screen don't appear like it used to... i have changed theme on website bit this should not affect the fill screen? it seems date field is conflicting with something.. don't work with theme

Author loopus

Hello, What is the used version ?(I fixed the calendar possible conflict in a previous version) Please install the last update, and if you still have these issues, contact me from the support tab giving me the form url, I will debug it .

Customer deanjon

the date selector field is overlapping my footer on theme, why is it doing this? when the form is integrated on page the date box is appearing under the footer..unwanted text , numbers... When i select a date the unwanted numbers overlapping footer dissapears. Please provide me with a fix asap.

Author loopus

Please check my previous answer .

Customer deanjon

http://muaythaigp.com/registration/ please see here and look at bottom below footer of the bug

Customer deanjon

2nd issue is full screen short code does now work, it takes me back to main page of website when a white screen should appear with form. If I can use full screen I will not have to worry about footer problem with date selector. If yu can fix full screen for me then great

Author loopus

I understood. Please read my first answer . Simply update the plugin . You can also add this rule in the "Custom css rules" field of your form (tab Design) : body > .ui-datepicker { display: none; }

Customer deanjon

same problem with full screen here , it sits behind website? it should appear white on it's own full page http://muaythaigp.com/contender-cup-registration/

Author loopus

Simply add this rule to the "Custom CSS rules" field of your fullscreen form to fix this css conflict : .td-container { position: static !important; }

Customer deanjon

OK i am uploading new version

Customer deanjon

no still same problem, i will try your fix http://muaythaigp.com/contender-cup-registration/

Author loopus

The updated fixed your calendar issue, right ? Now the css rule I wrote should fix the fullscreen conflict.

Customer deanjon

your css custom code worked but the main page appears a red line on my news static slider red vertical line appears on right :(

Author loopus

So, now the 2 mentioned issues are fixed . You talk about the slider of the main page ? I don't see any link between the slider and my plugin. (js and css files of the plugin aren't used on this page) . Can you disable the plugin to verify ?

Customer deanjon

no it's not fixed calendar issue i cannot even edit the form, your plugin won't let me add new form or edit existing... when clicking edit it does not do anything? do you have team viewer so you can see your plugin malfunctioning? Please ensure my purchased licence code is relevant to my website.

Author loopus

I don't see the calendar issue anymore on http://muaythaigp.com/registration/ . I don't use team viewer, but you can send me a temporary access to the backend from the support tab. I will debug and fix this conflict directly .

Customer deanjon

yes disabled the plugin and the red vertical line disappeared when i added your custom code of .td-container { position: static !important; } it impacted top of main page and inserted unwanted vertical red line

Author loopus

The css rule shouldn't be loaded on the main page if the shortcode is on another page. I wait your email and will debug it , thanks .

Customer deanjon

i have sent you email please reply

Customer deanjon

if i can remove the red vertical line, then all good it's a go..... the custom css fix you gave me causing just this unwanted red line

Author loopus

Yes, I received your email 1 minute ago and I replied . Please send me a temporary access to the plugin backend and I will debug it .

Author loopus

Fixed :)

Customer deanjon

loops solved my issue in 30 mins, thank you!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from 1d3alD1g1

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadWooCommerce
CodeCanyon source
Customer 1d3alD1g1

Hi! I really like your plugin. How difficult would it be to integrate the plugin to work with Woocommerce Subscriptions plugin (https://www.woothemes.com/products/woocommerce-subscriptions/) ? At the moment, the plugin doesn't have option to choose subscription products.

Author loopus

Hello, Thank you ! I don't know this plugin at all, I will study it.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from JordiSuriol

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportPayments
CodeCanyon source
Customer JordiSuriol

Support for Stripe and Deposits/Partial payments would be amazing!! I'm going to buy the plugin to send forms but please try to implement these functions.

Author loopus

Hello, Requests noted, I will surely add stripe payment soon . Thanks !

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from paulprinttex

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer thread
CodeCanyon source
Customer paulprinttex

Hi, there is a 10mb limit on upload file, how i change value ?

Author loopus

Hello, In the file includes/lfb-core.php, you need to replace the line (~1686) : $value['size'] by : $value['size'] It will fix the limit to 60mo .

Customer paulprinttex

wow, this was a fast answer, thanks !

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from pscrignoli

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
CodeCanyon source
Customer pscrignoli

Hi. Is it possible to make conditional 'redirect URL based on choices?

Author loopus

Hello, No, it isn't possible currently, the final redirection is set by admin for each form. I note the idea, thanks .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from FabioAl

3 direct author replies in this public CodeCanyon conversation.

8 messages3 author repliesBuyer threadSupport
CodeCanyon source
Customer FabioAl

It is possible to track authenticated users who fill out the forms? Thank you

Author loopus

Hello, There is no such feature currently, I will study this possibility. Thanks for the idea .

Customer FabioAl

I hope for good news :-)

Customer FabioAl

Hi, the shortcode work in the backend? Thank you

Author loopus

Hello, I think not, wordpress shortcodes work essentially in frontend posts and pages. About your previous request, I just sent a new automatic update adding Google Analytics support. You can now track all users (not specifically registered ones) actions in your forms using Google Analytics.

Customer FabioAl

You're lightning in responding! I tried, as you said, are incorporated all the steps, but the progress functionality and choice do not work. For the previous request "trace users" ok that Google Analytics trace them is very useful, but I meant the other thing: I state that in our case the forms are filled only by authenticated users are redirected (backend speech before) on a page with WP Cost Estimation, the request was: given that the user is authenticated when you open the page with the form, if the plugin could trace the user ID, to understand compiled the estimate which user is associated automatically. Congratulations for your support! Fabio

Author loopus

Thanks :) 1. I'm not sure to understand the problem, but if you have an issue, please send me the form url from the support tab, I will debug it. 2. If you want, I can customize your version to add the username in the generated order if the user is logged on wp.

Customer FabioAl

Great! Given what you say in the next few days to support ... We are implementing these days all our sales activities with your WP plugin Cost Estimation ... and we have to evaluate different situations with its form! There disrupted the activities Thanks :-)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from poky40

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer poky40

Bravo pour le nouveau live preview.

Author loopus

Merci ! :)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from costainternet

4 direct author replies in this public CodeCanyon conversation.

8 messages4 author repliesBuyer threadSupportPDF and email
CodeCanyon source
Customer costainternet

Hi, my form is not working http://costainternet.com/?lfb_action=preview&form=2 I Clicking on the "get started" button does not do anything. I have created 2 steps and a test, Please help!!

Author loopus

Hello, I received your email 30 minutes ago, and I replied immediately. Please disable the js compressor plugin or add the file assets/js/lfb_form.min.js to the exclusion list, it should fix the conflict.

Customer costainternet

Hi, did not get email. How should I add the file assets/js/lfb_form.min.js to the exclusion list?

Author loopus

It depends on the used cache plugin. If you want, send me a temporary access, I will do it. Otherwise please tell me the plugin name .

Customer costainternet

I use W3 Total Cache

Author loopus

Thanks. In Minify > advanced settings, you should find an option named "Never minify the following JS files" (https://cms-assets.tutsplus.com/uploads/users/164/posts/18303/image/13.png) . Paste this line inside : wp-content/plugins/WP_Estimation_Form/assets/js/lfb_form.min.js Then empty the cache of the plugin. Is it ok ?

Customer costainternet

Great!!!, That did it. Thanks for your help. Great plug-in

Author loopus

Thanks ! :)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from abispo

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadPDF and email
CodeCanyon source
Customer abispo

Hi, how can I export the orders list to csv or xls?

Author loopus

Hello, I received your email and replied. There is no csv export feature for orders currently. I noted your request and asked you more details on the wanted feature . Customers details can be sent to Mailchimp (email, name, address, city etc ...) and exported as .csv from Mailchimp (http://kb.mailchimp.com/lists/managing-subscribers/view-or-export-a-list ).

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from plnewton

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadSupport
CodeCanyon source
Customer plnewton

I cant seem to get this calculation to work "4" "if(([item-3_quantity] >1) ) {" "[item-15_price]*[item-3_quantity]" "}" I cant get this to display properly, if you take out all the commas you will get the formula Basically a single unit cost is $4, if the quantity of item 3 is greater than 1 then multiply the item 3 quantity by $4 When I add the above formula and save an go into the item again the use calculation box is set to no each time so I dont think it is saving

Author loopus

Hello, The formula seems correct (without apostrophes) . Can you send me a temporary access to the backend, to debug it ? You can contact me from the support tab .

Customer plnewton

message sent

Author loopus

Thanks, I replied. I updated the plugin to the last version, it should be ok now .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from poky40

3 direct author replies in this public CodeCanyon conversation.

6 messages3 author repliesBuyer threadSupport
CodeCanyon source
Customer poky40

Bonjour je souhaite intégrer le plugin dans des articles, comment faire pour que dans la commande apparaisse le nom de l'article sans créer un formulaire pour chaque articles mais un seul formulaire qui prendrais le nom de l'article pour que je sache ou a était rempli le formulaire? Cordialement Jonathan

Author loopus

Bonjour, Ce n'est possible avec le titre du formulaire, mais l'url peut être ajoutée dans un champ texte du formulaire. Voici la procédure : - Créer un champ text masqué avec pour titre "url" - Créer un "rich text" masqué - Cliquer sur le bouton "View source" de l'éditeur du rich text - Entrer le code suivant : <script> jQuery(document).ready(function(){ jQuery('input[data-title="url"]').val(document.location.href); }); </script>

Customer poky40

Bonjour je n'y arrive pas, a la fin ca me met url quantité 1

Author loopus

Bonjour, Le plugin est-il à jour ? (la colonne information a été ajoutée dans une version précédente). Si oui, vous pouvez me contacter via l'onglet support, en m'envoyant l'url du formulaire, je le vérifierai .

Author loopus

Fait :)

Customer poky40

merci beaucoup comme toujours rapide et a l'ecoute.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from plnewton

4 direct author replies in this public CodeCanyon conversation.

8 messages4 author repliesBuyer threadSupportWooCommercePDF and email
CodeCanyon source
Customer plnewton

Hi, I have just started using this and I am wondering if there is a weigh to calculate a shipping price?? There does not seem to be an option for weight so I cant do an calculations for shipping

Author loopus

Hello, No, there is no weight option currently, I note the request. A solution is to use woo products in your form, adding them to the cart at end of the form. The weight can be managed by woocommerce.

Customer plnewton

yes, I noticed the woocommerce option but we are using another shopping cart wordpress theme so the products don't show up I could possibly get it to atleast do an estimate of the shipping but I cant work out a way to create a field that I can enter a post code into and then do a calculation based on the postcode. when I create a text field the only options I get under the calculation conditions is weather or not the text field is filled in or not, there is no option for greater than equal to etc

Author loopus

Textfields hasn't price. You can do it using a dropdown for post code, and an hidden checkbox item doing the calculation (enable "is selected" option) . The calculation can be based on the selected postcode in the dropdown . The hidden checkbox "shipping price" can be displayed in summary/email .

Customer plnewton

so I would need to add all the postcodes manually?

Author loopus

Yes, because there is no weight feature currently. But the the solution you imagined also ask to enter all zip codes in the conditions. I'm not sure to understand why you don't use wooproducts in the form to directly manage it with woocommerce .

Customer plnewton

yes, woocommerce would be an easier solution but we have only just finished upgrading the site to the new layout.. Do you have any plans to add support for premium press shop theme? See here: http://www.premiumpress.com/wordpress-shop-theme/

Author loopus

Ah ok, you don't use woocommerce. I did not know this wp shop app, I will study this possibility.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from advisorn

2 direct author replies in this public CodeCanyon conversation.

3 messages2 author repliesBuyer threadCustomization
CodeCanyon source
Customer advisorn

Sorry for bother you again. With version 9.436 there's no more space between title and description in step options on mobile devices. Thank you Thomas

Author loopus

Ah yes, I see it, because used titles and descriptions are long . Please paste this rule in the "Custom CSS rules" field of your form : body #estimation_popup.wpe_bootstraped .lfb_stepDescription { top: 170px !important; padding-bottom: 78px !important; } @media only screen and (max-width:480px){ #estimation_popup.wpe_bootstraped #mainPanel .genSlide h2 { font-size: 28px !important; } } I'm going to improve it for this case . Instead of long step descriptions, you can use a "Rich text" item to show the text .

Author loopus

I just sent a new automatic update to improve this point. There is now an automatic calculation of the positions of elements, depending on the real height of the title and description.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from advisorn

3 direct author replies in this public CodeCanyon conversation.

5 messages3 author repliesBuyer threadSupportCustomization
CodeCanyon source
Customer advisorn

Hi, Awesome plugin! Unfortunately, since the last update the forms can no more be correctly displayed on mobile devices. There is no more space between the "description" in the "step options" and the Items list. Here are the forms i'm using: http://www.archilexconsulting.com/trademarks-services/countries/community-trademark-european-union/european-union-trademark-quotation/ http://www.archilexconsulting.com/trademarks-services/countries/swiss-trademark/swiss-trademark-quotation/ At the same time the items are no more displayed centered like in the previous version. Forms are better displayed on a pc monitor, but, anyway, I had to do some adjustments to make things work like in the previous version. Can you please help me make things working correctly again? Thank you in advance. Thomas

Author loopus

Hello, Thanks for reporting, I'm going to prepare a new update to fix it . Please paste this rule in the "Custom CSS rules" field of your form (tab Design) : @media only screen and (max-width: 480px) { #estimation_popup .lfb_stepDescription { padding: 0px !important; position: relative !important; top: 120px !important; margin-bottom: 48px !important; } #estimation_popup #mainPanel .genSlide .genContent { padding-top: 58px !important; } }

Author loopus

I sent the correction as automatic update and to envato. You can contact me from the support tab if you want it immediately .

Customer advisorn

Thank you very much! Now everything is working fine!

Author loopus

Thanks to you for reporting !

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Visty0137

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer Visty0137

Hi! Awesome plugin team, thanks for your work. I've a question: How can i to fix the tittle?, i mean, i want the see the tittle always, not with hover effect or after a click, just always. Thanks!

Author loopus

Hello, Thank you very much ! (but I'm not a team ;) ) Tooltips can't be static, but you can use the "description" option on the item panel to show a static text/title below each item.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from GatZ

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadSupportPDF and email
CodeCanyon source
Customer GatZ

I'm very interested in one of the last features you added: - New item option "Is a part of subscription ?"... But probably this change is too recent and that's why i can't find any example in the live demo. It would be great if you could send even just a screenshot of how it works. Does the user get two totals at the end ? Like Setup cost and Monthly fee ? Thanks

Author loopus

Hello, Yes, it is a recent feature,not yet visible on demos. I'm currently working on a new website for this plugin, I will add new demos soon. Yes, enabling subscription feature, you can use an option now named "Isn't a part of subscription" to apply a single price to specific items. The customer will get two total prices : the single price and the subscription fee. It also work with payments. There is a screenshot : http://loopus-plugins.com/screen_subscriptionSinglePrice.png

Customer GatZ

Thanks for your fast reply and for the screen! That's exactly what I need :)

Author loopus

:) I just sent an update improving the content of summary and email when the form uses single price + subscription at same time. It also adds a new calculation feature for items. It will be online in a few hours. You can contact me from the support tab if you want it immediately .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from connect5media

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer thread
CodeCanyon source
Customer connect5media

Hey :D Is it possible to run through all the steps but NOT show the price at the end page? I want the customer to make their choices and the info to be emailed but not show the final price. Thanks, Ian

Author loopus

Hello, Yes, simply enable the options "Hide the final price ?" and "Hide all prices" in the "last step" tab of your form. You can also choose to show steps in the main circle instead of price (option "Progress bar shows" in General tab) .

Customer connect5media

Perfect! Thanks again for such a quick reply!

Author loopus

Thanks :)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from connect5media

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadCustomization
CodeCanyon source
Customer connect5media

Hey - I have bought the plugin and setting up my first form. Is is possible to control the size of the images uploaded? Thanks!

Author loopus

Hello, Yes, you can find an option for that in the "Design" tab of your form .

Customer connect5media

Awesome!! Thanks for the quick reply ;)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from webaholicsteam

2 direct author replies in this public CodeCanyon conversation.

6 messages2 author repliesBuyer threadSupport
CodeCanyon source
Customer webaholicsteam

GREAT PLUGIN! thanks for adding the setup fee feature. One small issue, when I add three items with fixed cost, then add a 4th item that when checked multiplies the fixed cost by 0.66 the setup fee goes to 0. During this I have the subscription option enabled but no monthly subscription price has been added at this point.

Author loopus

Hello, Thanks :) If your 4th item is a subscription price, its calculation (apply percentage) is done on the existing subscription price, not the single prices of other items .

Customer webaholicsteam

Its not a subscription price. Try creating a one step form, then add 2 options. One should be a single item, and the other a checkbox that when checked multiplies the single cost by 0.66 and the result will be single cost goes from $200 to $0 instead of 66% of $200 like it did before. Make sure to turn subscription pricing on.

Author loopus

Thanks, I did it. The price becomes $332/month. It is correct. Can you send me the url of your form ? You can contact me from the support tab .

Customer webaholicsteam

I tested again as i described to you and it does work as expected. the difference with my setup that is not working is they are 3 grouped products and 1 checkbox with a multiply price condition. Grouped products appears to be the issue.

Customer webaholicsteam

Thanks again for quick feedback, Awesome support!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from rfmarchetti

6 direct author replies in this public CodeCanyon conversation.

13 messages6 author repliesBuyer threadSupportPDF and email
CodeCanyon source
Customer rfmarchetti

Hi, please, I dont know why, but when I insert the discount code, it repeates several times in its description - http://snag.gy/RIsPJ.jpg thanks

Author loopus

Hello, Please simply the last automatic update, I fixed this issue .

Customer rfmarchetti

sorry, I couldnt understand your answer. Is there a newer version? I downloaded the plugin 3 days ago. thanks

Author loopus

Yes, there is a new minor update to fix this specific issue on discount code. It should be online on codecanyon in a few hours, and is already available as automatic update. You should see it clicking on the menu link Dashboard > Updates from your WP backend . Select the row containing the plugin name, then click on the button "Update Plugins" . If you prefer, you can contact from the support tab, I will send you the update directly.

Customer rfmarchetti

great! its working fine now after the update. Ony one thing: the cupons gets erased from the form after some time. (before the update.) have you fixed that as well? thanks

Author loopus

The coupons are automatically deleted when their maximum number of use has been completed.

Customer rfmarchetti

yes, but I set it to ZERO

Customer rfmarchetti

(infinite)

Author loopus

Please contact me from the support tab sending me a temporary access to the backend, I will check it .

Customer rfmarchetti

Hi, I have contacted you already regarding another issue. If you can, please use the same access. thanks

Author loopus

I did it, and I now wait your reply by email, thanks .

Customer rfmarchetti

Hello, I havent recieved any of your emails. My email is [email redacted] - thanks

Author loopus

Yes, that's the email where I sent the message with the customized version. I sent it again .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from rfmarchetti

9 direct author replies in this public CodeCanyon conversation.

23 messages9 author repliesBuyer threadSupportCustomizationPDF and email
CodeCanyon source
Customer rfmarchetti

Hi, great plugin! please, I would like to know how to work some things: 01- title and description of the step: stop the bottom to top fading and slide and style it to have a smaller font - http://snag.gy/jSGvJ.jpg 02- have the item's title fixed above the item and stop the appearence only on rollover - http://snag.gy/zim9f.jpg 03- hide the X icon of all items - http://snag.gy/ILNcC.jpg 04- have the item's title fixed, not appearing on rollorver - http://snag.gy/bymyk.jpg 05- is it possible to have all the item's quantity showing all the time, not only after clicking the item? - http://snag.gy/R0gmp.jpg 06- is it possible to stop the title rollover of certain items only, such as this one? http://snag.gy/5Qpog.jpg 07- the cupon validation button is a little bit out of place - http://snag.gy/x2A9m.jpg thanks

Author loopus

Hello, 1. You can't change title animation. To change the font size, you can use this rule in the "Custom CSS rules" field of your form (tab Design) : #estimation_popup h1 { font-size: 28px !important;} 2. No, but you can use the item description option to do that. 3. With this rule : #estimation_popup span.icon_select { display: none !important} 4-5-6. No, there is no option for that. 7. Please send me the url of the form, I will give you the rule to correct it .

Customer rfmarchetti

Hello, thanks for your answers. How to style font size of the description please?

Author loopus

For steps descriptions : #estimation_popup .lfb_stepDescription {font-size: 20px !important;} For items descriptions : #estimation_popup .itemDes {font-size: 16px !important;}

Customer rfmarchetti

great, thanks! just the code for the title's font size didnt change it: #estimation_popup h1 { font-size: 28px !important;} thanks

Customer rfmarchetti

and this is the url of my form so you can see the alignment of the cupon button: http://sapatinhodebronze.com.br/2016/?lfb_action=preview&form=1 thanks

Author loopus

Please try this : #estimation_popup h2 {font-size: 28px !important;} #estimation_popup #lfb_couponBtn { position: relative; top: 13px; margin-left: 8px; }

Customer rfmarchetti

great, thanks! and what would be the alternative code to change the title's size, the one you gave me didnt work: #estimation_popup h1 { font-size: 28px !important;}

Customer rfmarchetti

hi, sorry! now I see that the code #estimation_popup h2 {font-size: 30px !important;} works fine for the title. thanks for the fast support ;)

Customer rfmarchetti

Please, now the descriptions's titles have the same color of the row's background color (pink). Those titles were white before, I dont know what changed. - http://snag.gy/KQ7Bm.jpg - and this is my design tab configuration: http://snag.gy/yqJ2s.jpg - maybe a css would fix this. thanks

Author loopus

Can you send me the url of the form ?

Customer rfmarchetti

Hello, I thinkg I understand why. My theme makes all text pink, the same pink as the background. And this css of my theme rules over the plugin. I think that if we can remove the of the title in the description of the order, it will be white again. this is my page: http://sapatinhodebronze.com.br/2016/?page_id=6490 and this is the preview of the form, that works fine: http://sapatinhodebronze.com.br/2016/?lfb_action=preview&form=1 thanks

Customer rfmarchetti

SORRRY, MY CODE GOT ERASED HERE ---- I thinkg I understand why. My theme makes all "STRONG" text colored pink, the same pink as the background. And this css of my theme rules over the plugin. I think that if we can remove the "STRONG" of the title in the description of the order, it will be white again. this is my page: http://sapatinhodebronze.com.br/2016/?page_id=6490 and this is the preview of the form, that works fine: http://sapatinhodebronze.com.br/2016/?lfb_action=preview&form=1 thanks

Customer rfmarchetti

Hi, my theme has a css that makes all "strong" text pink and it rules even in the plugin. I think this is the issue. If I can make the description's titles not bold it will appear white. If you see the form in my theme the title is pink (http://sapatinhodebronze.com.br/2016/?page_id=6490) but if you see the form in the preview page, it is fine: http://sapatinhodebronze.com.br/2016/?lfb_action=preview&form=1 thanks

Author loopus

You can use this rule : #estimation_popup .sfb_summaryStep strong {color: #FFF !important;}

Author loopus

Please can you stop to create new comments for each question ? Please use the button "Reply" instead, thanks .

Customer rfmarchetti

Sure! Please, I noticed that the total price is showing wrong. If you do the math of all the items it doesnt match the total price, that is always bigger. Another thing, after you click the NEXT step in the form, it scrolls the page a little bit. After 2 or 3 steps the page gets too much scrolled. Please take a look: http://sapatinhodebronze.com.br/2016/?page_id=6490 thanks

Author loopus

Please contact me from the support tab sending me a temporary access to the backend, I will test and debug it .

Customer rfmarchetti

Please, how to remove the grey effect after clicking an item? thanks

Author loopus

Using this css rule : #estimation_popup.wpe_bootstraped .selectable.checked .img { -webkit-filter: none !important; -moz-filter: none !important; -ms-filter: none !important; -o-filter: none !important; filter: none !important; }

Customer rfmarchetti

thanks, but it didnt take effect. the grey filter still applies. I have sent the form. thanks ;)

Customer rfmarchetti

Please, is it possible not to show the "Succed text" at the end of the form and redirect the user to the url defined imediatelly after the form submission? It takes to long for the redirection. thanks

Author loopus

I replied your email and wait your answer, thanks .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from nghanwei

4 direct author replies in this public CodeCanyon conversation.

8 messages4 author repliesPaymentsPDF and email
CodeCanyon source
Customer nghanwei

HI, is there a demo available before purchase?

Author loopus

Hello, - Yes, you can find demos here : http://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/full_screen_preview/7818230 - And a video preview of the backend here : https://www.youtube.com/watch?v=OtpvjM7vJ4M (There were many new features and improvements since this video, but it allows you to see how the backend works.) - You can also find screenshots clicking on the "Screenshots" button on the main page .

Customer nghanwei

Went through the suggested but did not see any Discount coupon codes management?

Author loopus

Yes, it isn't in the video because it is a recent feature. You can see it on screenshots : https://0.s3.envato.com/files/178406626/screen_6b.png https://0.s3.envato.com/files/178406626/screen_01.png

Customer nghanwei

Hi Loopus , the 2nd link is not working. What type of setting can be set? Flat rate or Percentage? Is there a duplicate function on discount code, after clicking it will create a discount code with similar features except for the code itself. Can i directly email it to a person?

Author loopus

Strange, the two links work for me. No, there is no duplicate or direct email feature for discount codes currently .

Customer nghanwei

Its working not, was a FTP error when i tried it earlier. Can i see what discount code was applied if they order through the form.

Author loopus

Yes, you see the coupon code in the order (received by email and stored in logs) .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from rfmarchetti

3 direct author replies in this public CodeCanyon conversation.

8 messages3 author repliesBuyer threadCustomization
CodeCanyon source
Customer rfmarchetti

Hello, please, is possible to reduce the space between the title and the items and also between the items and the "next" button?- http://snag.gy/y26gh.jpg thanks

Author loopus

Hello, Simply use this rule in the "Custom CSS rules" field of your form (tab Design) : #estimation_popup .itemBloc {margin-top: 8px !important;margin-bottom: 8px !important;} Please use the button "Reply" for your different messages.

Customer rfmarchetti

great. thanks! it worked perfectly. And, please, how to reduce the space below the "go back" button and the end of the plugin? - http://snag.gy/TbVl3.jpg

Author loopus

Using this rule : #estimation_popup {padding-bottom: 8px !important; }

Customer rfmarchetti

thanks, but it didnt seem to take effect. please see here: http://sapatinhodebronze.com.br/2016/?page_id=6490

Customer rfmarchetti

thanks, but it didnt seem to take effect, please see: http://sapatinhodebronze.com.br/2016/?page_id=6490

Author loopus

It works, you can reduce again the space with this rule : #estimation_popup #mainPanel {padding-bottom: 0px !important;}

Customer rfmarchetti

great thanks

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from burstx

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomization
CodeCanyon source
Customer burstx

By default the tool is centered. Is it possible to easily align everything to the left?

Author loopus

Hello, You can do it using this rule in the "Custom CSS rules" field of your form (tab Design) : #estimation_popup .row {text-align: left !important;}

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ubuyi5

3 direct author replies in this public CodeCanyon conversation.

7 messages3 author repliesBuyer threadSupportCustomizationPayments
CodeCanyon source
Customer ubuyi5

Hi loopus, Can you try to make some improvement for the type "File field"? Many of my customers upload photos to me using this function. But in the final, their "photos" become "Oops! That page can’t be found." I know the files will not be uploaded before they click "place order" button. Can you try to make some changes, for example, upload files before they click "place order" button. And show 1-100% to make sure files are uploaded to the server.

Author loopus

Hello, I note the idea to load files before the end of the form, thanks. But you shouldn't have this issue with uploaded files. Is the plugin updated ? Please contact me from the support tab, giving me the url of the form, I will check it .

Customer ubuyi5

The plugin is up-to date Try this http://gss.ubuyi5.com/ig

Customer ubuyi5

Sorry, this is the test form: http://gss.ubuyi5.com/test/

Author loopus

Thanks, it seems to upload correctly the files from the form. As I can't see logs and received admin email, can you send me an export of the form and one of the files with which you had this problem ? I will test it on my side . There is a css code to paste in the "Custom CSS rules" field of your form (tab Design), to fix the css issues on the page : #estimation_popup .row {float: none!important; } #estimation_popup .progress-bar {position: relative; z-index: 99;} #estimation_popup #lfb_couponBtn { position: relative; top: 12px; margin-left: 8px;} #estimation_popup .progress-bar-price { font-size: 16px !important; }

Customer ubuyi5

Sorry..I don't know how to send an email to you, but can you try to upload these 2 photos again? (with the same file name) http://gss.ubuyi5.com/wp-content/uploads/user_uploads/lmansze2/image.jpeg http://gss.ubuyi5.com/wp-content/uploads/user_uploads/iphone6/image2.jpg

Author loopus

Thanks, the files work correctly on my side, they are correctly uploaded. You can contact me from here : http://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support I will reply, and you can send me the export of the form .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from abhishek_n_anand

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesSupportCustomization
CodeCanyon source
Customer abhishek_n_anand

Hello, I m using an option where user can select the quantity using Enable quantity choice ?. The icons which shows above the image, I want show them below the image. when i do it by css the icons stop working.can I change (+)(-) icons to sliding scale and after that can i make them below image without overlapping the image. Can you help me in this? Thanks in advance

Author loopus

Hello, For support requests, please contact from the support tab, using your buyer account.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from FabioAl

3 direct author replies in this public CodeCanyon conversation.

5 messages3 author repliesBuyer threadSupportPDF and email
CodeCanyon source
Customer FabioAl

Hi, in the order summary sent to the customer by email, at the end of the order if you use a coupon code, the same appears repeatedly, how can you hide it? example: discount (CODECOUPON) (CODECOUPON) (CODECOUPON) (CODECOUPON) (CODECOUPON) (CODECOUPON) (CODECOUPON) (CODECOUPON): - € 50.00

Author loopus

Hello, Are you sure the plugin is updated ? What is the used version ?

Customer FabioAl

9.421

Author loopus

Thanks. Please contact me from the support tab, telling me the url of the form, I will debug it .

Author loopus

Thank you, I found and fixed the issue. I sent a correction as automatic update .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from YipXyz

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer YipXyz

Hi Great Plugin, after sales question. I need to be able to change the title of the last step. Now he is always taking the title from step name. I asked this few weeks ago but not possible... has it been updated yet? And if i pay extra for this feature something we can get done? Thanks

Author loopus

Hello, You can freely change the last step title from settings (in "Last step" tab), changing the text in the "Last step title" option.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from rfmarchetti

2 direct author replies in this public CodeCanyon conversation.

5 messages2 author repliesBuyer threadSupportCustomization
CodeCanyon source
Customer rfmarchetti

Hello, that is great and I think it will solve my problem helping my customer to buy my product. Please, tell me: - is it compatible with Jupiter theme (sold here at envato)? - is it compatible with visual composer? and the most important: My partners dont understant a thing about all this. I would need to show them the process working with our product so they can visually see it on action. Would you provide me a demo access in YOUR wp install so I can create one demo form for them to see it working? That would deftnelly help me convice them this is our best choice. thanks

Author loopus

Hello, 1. Yes, it works with any theme 2. Yes, it is compatible with VC 3. No, sorry, I can't give you access to my wp installation, but you can find a video trailer, a video tutorial, a written tutorial, screenshots and 3 different demos on the plugin page. Maybe it can help .

Customer rfmarchetti

ok, thanks. I forgot to ask if I can hide the price/process bar at the top. that is not important for me and will confuse my client (really old ladies). thanks

Author loopus

Yes, simply pasting this rule in the "Custom CSS rules" field of the form (in tab "Design") : #estimation_popup #genPrice {display: none !important;}

Customer rfmarchetti

great! thanks

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from oxygengraphics

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer oxygengraphics

Is there any way I can get this plugin to display a break down of 3 costs rather than just one on the final step? Thanks

Author loopus

Hello, No, sorry, a form can generate a single price, a subscription price, or a single price + a subscription price at same time, but not 3 different single prices. You need to use different forms .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from FabioAl

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadPayments
CodeCanyon source
Customer FabioAl

Hello, good job! From my testing before putting into production all ok :-) Question: After the customer is redirected to PayPal payment made is redirected to the URL set in "Call an url on close"? Thank you

Author loopus

Hello, Thanks :) Yes, after the payment, the customer is redirected to the url you set in the "Call an url on close" option of the form.

Customer FabioAl

Thank you! 5 Stars for "WP Cost Estimation"

Author loopus

Thank you very much !

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from gmumm09

2 direct author replies in this public CodeCanyon conversation.

3 messages2 author repliesBuyer thread
CodeCanyon source
Customer gmumm09

Hi there, I'm considering buying your plugin but wanted to know if the plugin allows you to display two prices: 1- A one time upfront costs 2- An ongoing cost For instance, I own a business where customers have to purchase equipment upfront and then pay a separate monthly fee after that. Would this plugin work?

Author loopus

Hello, A form can give as result a single price or subscription, but not the both at same time. Maybe you can redirect the user to a second form when the first is finished (single price, then subscription) . I note the idea.

Author loopus

Hello, The last update allows your forms to generate a single price and a subscription at same time, as asked. It also works with payments.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from jonrouse

2 direct author replies in this public CodeCanyon conversation.

3 messages2 author repliesBuyer threadPDF and email
CodeCanyon source
Customer jonrouse

I've updated today and it took my site offline.

Author loopus

Hello, I received your email 1 minute ago and I replied. I wait your answer .

Author loopus

Fixed

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from webaholicsteam

2 direct author replies in this public CodeCanyon conversation.

3 messages2 author repliesBuyer threadPaymentsPDF and email
CodeCanyon source
Customer webaholicsteam

I would like bump the request for a one-time cost in addition to the monthly subscription. There is great need for this feature to allow for setup costs with monthly plans. I contacted you on your site about this, I would be willing to develop it for you so can add it to your next update if you would like.

Author loopus

Hello, Thank you very much for your aid proposal and your request . I don't see the email. I planned to add this feature in the next update. I'll begin development next week.

Author loopus

Done, I just sent an update to envato and as automatic update. You can now use the new item option "Is a part of subscription ?" in your subscription forms to generate a single price + a subscription price together. It also works with payment .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from poky40

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadPayments
CodeCanyon source
Customer poky40

Bonjour, petite question rien ne permet de savoir si la commande a bien était payé? J'ai testé en allant jusqu'a paypal et en annulant à la fin, la commande et quand meme dans la liste des commandes mais aucune mention de paiement.

Author loopus

Bonjour, Il vous suffit d'activer l'option Paypal IPN dans votre formulaire et configurer l'IPN dans votre compte paypal. Seules les commandes dont le paiement est vérifié seront alors prises en compte.

Customer poky40

Merci pour la reponse

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from fra84x

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupport
CodeCanyon source
Customer fra84x

Hi, I have a problem, because I try to upload the image preview of the items in the estimate, but it doesn't show anything and the field stay empty. thanks If you go to www.woowagency.com/costo-siti-web you can have a look at :) Thanks

Author loopus

Hello, The plugin simply uses the default wordpress media picker, and the picture should be added to the field once the button "Insert into post" clicked. Maybe you have a plugin causing a conflict with it. A simple solution is to paste the picture url directly in the picture field (you can see url of your pictures from the Media > Library wordpress panel). If you want, you can contact me from the support tab sending me a temporary access to the backend, I will check it .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from connect5media

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomization
CodeCanyon source
Customer connect5media

Hey, I am looking for a plugin to use as a loan calculator and I really like your front end design. Can we create custom fields to the submission form? Can we upload custom icons? Can we display some sort of "thank you" page when the user submits? Cheers, Ian

Author loopus

Hello, Thanks :) 1. Yes, you can freely manage fields (textfields, selects, textarea, files uploads, colorpickers, checkbox ...), items, steps and forms . 2. Of course, you can use your own pictures/icons 3. Yes, you can redirect the user to a specific page when the user submits the form.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from jpandino

0 direct author replies in this public CodeCanyon conversation.

2 messages0 author replies
CodeCanyon source
Customer jpandino

I upgraded to the new version today and I can't activate the plugin. I deleted the plugin and reinstalled still the error persists... Parse error: syntax error, unexpected '[' in /nfs/c03/h05/mnt/166612/domains/domain.yeah/html/wp-content/plugins/WP_Estimation_Form/includes/lfb-core.php on line 1529

Customer jpandino

I deleted all the files then installed the previous version and it works now.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from socialdev

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesSupportCustomization
CodeCanyon source
Customer socialdev

Before Purchase Question 1. As far as I checked, it doesn't support decimal separator if the number is over than 1,000,000. It shows me 1000,000. 2. I need an option for some item must be selected. Is there any option that user cannot deselect? If you can change this, I will surely purchase this nice plug in.

Author loopus

Hello, 1. Yes, you can now freely edit the million separator, the thousands separator and the decimal separator. 2. Yes, there is an option "Is required ?" for checkbox and textfields. There is no option to make a picture unselectable currently, but you can contact me from the support tab once your form ready, I can give you a custom CSS rule to do it .

Customer socialdev

Thank you so much!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from puzzlerdesign

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
CodeCanyon source
Customer puzzlerdesign

Hello. Before purchase this plugin I need some info. I need to a dynamic price calculator based on a costum size (weight, height) of the product (print agency sells a printed supports like panel or pvc banner). Can this product create something like that? http://imgur.com/K5SvZnI

Author loopus

Hello, Yes, you can do it using conditions on links between steps. For example, if "base" > 125 and 75 , you send the user on step Y. On step Y, you can add a hidden selected item to add a specific price or apply a specific percentage on the total price. Then simply do the same thing for other specific prices depending on the size (steps, items and forms can be duplicated in 1 click). Then steps X,Y,Z can send the user to the same step B to continue the form.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from higherimages

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesSupport
CodeCanyon source
Customer higherimages

Having an issue with multiple forms - they all start with the same number so they sometimes send the wrong emails out. Really weird. is there any way they can each start with a different letter so they do not overrun one another? http://www.bluechipexterminating.com/wp-content/uploads/2016/03/chip.jpg

Author loopus

Hello, Apparently you did not purchase the plugin. If you have an issue, please contact me from the support tab with your buyer account, I will help you . The version used on your website isn't updated. Reference prefix can freely be edited from settings of each form .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from rucoxn

2 direct author replies in this public CodeCanyon conversation.

3 messages2 author repliesBuyer threadSupportCustomizationPDF and email
CodeCanyon source
Customer rucoxn

Hi I've been trying to contact you via the AUTHOR button (I've sent 3 messages so far) but I am not getting a response.. hopefully you can please help me here about the WP Estimation Builder: (1) if we needed to add a step where we could add a certain % to the total price - can we do that and how? the reason we are asking is because we wanted to add sales tax to the estimator we are setting up - so is there a way to create a step where the user selects what state they are from and then depending on their choice, the estimator will automatically add the appropriate tax % to all total prices calculated? (2) is there a way to hide the button style from a step so the only thing a user has to do is click on the image to select it? (3) When you click on an image to select it in a step- the buttons the user has to press to indicate how many of that product they have or want is currently showing at the top of the image - is there a way to set it so it appears at the bottom of the image? thanks :grin:

Author loopus

Hello, The only email I received from you was 12 days ago, and I replied (about tax) . If you want to contact me, please simply use the support tab or reply to my email. 1. As I wrote in my email, there is no such option currently. You need to use a required item applying percentage to apply the tax . I noted the idea. 2. Yes, simply use a group name on your item, and set the "Selection required" option of the step to true. 3. Yes, simply use this rule in the "Custom CSS rules" field of your form (tab Design) : #estimation_popup .quantityBtns { top: auto !important; bottom: -34px !important; }

Author loopus

1. I just added a new option allowing to hide items and steps in the form (and show them in summary/email and calculation). With it, you can easily apply your tax at end of the form. I'm going to send it as automatic update. You can contact me from the support tab if you want it immediately .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from testtube

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportPDF and email
CodeCanyon source
Customer testtube

Hi, I have just updated the plugin to find that when I tested it the email that is sent with the quote is completely blank. It used to work until 5 minutes ago - I have attached my site, so perhaps you could help. Many thanks Testtube https://omnisearch.uk

Author loopus

Hello, Please contact me from the support tab, giving me a temporary access to the backend, I will debug it .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from odesignc

2 direct author replies in this public CodeCanyon conversation.

5 messages2 author repliesBuyer threadSupportCustomizationWooCommerce
CodeCanyon source
Customer odesignc

hi, important question: i am using woocommerce. How to force/ask the user to login/register when a non logged user access this payment form ? if you say there is no way or option, can you kindly provide me a plugin or a code line to make this ? thanks

Author loopus

Hello, To do that (protect a page by login), you need to create a new page template in your theme : http://fotan.us/require-login-for-single-wordpress-page/ If you want, you can contact me from the support tab and send me the page.php file of your theme, I will create the custom template for you.

Customer odesignc

ok i just sent you a email now, thank you

Customer odesignc

thank you so much for your help !!

Author loopus

Thank you for the review :)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from StudioNuuk

2 direct author replies in this public CodeCanyon conversation.

3 messages2 author repliesBuyer threadSupport
CodeCanyon source
Customer StudioNuuk

I have a problem : wp-content/plugins/WP_Estimation_Form/includes/lfb-core.php on line xxxx But my version of PHP is 5.4.45. What can i do ? Thanks

Author loopus

Hello, Please contact me from the support tab, I will help you .

Author loopus

Fixed.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from samurai1

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadSupport
CodeCanyon source
Customer samurai1

Hi, great plugin - I guess! Pre-purchase question: Do you plan to solve this case? Users can leave additional free text information (that are not relevant to the price) in steps. Example: Choose your car paint: standard/metallic/pearlescent ... Type your color: "...". This is usefull in the case of plenty of options or unlimited options for 1 item. Thank you in advance!

Author loopus

Hello, Thanks :) This case is already solved : you can freely use textfields, textareas, file upload fields and colorpickers (since the last update) in your forms .

Customer samurai1

Thx ... and sorry that I'm a fool. I will buy .. and learn. :-))

Author loopus

No problem, you're welcome :)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from roguey

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadPDF and email
CodeCanyon source
Customer roguey

Is it possible to use this for outcomes other than cost estimation? eg. To find the right tool as it asks a series of questions re features, user numbers etc? just not a $0 outcome?!?

Author loopus

Hello, Yes, it is possible : there are options to hide the final price, and the prices in the email and summary, and another to show steps instead of price in the progress bar .

Customer roguey

LEGEND

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from AngeloLazzari

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesPDF and email
CodeCanyon source
Customer AngeloLazzari

Hi, grat plugin! i just wanted to know if there is the option to ask customer email to see/send the estimated price or email to start the cuote... simply i want to take trace about how many is tring to make a quote... i don't want visitors can have a quote without to leave at least the mail and telephone for example...

Author loopus

Hello, Not currently, thanks for the suggestion .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from onlyonemj

4 direct author replies in this public CodeCanyon conversation.

9 messages4 author repliesSupportPaymentsPDF and email
CodeCanyon source
Customer onlyonemj

Pre-sales question - does it have a Mailchimp sign-up checkbox? And what are the available payment gateways?

Author loopus

Hello, Not currently, but I note the idea, thanks. Payments can be done via paypal (single payment or subscription) . You can find all features list on the plugin page.

Customer onlyonemj

Thank you for swift response. I have another question - is it WPML friendly?

Author loopus

You can easily translate the backend texts in different languages using the "String Translation" WPML feature or using the .po file. All frontend texts are directly editable for each form from backend. You can duplicate a form in 1 click, then change texts and currency settings (its symbol, position and separators) if you want to use it for different countries.

Customer onlyonemj

Ok fantastic thanks very much - it is the front-end languages and currency that I needed to show in French and English. Is there a way for me to add the mail chimp signup checkbox myself somehow or is there a risk that I would break the code for this plugin? It's that and a file upload option that would complete what my client is looking for. Fantastic work by the way.

Author loopus

If you know php, you can edit the function send_email() of the file includes/lfb-core.php (you can recover the customer's email using the variable $email at end of the function). I noted this great idea, I will add it as an option in a next update .

Customer onlyonemj

Thanks - that helps. I'm guessing that the "Mailchimp for Wordpress" plugin would not have the ability to add the checkbox to your form at the end?

Author loopus

No, but if you want, contact me from the support tab after purchase, I will send you a customized version that send the customer's email to your mailchimp list at end of the form . Then I will add it as a new feature in the next update.

Customer onlyonemj

Thanks very much you're too kind! I'm sure people would find this feature useful for the next update. Can't wait to implement into client website!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from belayachimarouane

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer thread
CodeCanyon source
Customer belayachimarouane

Pre Purchase question : In my estimation calculator, I need to ask clients for a their house surface, than depending on that surface, option will have different costs. Is it possible with this plugin ? Does use conditional logic ? Thank you

Author loopus

Hello, Yes, it is possible. Simply activate the "Enable quantity choice ?" option on the "House Surface" item (quantities can be changed with buttons, slider or a number field), then use conditions "Quantity is egal to" , "Quantity is superior to", "Quantity is inferior to" on the links to redirect the user to the good step depending on his choice. You can duplicate your steps in 1 click to set the options with different prices depending on the choosen surface .

Customer belayachimarouane

Great! Purchasing it now!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Idaniel

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
CodeCanyon source
Customer Idaniel

Hi, I have question before purchase, is it possible to add font-awsome icons? Best regards,

Author loopus

Hello, No, icons must be images (you can easily find icons here : http://www.flaticon.com/ , http://www.iconsdb.com/ ).

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from friedinand

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesPayments
CodeCanyon source
Customer friedinand

Hello, payu gateway si supported for payments?, also, is possible create rules based in dates? thanks.

Author loopus

Hello, Only paypal is used for payments. No, there is no date rules option currently, I note the idea, thanks .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Brockway

2 direct author replies in this public CodeCanyon conversation.

3 messages2 author repliesBuyer threadPDF and email
CodeCanyon source
Customer Brockway

Hi Loopus, Can you take a look at this screen : https://www.dropbox.com/s/tbzpzcwilq4lh12/loopus.jpg?dl=0 I disable price everywhere thanks to all options you provide. But it still display there, how can i disable that ?

Author loopus

Hello, The option "Hide zero prices" allows you to hide $0 prices from the summary, but not the full price column or the total row. I note the request and will add this option in the next update.

Author loopus

Done, I just sent you the last update : new option "Hide all prices" in "Last step" tab, to hide price column and total from summary/email new option "Automatic next step" to enable/disable the automatic call of next step when only one item is selectable and step is required new option "Inverse gray effect" to inverse the grayscale effect on picture (item is gray if unselected) I sent it as automatic update too .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from doodlebot

2 direct author replies in this public CodeCanyon conversation.

3 messages2 author repliesBuyer threadSupportCustomization
CodeCanyon source
Customer doodlebot

Hi, I have added fields to the 'last step' tab, but they are not editable when filling out the form. The rest of the form is fine. Hope you can help?

Author loopus

Hello, Yes, please contact me from the support tab, giving me the url where I can see the issue, I will debug it.

Author loopus

Fixed, there was a css conflict.