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 69 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 nyslick133

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesSupportCustomizationPDF and email
CodeCanyon source
Customer nyslick133

I've been having two issues that I cannot figure out.. First off the progress bar is not keeping progress and is at $0 even after clicking something of greater value than $0. Second, after clicking through all of the steps and options the final email shows only "Last Step from values" and "ref", for some unknown reason it is not displaying "project content", even after clicking through multiple steps. Any help would be wonderful, Thanks!

Author loopus

Hello, 1) Where can I see the form ? 2) Did you edit the email template (from settings) ?

Customer nyslick133

I just privately emailed you.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ultimateuser

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer thread
CodeCanyon source
Customer ultimateuser

Hi I'm thinking of buying this plugin. Is it possible to add a Step where the user selects an option and get's 10% off from the total price? If not, when do you think you will add this? Thanks!

Author loopus

Hello, Yes, you can do it.

Customer ultimateuser

Do you have a manual on how to do this? I need to be sure before I purchase... Thanks :-)

Author loopus

The documentation is in the package. On your item, choose operator "/" and enter the reduction percentage in the price/percentage field (for example 10).

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from miopr

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomizationPayments
CodeCanyon source
Customer miopr

Do you offer custom work for this plugin? I would like to use this for a donation form and need: 1. Recurring payment option to accept Monthly and Yearly recurring donations. Step 1 would be the $ amount and step 2 will be options for "one time", "monthly" or "yearly". 2. I need the following Gateways: Paypal, Wepay and Authorize.net (authorize is not too important right now if you're not interested in working with that). This is a for an ambitious Land Conservation Project. They are non-profit but have a decent budget. Please write me if you're interested and I can send you a mockup of what I need using your plugin. Thank you for your time.

Author loopus

Hello, No sorry, I'm not currently available as freelancer. Maybe you can find a dev here : http://studio.envato.com/

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from sciencemies

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
CodeCanyon source
Customer sciencemies

Any plans to add ability for users to save unfinished forms and to continue with them later?

Author loopus

Hello, No, but I note the request .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ramirorams

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportPDF and email
CodeCanyon source
Customer ramirorams

HI... at the end of the form, me and the client receive an email with the list of items. The problem it include the price... i just want the list and the final price. Can i take out the option of adding the price to each line in the email i receive?

Author loopus

Hello, You need to edit the line 413 of assets/js/lfb_form.js to do this . Replace this line : content += ' - ' + quantityText + jQuery(this).data("originaltitle") + ' : ' + priceItem + ' '; By : content += ' - ' + quantityText + jQuery(this).data("originaltitle") + ' '; Then minify the code using http://www.minifyjavascript.com/ and paste it in lfb_form.min.js .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from gleert

5 direct author replies in this public CodeCanyon conversation.

11 messages5 author repliesBuyer threadSupportCustomizationPDF and email
CodeCanyon source
Customer gleert

This is a very nice plugin! How can I solve issues with my theme css? https://naranjatec.com/?lfb_action=preview&form=1 Hope to hear from you soon!

Author loopus

Hello, Thanks :) Simply add this to your style.css theme file : div#lfb_bootstraped.lfb_bootstraped { text-align: center; }

Customer gleert

To solve it I needed to add this: div#lfb_bootstraped.lfb_bootstraped, div#lfb_bootstraped.lfb_bootstraped div,div#lfb_bootstraped.lfb_bootstraped h1 { text-align: center!important; } Thanks for putting me on the right track!

Customer gleert

How can I make the columns wider? It doesn't look nice like this.

Author loopus

#estimation_popup.wpe_bootstraped #mainPanel .genSlide .genContent .col-md-2 { min-width: 200px; }

Customer gleert

What's the best place to put this?

Author loopus

In your style.css theme file

Customer gleert

Thanks! Where can I get the icon set you use in your example?

Author loopus

Here > http://www.iconsdb.com/

Customer gleert

In the confirmation email the items that use an image don't show the price. And items with an image and the quantity option, don't show the selected quantity either.... This is a mayor flaw!

Author loopus

The price and quantity of each item appears in the email. If you have a bug, please contact me from http://codecanyon.net/user/loopus#contact, giving me a temporary access to the plugin backend, to see the problem .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from RickRuben

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadCustomization
CodeCanyon source
Customer RickRuben

Good morning, I would like to purchase the plugin, however I have one question. Is it possible to to insert a custom java script between steps or within the steps. Because I am giving a service for my customer for free I would like them to download an app from my affiliate network before ordering the service. Would that be possible with the purchased plugin or could that be made possible ?

Author loopus

Hello, You can execute your custom javascript function (a popup, for example) on a specific step adding this at line 717 of assets/js/lfp_forms.js : if($title.val() == "My step Title"){ LaunchMyCustomPopup(); // your custom function, located in another js file } Then minify the code using http://www.minifyjavascript.com/ and paste it in lfp_forms.min.js .

Customer RickRuben

Thank you very much. I am going to purchase the plugin right away

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from bpinet

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer bpinet

Can't edit steps. After clicking edit there's just this dot and it freezes like this forever. Any idea?

Author loopus

Hello, Maybe a js conflict . Is it the las version ? If yes, can you send me a temporary access to the plugin backend, to debug it ? You can contact me from http://codecanyon.net/user/loopus#contact

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ForgetWP

5 direct author replies in this public CodeCanyon conversation.

12 messages5 author repliesBuyer threadSupportCustomizationPayments
CodeCanyon source
Customer ForgetWP

What a Fantastic Plugin! I've been looking for this for ages! I would like to share with you my thoughts on how you could make it even better! 1. Be able to duplicate steps (a little icon same as delete, etc) 2. Be able to create and save products into some kind of library, including price, image etc etc. So when you building new step you can simply select product from the list instead of creating the same product all over again. 3. All images should be greyed out unless selected. Currently is the other way round. Select icon is greyed out but unselected is coloured. 4. Disable multiple choices on some steps. 5. Stripe payment support 6. Allowing people to reserve the price by paying instead of forcing them to pay if payment is enable. So it would be something like 'Pay now to reserve your price' etc. In general, great job! Keep me posted about further updates and features.

Author loopus

Hello, Thanks for ideas ! 4) You can do it adding the same "group" name to the items in the steps. Only one will can be selected. Thanks again .

Customer ForgetWP

Perfect. Grouping items works! Thanks again! P.s Any CSS trick to make X and TICK bigger?

Author loopus

Yes : #mainPanel .genSlide .genContent div.selectable span.icon_select { width: 40px; height: 40px; line-height: 40px; font-size:38px; }

Customer ForgetWP

Hmm, I'm trying to paste that into my child-theme css. Is that the right place?

Author loopus

Yes, but you maybe need to add !important tags : #mainPanel .genSlide .genContent div.selectable span.icon_select { width: 40px !important; height: 40px !important; line-height: 40px !important; font-size:38px !important; }

Customer ForgetWP

Yep, that works :). Thank you again for your prompt reply!

Customer ForgetWP

Ohh, I forgot about really important questions. When you link conditions, is there any way to create OR rule for the element? SO when you selecting 2-3 elements the condition is OR rather than if? Hope this make sense.

Author loopus

To use a "OR" operator, you need to create a new link. The plugin search and check all potential next links, and give the priority to the one having the most conditions (and all conditions of this link are filled) .

Customer ForgetWP

Thanks, but you can't create and link the same conditions twice together? You would have to create new step instead and create new link with a different condition. I just thought it might be possible for my project because some of the questions I have is 'either' A or B and they could go to the same Step. Hope this make sense.

Author loopus

I'm not sure to understand. If item A and B allow the step 2, you can use only item C in conditions (if C checked, go to the step 3, otherwise to the step 2) .

Customer ForgetWP

No worries, I will create a workaround for this. :) Thank you.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Akial

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesCustomization
CodeCanyon source
Customer Akial

Is it possible to just create a form with multiple fields, without the "estimation" part? I basically sell designs at a flat rate and just need the information from the client, there is no estimating. Is this possible? Do you have a showcase/demo for such an order form?

Author loopus

Hello, You can hide the final price using this css rule in your style.css file : #estimation_popup #finalPrice {display: none;} And choose to show steps in the circle instead of price.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from promotionalscience

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
CodeCanyon source
Customer promotionalscience

Presales question does it allow you to setup only one or can you setup multiple quoting programs using the plugin within the same site for quoting different projects you do.

Author loopus

Hello, Yes, you can create how many forms you want .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Morpheo

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesPayments
CodeCanyon source
Customer Morpheo

I love this plugin, I'll buy it for my next project but here is one question I'd like to solve and see if this plugin can suite my idea. The point is that I want to create a recomendation website for selling insurances. And I want my visitors to answer few steps with this plugin and at the end give them the product that fits better with their answers. Can I do this and configure it with this plugin at the final step?

Author loopus

Hello, No, sorry, it can't currently be used to give a specific product as result. It gives a price as result, and send an order or make a payment from this price . I note the idea, thanks .

Customer Morpheo

Perfect! Could be simply amazing if in the future, this plugin can implement this function.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from olejnaess

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomization
CodeCanyon source
Customer olejnaess

Request for the future: collect information instead of using it as cost estimator :)

Author loopus

Hello, You can hide the final price using this css rule in your style.css file : #estimation_popup #finalPrice {display: none;} And choose to show steps in the circle instead of price.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from healthkeeper

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer healthkeeper

Hello, your plugin is perfect. Hands down the best pricing calculator on the market. Only one request, monthly pricing. Many of us freelancers need to charge first time fees and later monthly amounts. It would be amazing to be able to separate both amounts. For example, website setup costs = 100€ and monthly community managment = 50€. It makes clients angry if later you have to tell them they have to pay every month, if they calculated and they had a lower amount. Thank you guys.

Author loopus

Hello, Thanks :) Yes, this option is on my list of wanted features. It will be added in a next update .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from oliverkko

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesPayments
CodeCanyon source
Customer oliverkko

Hello, I would like to ask you, if I will buy this plugin, will be possible to change PayPal payment method to GoPay

Author loopus

Hello, No, sorry, currently payments work only with paypal .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from eddigei

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
CodeCanyon source
Customer eddigei

question pre purchase! you can multiply the result? I have to do something like: (element) x (quantity elements) x (element type) + (additional features)

Author loopus

Hello, Not currently, sorry .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from MobiOpti

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadSupportPDF and email
CodeCanyon source
Customer MobiOpti

I found more issues, I will contact you personally tru support pages.

Author loopus

Hello, I replied your email.

Customer MobiOpti

Thx for quick fix

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from stef33

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer stef33

Bravo. J'aime beaucoup. Ce plugin est maintenant dans ma liste d'achat ! ;-)

Author loopus

Merci :)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from EuroInfoSys

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadCustomization
CodeCanyon source
Customer EuroInfoSys

Hi! Can the design of the estimator be modified? I mean the background color, the fade-in titles and so on? Thanks!

Author loopus

Hello, Yes. You can modify the colors of titles and texts from the backend. To change the gray background-color, simply use this css rule in your style.css theme file : #estimation_popup #mainPanel { background-color: #FFFFFF !important; /* your color here */ }

Customer EuroInfoSys

How about the fade-in effect?

Author loopus

It is powered by the main js file. You can't change the animations without editing the core js file .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from MobiOpti

1 direct author reply in this public CodeCanyon conversation.

4 messages1 author repliesBuyer threadSupportPDF and email
CodeCanyon source
Customer MobiOpti

Hi, good work! Very nice plugin. One friendly advice, in updates section you have very futuristic date: 2515-04-23 :)

Customer MobiOpti

I have a serious question, is in your plugin possiblity to use amount slider? Like for loans? (first slider for amount of money, second for a time period) Thx!

Customer MobiOpti

And please I have another question, Can I use different order forms with different emails? I mean order from form1 goes to email1 and from form2 goes to email2. I have purchased, but still not verified plugin, this answer will help me, which domain I will choose.

Author loopus

Hello, 1) Thanks, I fixed the date :) 2) There ins't sliders item currently, I note the idea. 3), yes, you can edit customer's and admin's email templates for each form, and set different email address .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from PinkPanda

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadBooking
CodeCanyon source
Customer PinkPanda

Hi there, Is it possible to have a calendar date picker (preferably between two dates) as an option? Cheers!

Author loopus

Hello, I note the request, I will study this possibility . Thanks

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from albertoferreira

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer albertoferreira

Hi Loopus, After install last version, an old Bug come back. If I choose one way, then go back, the options selected in that old way still selected. It's supposed to reset, as it done on last version before this one. Thank you.

Author loopus

Hello, Thanks for reporting, I fixed it. Update sent to codecanyon .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from fujicanon

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupport
CodeCanyon source
Customer fujicanon

Great plugin! Just downloaded, and playing around with it I've found a couple things that don't seem to work: 1) When I put a price that an option costs, it doesn't actually show up when viewing the form. 2) There's a couple toggle things on all the screens that don't have labels by them. One is always "on" and one is "off" I have no idea what they do 3) If I add an item from the products that has more than 1 variation, it doesn't let me see which one I'm choosing. This isn't a big deal to have, but when I can't use the pricing when people choose an option, the only way to total an estimate is by adding products. My sample form is at: http://www.typofire.com/services/outreach/evangelism-estimator thanks for your help!

Author loopus

Hello, 1) Can you send me a temporary access to the plugin backend, to check it ? (on frontend, I just see some items with prices, other without) . 2) I don't see the "on"/"off" labels 3) SImply add a "SKU" id to your variations (from the product page), you will see it after the product name in the dropdown .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from loopus

1 direct author reply in this public CodeCanyon conversation.

1 messages1 author replies
CodeCanyon source
Author loopus

Thanks. Can you send me the form url ?

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from sherissar

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesCustomization
CodeCanyon source
Customer sherissar

Hi, 1. I have the setting to not show initial price - but it is still showing the initial price on the slider. 2. When I have check box selected, the option for quantity disappears. 3. Is it possible to set 2 columns only?

Author loopus

Hello, 1) What is the used version ? 2) Quantities work only for pictures item, not checkbox . 3) No, sorry. You need customize css styles if you want do this .

Customer sherissar

Version 8.7

Author loopus

Thanks. Can you send me the form url ?

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from sherissar

0 direct author replies in this public CodeCanyon conversation.

1 messages0 author replies
CodeCanyon source
Customer sherissar

Version 8.7

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from loopus

1 direct author reply in this public CodeCanyon conversation.

1 messages1 author repliesCustomization
CodeCanyon source
Author loopus

Hello, 1) What is the used version ? 2) Quantities work only for pictures item, not checkbox . 3) No, sorry. You need customize css styles if you want do this .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Mavermeulen

0 direct author replies in this public CodeCanyon conversation.

1 messages0 author replies
CodeCanyon source
Customer Mavermeulen

Thanks for fixing the bug! Cheers mate, keep it going!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Mavermeulen

1 direct author reply in this public CodeCanyon conversation.

4 messages1 author repliesBuyer threadCustomization
CodeCanyon source
Customer Mavermeulen

Hello, First, i love the plugin! You did a really good job on it's design and functions. I do have a question though... It seems that i cannot change the e-mail template. When i change the "information" title or "project" title and save it... it appears to be saved. But when i refresh the wp-admin page, it resets automaticly. How can i fix this? Thanks!

Author loopus

Hello, Can you send me a temporary access to the plugin backend, to see the bug ?

Customer Mavermeulen

Send you an e-mail!

Customer Mavermeulen

Thanks for fixing the bug! Cheers mate, keep it going!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from AbelSchoeman

0 direct author replies in this public CodeCanyon conversation.

1 messages0 author replies
CodeCanyon source
Customer AbelSchoeman

Awesome, thank you so much!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from AbelSchoeman

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadSupportPDF and email
CodeCanyon source
Customer AbelSchoeman

Good day, hope you are well. I can not seem to add anything in the email content blocks in the email settings. Please assist, your help would be greatly appreciated. Thanks.

Author loopus

Hello, Thanks for reporting, I just fixed it. Update sent to codecanyon .

Customer AbelSchoeman

Awesome, thank you so much!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from loopus

1 direct author reply in this public CodeCanyon conversation.

1 messages1 author replies
CodeCanyon source
Author loopus

Hello, Thanks for reporting, I just fixed it. Update sent to codecanyon .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Mavermeulen

0 direct author replies in this public CodeCanyon conversation.

1 messages0 author replies
CodeCanyon source
Customer Mavermeulen

Send you an e-mail!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from loopus

1 direct author reply in this public CodeCanyon conversation.

1 messages1 author replies
CodeCanyon source
Author loopus

Hello, Can you send me a temporary access to the plugin backend, to see the bug ?

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from loopus

1 direct author reply in this public CodeCanyon conversation.

1 messages1 author replies
CodeCanyon source
Author loopus

Hello, It's not an error, but a notice, when WP_DEBUG is on "true" . I fixed it, and I'm going to send the update to codecanyon .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ashworth102680

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer thread
CodeCanyon source
Customer ashworth102680

Getting the following error. Thoughts? PM'd you the un-edited version of this code separate through your profile on CC. Notice: Undefined property: stdClass::$height in /apps/wordpress/public/wp-content/plugins/WP_Estimation_Form/includes/lfb-core.php on line 662

Customer ashworth102680

I just moved my site to another server, ensured DNS fully propagated (it did), and I'm seeing the same thing. The server it's now on is a pretty vanilla cPanel server with Apache/PHP ...nothing fancy. Same PHP error.

Author loopus

Hello, It's not an error, but a notice, when WP_DEBUG is on "true" . I fixed it, and I'm going to send the update to codecanyon .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from loopus

1 direct author reply in this public CodeCanyon conversation.

1 messages1 author repliesCustomization
CodeCanyon source
Author loopus

Hello, 1) No, sorry, the scrolling is automatic . 2) You need to study and edit the css rules like the previous ones to do this customization .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from gcphoenix

4 direct author replies in this public CodeCanyon conversation.

10 messages4 author repliesBuyer threadSupportCustomization
CodeCanyon source
Customer gcphoenix

Hello loopus, I purchased this plugin earlier today, I am really struggling with .css. I notice that you have directed several buyers to ./assets/css/estimation_popup.css, however, I can't seem to locate this file. I am trying to change the background color of the "intro" area, as well as the background color of the "main area." Is this possible? Also, I am trying to change the font so that it matches my font I am using within my website. Please help me with this. Thanks, GCPhoenix

Author loopus

Hello, estimation_popup.css was in the previous version. You can find form css here : assets/css/lfb_forms.css . You can also apply your rules in your theme styles.css file, to allow you to update the plugin without removing your css customizations .

Customer gcphoenix

Thank you for the response, but I'm still not seeing the results I am hoping for. I was able to change the font-family just fine. However, I am trying to change these 3 things, and I just don't know how: 1. I have placed the shortcode into my Wordpress page, and I am trying to change the background color of the "intro" section. It seems to be transparent, but I do not want it to be. 2. I am also trying to change the default grey color of the background behind the steps. Is this possible? 3. I am trying to change the font-size of the step titles. I cannot seem to figure out the proper adjustments to make in the .css files to make this happen. Please help! Thanks, GCPhoenix

Author loopus

1. There isn't a special "intro" section or intro background. It is just a text . You can customize it using this rule to your style.css theme file : #estimation_popup.wpe_bootstraped #startInfos { padding-top: 28px !important; padding-bottom: 28px !important; background-color: #333 !important; /* etc ... */ } 2. #estimation_popup.wpe_bootstraped #mainPanel { background-color: #333 !important; } 3. h2. stepTitle { font-size: 38px !important; }

Customer gcphoenix

Thank you so much! Problems 1 & 2 are fixed! However, #3 still didn't work. Any other way to change the step title? Because it is remaining the same size. Also, this is my last question, i promise! How can I change the background color behind the price bar? Possible? Thanks again for the quick responses!

Author loopus

3.Sorry, try : #estimation_popup.wpe_bootstraped #mainPanel h2.stepTitle { font-size: 38px !important; } 4. #estimation_popup.wpe_bootstraped .progress { background-color: #333 !important; }

Customer gcphoenix

Thank you so much! It worked. I am SO CLOSE to getting this amazing plugin formatted on my site the way I want it to be! Only 2 things are holding me back now and if you can answer them you will be a life saver! 1. How can I disable when clicking the "next" button, it anchors me down the page to the point where the progress bar is at the top of the page. I would like to change that feature if possible? 2. Also, the spacing of the content is not coherent to the spacing on the rest of my site. I would like to change this if possible! Here is a screenshot (http://www.gcphoenix.com/wp-content/uploads/2015/04/Spacing-screenshot.jpg) of the areas of spacing I would like to adjust! Thank you so much! You have been an amazing help!

Customer gcphoenix

The link above will not work, however, this one should: http://i571.photobucket.com/albums/ss152/GCPhoenix/Spacing-screenshot_zpspce39yu8.jpg

Customer gcphoenix

That link will not work, however, this one will: http://i571.photobucket.com/albums/ss152/GCPhoenix/Spacing-screenshot_zpspce39yu8.jpg Thanks!

Author loopus

Hello, 1) No, sorry, the scrolling is automatic . 2) You need to study and edit the css rules like the previous ones to do this customization .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ashworth102680

0 direct author replies in this public CodeCanyon conversation.

1 messages0 author replies
CodeCanyon source
Customer ashworth102680

I just moved my site to another server, ensured DNS fully propagated (it did), and I'm seeing the same thing. The server it's now on is a pretty vanilla cPanel server with Apache/PHP ...nothing fancy. Same PHP error.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from mgmimw

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupport
CodeCanyon source
Customer mgmimw

Hello Is it supports RTL? Thank you

Author loopus

Hello, I didn't try it, but all texts are translatable / editable, it should be ok. If you meet a problem, you can contact me from my profile page, I will check it .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from icuk

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadSupportCustomizationPDF and email
CodeCanyon source
Customer icuk

Hi, the plugin conflicts with the WP-Engine Modal CSS when installed on wordpress hosted on WP-Engine. Any ideas for a fix for these ? Thanks Ben

Author loopus

Hello, Where can I see the conflict ?

Customer icuk

Hi, i sent a private support message yesterday, but its conflicting with the admin interface and also the front end doesn't seem to work as it should - https://www.weareinnovative.co.uk/icuk-estimate-builder and this is the css that is conflicting with the admin - https://www.weareinnovative.co.uk/wp-content/mu-plugins/wpengine-common/css/wpe-common.css Thanks

Author loopus

Indeed, your plugin apply custom styles to all elements of the admin and frontend without target pages or elements of the plugin only. I don't see your email, can you contact me again from my profile page ? I will send you the previous iframe version, it should work on your wp .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from joseamirandavelez

2 direct author replies in this public CodeCanyon conversation.

5 messages2 author repliesBuyer threadSupportPDF and email
CodeCanyon source
Customer joseamirandavelez

When adding fields to the last step section the "loading" animation (green screen with white pulsating blob) does not goes away. After refreshing the page, the field is shown. Is this a known issue? Also, just FYI, I had to fix my form after updating through sftp... some items appeared in the wrong steps...

Customer joseamirandavelez

Also, newline characters are being stripped from text area fields and from the email templates.

Author loopus

Hello, 1) Thanks for reporting, I fixed it, and going to send the update to codecanyon . 2) What was the previous version ? 7.2 or older ? 3) If you don't use the vidual editor, you need to add " " to add new line .

Customer joseamirandavelez

I don't know what's the previous version. I can check it tonight when I get home and verify my backup server. I used the visual editor and still got the line breaks removed. I ended up using , but if you change back to the visual editor they are removed. What about the line breaks in the text area fields of the last steps section? They are not passed to the email. Something that came to my mind just now. It would be nice to be able to set the "reply-to" email to the one in an email field in the last steps section.

Author loopus

Can you give me a temporary access to the plugin backend, to check this point ?

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from machinelogic

0 direct author replies in this public CodeCanyon conversation.

1 messages0 author replies
CodeCanyon source
Customer machinelogic

nevermind, i found it

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from machinelogic

2 direct author replies in this public CodeCanyon conversation.

5 messages2 author repliesBuyer threadCustomization
CodeCanyon source
Customer machinelogic

Is it possible to insert input fields for item quantity, rather than having to click the +1 icon? We have some items that may potential have 100+ quantity. It's not practical to make a visitor have to manually click each increment.

Author loopus

Hello, Yes, you can choose between buttons or quantity number field. You can find this option in the form settings .

Customer machinelogic

But quantity text field doesn't calculate x price. is that correct?

Author loopus

No, I don't talk about "textfield" item. On the form settings panel, you can set the field "Quantity selection style" on "Field" to replace the buttons by a numeric field. It work exactly as quantity buttons .

Customer machinelogic

sorry, but i don't see that anywhere. can you send me a screenshot please?

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from zenkamal

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer zenkamal

This is beautiful. I'm looking for a plugin with conditional logic, and without a set number of steps. So for example, a person could answer two questions and end up with a result of "You should try to get more sunlight", or they could answer five questions and get "Nice job! You're doing everything right." Would that kind of conditional logic (like a decision tree, without a set number of steps for all users since it depends on their answers) be possible with this plugin? So that the quiz stops if the person gives a certain answer on any of the questions, and results in a given answer at that point?

Author loopus

Hello, No sorry, it isn't made for quizz, you can't do this currently.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from davidchapman

2 direct author replies in this public CodeCanyon conversation.

6 messages2 author repliesBuyer threadSupport
CodeCanyon source
Customer davidchapman

Purchased the plugin today, is there a demonstration I can import and play around with?

Author loopus

Hello, Yes, you can find the zip file containing the demo in the folder "data_to_import", in the package .

Customer davidchapman

Sorry, realised it is within the plugin folder.

Customer davidchapman

Is there a way to manage calculations between two separate items. For example I want to multiply Item 3 by Item 2 and then item 1. Thanks for your support, didn't expect a response so quickly!

Author loopus

Not currently, but it is a good idea, I note it .

Customer davidchapman

Bugger, I was hoping this was possible as it is the main reason for purchasing. Thanks anyway.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Leokoo

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomization
CodeCanyon source
Customer Leokoo

Hey there! Here's some ideas. I've been doing some research and have bought the Types Toolkit, which includes Types and Views (http://wp-types.com) I found that at times, the reader would like an interactive search, which is done with custom post types. Here's some examples. http://www.moneysavingexpert.com/deals/cheap-iphone http://wp-types.com/site/david-das/ Would you want to increase the sales of this plugin and make it a mainstream tool? Perhaps you could consider the following ideas 1) Let it be able to take in CPT as a data source 2) Be able to filter and display results in different formats, as different users will use it differently 3) Add in Faceted search, like FacetWP 4) Let us be able to integrate in posts/pages by widgets and shortcodes :) Cheers!

Author loopus

Hello, Thanks for the ideas, I will study this.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from 3rd-Eye

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadSupportCustomizationPDF and email
CodeCanyon source
Customer 3rd-Eye

Hello, I really love the new UX, one the of best I've seen yet! Still having some odd behavior with the latest update today though. I have my form set to not show preice, but Steps rather. Proceeding to step 2, the slider goes all the way to the right, and when selecting things the slider just moves around in different positions and makes no sense. I have only 4 steps. Example: http://i.imgur.com/nxvTNQx.jpg

Author loopus

Hello, Surely a little css conflict. Where can I see the form ?

Customer 3rd-Eye

https://www.virdigi.com - I believe we have an account there for you already and have been communicating via email.

Author loopus

Thanks, I'm going to check and fix the problem .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from meteorpages

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadSupportWooCommercePayments
CodeCanyon source
Customer meteorpages

I love the idea behind this product but I have an issue. When I crete a step and I choose a woocommerce product to tie it too, I save the step and then it rests the options I set. For example checkout the screenshots. Here I configure the step - After I reopen the step once I saved, its all reset, look at the following screenshot. The documentation you provided say in form settings I can turn Woocomemrce on, but I see nothing of the sort. Help please! Thanks!

Author loopus

Hello, Is it the last version ? Can you send me a temporary access to the plugin backend, to debug it ? Thanks .

Customer meteorpages

Yes it's the latest. Just sent Login info to you via your contact form on your profile. Thank you!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from pephant

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer thread
CodeCanyon source
Customer pephant

I have been searching far and wide for an elegant quoting system. And your plugin looks fabulous. BUT I need to know if it can achieve what I need. From your video I can see that a product can have an 'initial price'. And quantities can be applied. So my questions are: 1) Are quantities a slider or can a specific number be entered by the user? 2) Can products have an initial price and incremental increase per qty? For eg. Product A has a production price of $20 without a quantity applied, for an order of 100 (for $1 per piece) so the total would be $120 for that product. Thank you in advance.

Customer pephant

Oh and I prefer to NOT use woo commerce for this, the products are customisable so there isn't a specific product for them.

Author loopus

Hello, 1) Yes, quantities selection can be buttons (like on the demo) or numberfields, where the customer enter the desired quantity. It can be modified from the form settings ("general" tab). 2) Yes, you can change the item price depending on the quantity selected (you can see this feature on video, at 2:25) .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from halfcj

3 direct author replies in this public CodeCanyon conversation.

6 messages3 author repliesBuyer threadCustomization
CodeCanyon source
Customer halfcj

I want the Step title to be much 'wider'. At the moment, it obscures the item detail. http://aematters.com/wp-content/uploads/Screen-Shot-2015-04-13-at-14.09.51.png I cannot find where to place coding that changes the display to say 600px. Frustrating as it's doubtless a simple solution.

Author loopus

Hello, You can edit the title style adding a rule in your styles.css theme file : #estimation_popup.wpe_bootstraped h1 { font-size: 72px !important; /* other rules using !important tag */ }

Customer halfcj

How does that change the width of the title? I want it to appear on one line.: Title to appear like this on the page and not: Title to appear like this on the page The size of the title is fine.

Author loopus

The form is responsive : the width of the title is 100%. To change it, the same method : #estimation_popup.wpe_bootstraped h1 { width: 600px !important; }

Customer halfcj

Not worked. Please go here to see: http://aematters.com/cost-calculator/

Author loopus

There is an error in your css file : p { font-size: 14px; #estimation_popup.wpe_bootstraped h1 { font-size: 60px !important; width:600px !important; } #estimation_popup.wpe_bootstraped h1 { width: 600px !important; } You need to close the p tag : p { font-size: 14px; } #estimation_popup.wpe_bootstraped h1 { font-size: 60px !important; width:600px !important; } #estimation_popup.wpe_bootstraped h1 { width: 600px !important; }

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from michaelbieglmayer

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesCustomization
CodeCanyon source
Customer michaelbieglmayer

Hi loopus, I like your theme a lot. It is almost what I was looking for! However: is it possible to exchange the $ pricetag with something more open, like "0-100%" or even better: "xx completed steps of total number of steps" ?? * Yes, I want to obtain information systematically from the user * Yes, depending on the initial user choice, the form should be able to adopt * Yes, I want the user to choose from differnent images * BUT I want to make the price on an individual basis... is this possible? :) best regards, Michael http://www.blick3d.com Architectural Visualisation

Author loopus

Hello, Yes, you can choose to display steps instead of price in the circle (ex : 3/5) . You can also hide the price in the final step using this css rule in your style.css theme file : #estimation_popup #finalPrice { display : none; }

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from cristibond

4 direct author replies in this public CodeCanyon conversation.

7 messages4 author repliesBuyer threadSupport
CodeCanyon source
Customer cristibond

Great plugin ! The new version works smooth , it's a fresh install as I didn't have any working forms. I believe many of this plugin's users would love that after completing a form, the responss should be saved in database. Just like the other buttons , you should add : View responses. This helps a lot, because it's hard to keep tracking of orders only by e-mail.

Author loopus

Hello, Thank you ! Ok, I note the idea for a next update .

Customer cristibond

Small bugs that need to be fixed : 1. example: if you choose item A from step 2 that costs 1$ , then go back to step 1, the total price in the slider remains same 1$ , it should go back to $0. 2. conditions don't work for checkbox type.

Author loopus

1. When you click on "previous step", all the checked items of the current step are unchecked (except those selected by default) . If not, can you send me the form url where I can see it ? 2. Thanks, I fixed the bug . You can contact me if you want the update immediately

Author loopus

Update is online .

Customer cristibond

hi, i am still looking at it, and i found that the quantity price does not work.

Author loopus

Hello, Please contact me from my profile, sending me the form url where I can see your problem. Thanks .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from craigteel

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadPDF and email
CodeCanyon source
Customer craigteel

Just wondering if you know of any solution to capturing the data and sending it to a CRM in order to build a database of users. Agile CRM has integrations with Wordpress, Gravity Forms, and Zapier and seems like a perfect fit. From a business perspective, being able to use the data further than just the normal email that gets sent would be ideal. I know that Gravity Forms can be attached to the final step, but there's a lot of information in the form's steps that are extremely valuable. That's the good stuff!

Author loopus

Hello, It's not possible currently, but I note the idea. Thank you .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ArnavDahal

3 direct author replies in this public CodeCanyon conversation.

5 messages3 author repliesBuyer thread
CodeCanyon source
Customer ArnavDahal

I can't seem to be able to have the product be added to my cart after being selected. I have tried everything but it just will not be added to my cart afterwards. Is there something wrong with the plugin or is there someway to fix this? Also is it possible to make it so that as soon as they choose an option it will automatically do next step for them without them having to click it? Thank you!

Author loopus

Hello, 1) The products are added to the cart at the end of the form. 2) No, otherwise the customers can't select 2 or more options in the step .

Customer ArnavDahal

It does not seem to be adding them to the cart for me. And none of my products require more than 1 option Thanks

Author loopus

1) Can you send me the form url ? You can contact me from http://codecanyon.net/user/loopus#contact

Author loopus

Thanks.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Valolink

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadSupport
CodeCanyon source
Customer Valolink

Hi! Bought your plugin, and it's quite great! I just have one problem: When using quantity based price reductions, there seems to be a small bug in the price information when going back to quantity 1 from higher quantities. edit1: For example, when I set the price to 150 €, and then add a rule that when quantity is more than 2 the price is 105€ , the form will say that the price is 105 € even if the user has only 1 in quantity, when going back to quantity 1 from quantity 2. The price updates correctly (+150€) in the upper bar, but it is quite improper for me to say that the price is 105 €, when it really is 150 €. So the plugin shows the price right, but wont return the original price to the title after showing the reducted price even if the quantity is reduced back to 1. (edit 2: If i have the price as 150, and have two rules; 1) If quantity > than 1 item price becomes 150 and 2) If quantity > than 2 item price becomes 105, the price will be shown 105 in quantity 1, 150 in quantity 2, and 105 on quantitites of 3 and above when changing the quantity) Also, using this quantity based price reduction omits the value "No" in the "Display price in title ?" part, and shows the price anyway. Not sure if this is on purpose or not. Thank you for your help in advance, Regards, Reima

Author loopus

Hello, 1) Do you talk about the "Show the price in title" feature ? 2) The circle show price instead of step if you use recuction on quantities on an item ? I'm going to check this. Thanks

Customer Valolink

1) thats not the main problem, but yes, i cannot hide the price from the title when using reductions 2) I want to show the price in the circle that is in the progress bar, and the circle shows the price correct, but the title does not. See the red circled parts in the image, they should be both 200 €; http://i.imgur.com/LadX4Mb.jpg

Author loopus

Ok, thanks, I'm going to check this points .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from kilawa

2 direct author replies in this public CodeCanyon conversation.

3 messages2 author repliesBuyer thread
CodeCanyon source
Customer kilawa

hi loopus , i can't save any conditions .

Author loopus

Hello, Thanks for reporting, I fixed the bug. You can contact me from http://codecanyon.net/user/loopus#contact, I will send you the update immediately .

Author loopus

Update is online .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from craigteel

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer thread
CodeCanyon source
Customer craigteel

Brilliant job on the new update! It's so much easier to create the steps in the form. I have noticed that the On/Off switches aren't rendering properly now and the price slider isn't centered anymore on my page.

Author loopus

Hello, Thanks :) Now, switches labels can be translated with the .po file (Yes/No) . Where I can see the form ?

Customer craigteel

It's currently on a development site that I have sitting on a MediaTemple server.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from sycoinc87

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadPaymentsPDF and email
CodeCanyon source
Customer sycoinc87

Great Update, a few future options I would love to see would be 1. The save responses to a database (as mentioned above) 2. Offer a download file on payment option dependent on a selection in the form (eg get a pdf of instructions or something after submission / payment...just an idea) Other than these 2 minor things great work, much easier to add new things in the back end now

Author loopus

Hello, Thanks, I note the ideas.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ajreynolds

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer thread
CodeCanyon source
Customer ajreynolds

Hi Loopus; Thanks for a great plugin! I have to agree with Jonaspt however. I upgraded to your newer version today and I've also lost all fields/options. I also tried to reload the items and rebuild the form but I'm unable to add Items to existing Steps. Thanks and Regards

Author loopus

Hello, Sorry for this bug. Please download it again and reinstall it, the update to fix this bug was just approved.

Customer ajreynolds

Thanks for your quick reply! I restored my previous working version, redownloaded the plugin and then updated it in my backend and sadly it's still not working. There are no items showing up in the backend or on the page.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Jonaspt

2 direct author replies in this public CodeCanyon conversation.

5 messages2 author repliesBuyer threadSupport
CodeCanyon source
Customer Jonaspt

loopus, the latest update isn't working properly. After updating, the fields/options on my form are gone. And when I try to edit or create a new form on the back end, I just get a continuous green screen.

Author loopus

Hello, Can you send me a temporary backend access to the plugin, to see the bug ? Did you try to uninstall/reinstall it ?

Customer Jonaspt

I just reverted to an old version loopus, I'm sticking with it for now. I don't have time to put the new version up, but I'll contact you later or wait for a new update.

Author loopus

Ok,no problem. The last version is included in the package .

Customer Jonaspt

Sure, thanks for the reply.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from 3rd-Eye

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadPayments
CodeCanyon source
Customer 3rd-Eye

Really enjoying this awesome plugin and thank you for the paypal integration! I came to offer a feature suggestion that would be really amazing: Partial Payments. For many of us, the full amount of the website may not be due up front and an optional deposit amount to get started would be a great way to enhance lead capture. To keep it simple, perhaps just having an optional value for deposit amounts (i.e. $500) or pay full amount? The online payment is great because it creates a commitment. The larger amounts may not likely be paid by credit card though, as clients will often write a check. Just some user feedback, maybe you already thought of it too 8-)

Author loopus

Hello, Ok, thanks for the good idea, I will add it :) For information, I am currently finalizing a major update, with a completely reworked backend side and a new steps conditional system.

Customer 3rd-Eye

I saw that, you're very dedicated to this plugin and we really appreciate it!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from illegalefarben

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer illegalefarben

Hey, just bought - your plugin is sexy as fk! Good job! One thing: I have to agree with 'bradclarkuk' from 9 month ago - it would be lovely to inverse the color switch when selecting an item. That would be the usual UI experience. Is there a way to modify it in that way? Cheers, Adam

Author loopus

Hello, Thank you :) Ok for an option to inverse the color of selection, I note it for the next update. I just sent a major update to codecanyon, preview here : https://www.youtube.com/watch?v=OtpvjM7vJ4M

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from 3rd-Eye

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer thread
CodeCanyon source
Customer 3rd-Eye

Thanks for the awesome plugin, got it working but also noticed (like others) that it doesn't work with minification turned on. Can you tell us in your experience which files should be excluded?

Author loopus

Hello, What is the minification plugin used ?

Customer 3rd-Eye

Hi loops, thanks for asking - we're using Speed Booster Pack @ wordpress.org/plugins/speed-booster-pack/

Author loopus

Thanks. It should work correctly with W3 total cache, I'm going to test with this one .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from cristibond

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadLicensing
CodeCanyon source
Customer cristibond

Hi there, just bought it. I use wp 4.1.1 . I installed it, and then entered the purchase code. But the ssettings screen won't show. On the settings page, i only see the field asking for the purchase code.

Author loopus

Hello, After filling the purchase code and save settings, you should see the submenus "Forms", "Import" and "Export".

Customer cristibond

Sorry for asking this, I was tired and did not see it :D Great plugin !

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from vltelecom

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesCustomization
CodeCanyon source
Customer vltelecom

Hi there, Is there a way to display a custom page based on the selection of items? Or have a redirection rule based on the product selection or prices? Please advise whether this will be possible with some customisation?

Author loopus

Hello, Not currently, sorry. You can choose currently only one url where the user will be redirected at the end of the form .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from TheSpoiledKid

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesPaymentsPDF and email
CodeCanyon source
Customer TheSpoiledKid

Hi! I have a pre sales question! I just don't understand how can i make the users to pay via this plugin. I want them to pay after we have decided a price. How can i do that :o For example, the users fills in the form and inputs his email. i then reply to his email and we decide on a price. Now how can i charge him that price via paypal? Is there a way i can send him a link in the email where he can pay via paypal? I know my question might be pretty noob, but well, uhm..im stuck here guys!

Author loopus

Hello, You can create estimation forms (like demo page, the estimate will be sent by email) or payment forms : at the end, the final button go directly on the paypal payment page (and the order confirmation is sent by email).

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from zenhosting

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesCustomization
CodeCanyon source
Customer zenhosting

hello it is possible to use it to request a quote for creating site it is possible to desactivate the price estimate and display only the stage and a message in the laste stage thanks

Author loopus

Hello, Yes, you can choose to show current step instead of price in the circle ( ex : 2/3 ), and you can hide the final price adding this to your style.css theme file : #estimation_popup #finalPrice { display: none !important; } The text on final step can be edited from backend .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from 4watch

3 direct author replies in this public CodeCanyon conversation.

6 messages3 author repliesBuyer threadSupportLicensing
CodeCanyon source
Customer 4watch

Hi, I've got a problem with this plugin. It crashes my website and makes the back-end adminpanel disappear and the website wont load. As soon i manually delete the plugin from the list in FTP everything works fine. I use Wordpress version 4.1.1 Thank you.

Author loopus

Hello, Do you have a blank screen after activation ? Can you set : define( 'WP_DEBUG', true); in wp-config.php, and check if there is a message ? It's surely a problem with memory limit (solution here : http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/)

Customer 4watch

Hello, Tried to change the WP_DEBUG and increase the WP_MEMORY LIMIT to 512. Website still wont load with the plugin activated. I get the following Errors: On PC: Service Unavailable The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later. Additionally, a 503 Service Unavailable error was encountered while trying to use an ErrorDocument to handle the request. On Phone: Notice: Array to string conversion in/home/content/domains/contentready.nl/public_html/wp-content/plugins/WP_Estimation_Form/includes/wpe-tools.php on line 912 WordPress database error: [Unknown column 'Array' in 'where clause'] SELECT * FROM wp_wpefc_forms WHERE id=Array LIMIT 1 Notice: Undefined offset: 0 in/home/content/domains/contentready.nl/public_html/wp-content/plugins/WP_Estimation_Form/includes/wpe-tools.php on line 913 Notice: Array to string conversion in/home/content/domains/contentready.nl/public_html/wp-content/plugins/WP_Estimation_Form/includes/wpe-tools.php on line 912 WordPress database error: [Unknown column 'Array' in 'where clause'] SELECT * FROM wp_wpefc_forms WHERE id=Array LIMIT 1 Notice: Undefined offset: 0 in/home/content/domains/contentready.nl/public_html/wp-content/plugins/WP_Estimation_Form/includes/wpe-tools.php on line 913 I hope you can tell me how to fix this.. Thank you.

Author loopus

The message : The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later. seems to say the server is full . Did you check if there is free space on hdd ?

Customer 4watch

Yes i checked that and it seems not to be the problem.

Author loopus

Can you send me a temporary backend access, to see the problem?

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from halfcj

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer halfcj

I would like to Change the options from On/OFF to YES/NO. Could you advise me where i can do this?

Author loopus

Hello, Simply edit the file assets/js/bootstrap-switch.js, lines 25/26 .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from seosagenet

2 direct author replies in this public CodeCanyon conversation.

5 messages2 author repliesPayments
CodeCanyon source
Customer seosagenet

Pre-Sale Question here: Would it be possible with this plugin to do the following? If I wanted to offer a service like writing, at $5.00 per every 100 words written, and allow people to buy from 300 words to 2000 word articles, from 1 article to 20 articles each purchase. Creating a final cost to display based on these calculations, then sending the buyer to paypal. Is this possible with this plugin? thank you!

Author loopus

Hello, The only thing you can't do is the minimum quantity per product. Currently you can set a maximum, but not a minimum. I note the idea for a next update .

Customer seosagenet

Is there a way around that, by me just making the first selection 300 instead of 100, correct?

Author loopus

I'm not sure to understand. You can freely create items (products), assign a price and enable quantities (you can also create reductions on specific quantities) .

Customer seosagenet

Something that I will check out myself. The plugin is perfect for me using other things as well, so no big risk in buying. thanks!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from bloox

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupport
CodeCanyon source
Customer bloox

Everythjing was fine, i was making my setup, but suddenly, i got "Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request." Now i can't access to my site anymore.

Author loopus

Hello, It seems to be a server problem. Maybe a memory limit problem . Did you try to remove the plugin folder using ftp ?