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 36 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 leon_r

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportCustomization
CodeCanyon source
Customer leon_r

I have a pricing chart plugin that allows for a CTA link. In this chart I will have 4 different charts so I will add 4 CTAS. The issue here is that I can't add any custom CSS class to the chart CTA, so how would I make 4 pop ups work? The CTA allows only for a URL. Am I able to create direct popup URLS links?

Author loopus

Hello, It could be possible to open a form popup from an url by customizing a bit the main js file of the plugin . Feel free to contact me from the support by using your buyer account and telling me the url format, I will send you a custom version to do that .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from reachingmike

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomizationPDF and email
CodeCanyon source
Customer reachingmike

Hello, On my forms first screen I have image fields. I would like to use a query string parameter to select the image based on the query string ie www.mysite.com/form-page/?key=ChosenItem . How could I achieve this? Thanks

Author loopus

Hello, There is no specific option to do that currently, but it can be done by pasting this code in the "Custom JS" option of the form : jQuery(document).ready(function(){ if(document.location.href.indexOf('item=')>-1){ var formID = jQuery('#estimation_popup').attr('data-form'); var item = document.location.href.substr(document.location.href.indexOf('item=')+5, document.location.href.length); item = item.replace(/%20/gi, " "); if(jQuery('#estimation_popup [data-title="'+item+'"]').length >0){ wpe_itemClick(jQuery('#estimation_popup [data-title="'+item+'"]'), false, formID); } } }); Then simply use the get variable "item=my-item-title" in the url of the form. ex: http://www.mywebsite.com/my-form? item=choosenItem I replied to your email .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from daniel_komirik

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesSupportPayments
CodeCanyon source
Customer daniel_komirik

Let me know how can I get the value of a slider in javascript also, how can I put some value to a number field using javascript. Thanks in advance

Author loopus

Hello, For support requests, please contact me from the support page by using your buyer account : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support . I will help you .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from daniel_komirik

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author replies
CodeCanyon source
Customer daniel_komirik

Let me know if I can create a slider with both calculated value and the user can edit the value. If it is possible how. Thanks in advance

Author loopus

Hello, No, sorry, there is no such option currently : if you use the option "Define quantity by calculation" on a slider, this quantity can't be changed manually by the customer . I note the suggestion, thank you .

Customer daniel_komirik

Thanks for your reply. I also want to know how can I get the value of slider using javascript

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Willem63

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportPayments
CodeCanyon source
Customer Willem63

I have duplicated a form and tried to change the title. On preview the old title still shows. Have cleared cache, rebooted, tried again to change but it will not change and stays the same?

Author loopus

Hello, Please can you contact me from the support page, sending me a temporary access to the wp backend ? I will debug it : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from boeselhack

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadSupport
CodeCanyon source
Customer boeselhack

Hi, is there a way to compare 2 distances (between 2 offices) before calculating the distance to the customers address depending on whose office is nearer to the customer? I tried it that way, but I get an calculation error: 0 if([distance_251-253-252-254_247-262-263-249_km] > 100) { if ([distance_251-253-252-254_247-262-263-249_km] 100) { if ([distance_258-261-260-259_247-262-263-249_km]

Author loopus

Hello, Yes, but the calculations don't support conditions in conditions currently, you need to use the "and" operator (&&) : if([distance_251-253-252-254_247-262-263-249_km] > 100 && [distance_251-253-252-254_247-262-263-249_km] 100 && [distance_258-261-260-259_247-262-263-249_km]

Customer boeselhack

Wow, thanks for your great support!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from papix2001

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer papix2001

you said "If you don’t use Wordpress, you can find the standalone version of this plugin " so they are similar? same features etc? thanks

Author loopus

Hello, No, they have the same base but not the same features. You can find the details of each version listed on the codecanyon page of each plugin. The Wordpress version is more advanced than the PHP standalone one .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from atu

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadSupport
CodeCanyon source
Customer atu

Hi there, First of all, thanks for this amazing plugin! Works really good! We are facing a situation: There is the first step where basically, you are asked, "What type of services do you require?" We provide them with 5 types of services from which they can do multiple selections. This step is linked with conditions like "Service 1 is selected" to all the 5 services. Every single Service has his own step. We would like the plugin to go through all the user selected steps one by one till the end. Right now the plugin jumps on the last selected service and after that to the final step without going through the rest of the selected services. Is there any way of doing that? Hope I made myself clear. Thanks, and we are waiting forward to your reply.

Author loopus

Hello, Thank you :) Yes, here is the way to do that : Link all your steps successively (Step A -> B -> C etc ...) Remove all conditions on the links Directly use the option "Show depending on conditions" on each step (from the step panel). Ex : show the step B only if the item B is selected in the first step By doing that, the plugin will continue to follow the links, but will show only the steps that have their conditions filled (otherwise it will continue to the next one) .

Customer atu

Works like a charm! Thanks a lot for the help!

Author loopus

:)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from theweddinghut

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer theweddinghut

Hi, I would like to know if the prices can be dynamic, i.e the prices are stored on mysql database, is there anyway to populate the prices from database to the form. I have different suppliers that have different prices for the same item, hence I would like to use the same form logic, but just take prices from the db. is this possible?

Author loopus

Hello, Yes, the prices of the items are stored in the column "price" of the table "wpfc_items" in the database . You can modify the prices inside to modify the items prices in the forms . You can also simply duplicate a full form in 1 click from the forms list page then change the items prices in each one. It will allow you to generate a different shortcode for each form .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from accesspointmedia

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer accesspointmedia

Hi, this is a great plugin! A feature that I think would take this plugin to the next level would be to be able to expand it and use it as a 'cost price and also 'retail price' calculator. So you have the ability to work out the cost price of services, then have the ability to apply a percentage/price markup to add profit etc, then display both as columns on the final table (Description, Information, Quantity, Cost Price, Retail Price). This would be great for businesses that need to work out estimates of services and then how much to charge customers! Are there any plans for such functionality? Thanks and keep up the good work! :)

Author loopus

Hello, There is no such feature planned currently, but thank you for the suggestion !

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from gregyoo

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
CodeCanyon source
Customer gregyoo

Hi. I saw your video ... https://www.youtube.com/watch?v=xH8frpa7wL0 ... I would like to know if instead of having ONE Width input box, ONE Height input box .. can this product create TWO width input boxes (first to enter inches, second to enter fraction) than adding both measurement for the calculation , TWO HEIGHT input boxes (first to enter inches, second to enter fraction) than adding both measurement for the calculation? Looking forward to your response. Thank you in advance!

Author loopus

Hello, Yes, you can freely manage your items to do that .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Djxandertangel

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadSupportCustomizationPayments
CodeCanyon source
Customer Djxandertangel

Hi mate how to change color?

Author loopus

Hello, You can freely change the colors from the "Design" settings tab of the form .

Customer Djxandertangel

yeah I 've tried that already and messed it up totally, I just want everything mint to be red - could u give me some tutorial or any documentation on that , I am really struggling mate . Pls help and second task is everything white (background should be black )

Author loopus

Please contact me from the support page, sending me an export of your form and explaining what you try to do, I will help you : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from bernabejewett

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomization
CodeCanyon source
Customer bernabejewett

Hello Author, How can I convert a text type input into password type input ? As the html is generated dynamically, so I can't put it in HTML file. Looking forward to getting a solution. Thanks.

Author loopus

Hello, Here is the code to paste in the "Custom JS" option of your form to do that : jQuery(document).ready(function(){ jQuery('#estimation_popup [data-title="My textfield"]').attr('type','password'); }); Simply replace "My textfield" by the exact title of the target text field .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Honkytonky

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupport
CodeCanyon source
Customer Honkytonky

Hi there! After the recent updates I experience a strange problem in Google Chrome browser. What happens is that my form on the home page is actually working, but all other forms appear to be displayed white on white (with only the button appearing), and only when clicking with the mouse into the invisible form fields there are triggered the actual actions. I excluded cache problems and compared my different forms settings but actually there is no real difference to be seen? Could this be a browser glitch? My Google Chrome version is 69.0.3497.100 (Official Build) (64-bit)! It looks like this https://imgur.com/a/8XH8uLK. If you got any idea I would really appreciate it! Comparism links would be www.omigretchen.de (working form) and for example http://www.omigretchen.de/clientes-fieles/ (one of the many forms not displaying correctly). It seems to be Chrome related as FF, Safari, and IE don't seem to reproduce the error.

Author loopus

Hello, The form works normally on my side (tested with Chrome), I can't see the mentioned issue. The screenshot is also missing : https://imgur.com/a/8XH8uLK . Did you fix it since this message ?

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from iwreck

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomization
CodeCanyon source
Customer iwreck

Is there a way to make it impossible to go a step back in the form? For my case, if a user goes back it messes up the form as he then is able to chose more than 1 product and then the conditions on the next step makes it double the options.

Author loopus

Hello, Yes, it can be done by pasting this rule in the "Custom CSS rules" option of the form (in the Design tab) : #estimation_popup .linkPrevious {display: none !important;}

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from wangsa1608

3 direct author replies in this public CodeCanyon conversation.

6 messages3 author repliesSupportPayments
CodeCanyon source
Customer wangsa1608

How to do call it from html. no luck using shortcode. also would be plus if editable default value item list shown besides "tittle, type, group and action. very impresive btw..

Author loopus

Hello, Please can you contact me from the support page, sending me the url of the page where you added the form shortcode ? I will debug it : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support

Customer wangsa1608

it is not using link.. its directly from shortcode to html.

Author loopus

Yes, but please can you send me the url of the page where you pasted the shortcode ?

Customer wangsa1608

Thank you for the quick response. supason.com/kalkulator

Author loopus

Thank you. The shortcode sounds to be missing on the page. Did you refresh the W3 Total Cache plugin once the shortcode added to the page ?

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Biwyze

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadSupport
CodeCanyon source
Customer Biwyze

hello sir, thanks for this amazing plugin. Just a question.. Is it possible to make a customer start a form from choosen stage to simulate premade choices. I explain, i'm making a cost estimation for phone repair and i wanted to redirect (from website pages) customer to the part where he chooses what to repair with the brand and phone already choosen. Is it possible to do something like that in your plugin?

Author loopus

Hello, No, sorry, there is no option to automatically select specific items and go to a target step directly from an url. I note the suggestion. The best solution would probably be to duplicate the form (in 1 click from the forms list) and start each one from the wanted step.

Customer Biwyze

Wow, that was quick! I'll follow your suggestion. Thank you for your support

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from raulpinadesign

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomization
CodeCanyon source
Customer raulpinadesign

Hello! I wnat to buy this plugin, but I need to know if it fits my needs: I want a credit simulator that give visitors the option to choose the amount, the monthly fee he wants to pay, and for how many months. I t must shows a note that informs the total credit with taxes... like show here: https://www.cetelem.pt/creditos/credito-automovel-outros-veiculos Is it possible?

Author loopus

Hello, Yes, it can be done by using the custom calculation tool. You can use "Rich text" items to show the results of the calculation/value of any item in custom texts .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from highace

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadSupportCustomization
CodeCanyon source
Customer highace

Hi, I'm having an issue with the Form Designer, when I go in and make a change to something, for example, change the background colour of the Summary Table, I click apply and it tells me the 'Styles are applied', and it shows the change in the designer ok, I then click on Save and it then tells me 'Styles are now applied to the website'. However when I check the page on the site the changes have not been made, and when I go back into the Form Designer the changes have reverted back to what they previously where? I've tried using both Firefox and IE and both show the same issue, is there something I'm doing wrong?

Author loopus

Hello, Some styles generated by the Form Designer can be overridden by some other css rules . The solution to force them is to edit the generated css rules (button pencil in the form designer) and add the css tag "!important" on the styles you want to force. Example : #estimation_popup #lfb_summary .sfb_summaryStep { background-color: red !important; }

Customer highace

Hi, thank you so much for such a quick and prompt reply, that worked perfectly, what awesome support!!! :)

Author loopus

Thank you :)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from thiziz

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadSupportCustomizationWooCommerce
CodeCanyon source
Customer thiziz

Hello, how are you? I Love Your plugin! Today, after installation, I had a problem. I created a custom page inside "My Account" in WooCommerce and added the shortcode of a form that I created in your plugin, but the styles do not work. Do you know what I should do to call styles within My Account on WooCommerce? Does it not work because it's a shortcode inside another? [woocommerce_my_account]

Author loopus

Hello, I'm not sure it can work in another shortcode. Did you try to enable the form option "Ajax navigation support" in the "General" settings tab of the form ? It should force the css files of the form to be loaded .

Customer thiziz

It worked! Thank you, genius! s2

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from anandmongol

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
CodeCanyon source
Customer anandmongol

Hi, Can I build Food Calorie Calculator - plz refer to following link https://caloriecontrol.org/healthy-weight-tool-kit/food-calorie-calculator/ thanks

Author loopus

Hello, No, sorry, there is no specific option to make such table layout currently.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from PetrosBallas

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadSupportCustomizationPayments
CodeCanyon source
Customer PetrosBallas

Hello,I have a little question: Is it possible to have two last steps - one with the full amount and another one with a fixed amount? The reason why I'm asking this is because my client wants before the last step for the user to choose if he/she would like to pay the full amount or just a fixed deposit. Many thanks

Author loopus

Hello, No, sorry, its isn't possible to create several final steps currently .

Customer PetrosBallas

I found a way around this by having a link open when the deposit button is clicked to a custom page with a custom PayPal button. Anyway, there is another problem now: Email is not sent with order information after the email field is completed. I have enabled the ''Send contact as soon the email field is filled ?'' but no emails are coming through.

Author loopus

The option "Send contact ASAP" can send the contact informations (email, name, phone, address etc...) to MailChimp/MailPoet/GetResponse, but it doesn't send the order. The order is sent from the last step only (if needed there is an option "Send order automatically" that can be activated if the last step doesn't contain items ).

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from aruldesk

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadSupportBooking
CodeCanyon source
Customer aruldesk

Hi, I need to use his plugin for venue booking. Checkin and Check out time is 12:00 AM Midnight and also integerate with calendar. Booking will be 1 day, 1 1/2 Day, 2 Days, 2 1/2 Days and so on. If the date is already booked further booking on the same day should not be allowed. Will your plugin support these condition?

Author loopus

Hello, Yes, it is possible to do that. You can assign a specific calendar to a datepicker of the form, and choose to register new events inside based on the selected date and the defined duration. A datepicker can have only one duration defined, so you will need to create several datepickers (one for each possible duration : 1/2 day, 1 day, 2 days etc ...) and use their option "Show depending on conditions" to show the good one based on the wanted condition (for example: if the user selected the option "2 Days" in a specific dropdown) . The dates that correspond to registered events will be disabled in the datepicker for the next users .

Customer aruldesk

Great! Will Buy it.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from bernabejewett

3 direct author replies in this public CodeCanyon conversation.

11 messages3 author repliesBuyer threadSupportCustomizationPayments
CodeCanyon source
Customer bernabejewett

I have slider range from 20,000 to 500,000. When user dragging slider I want to show the value immediately below the slider through Rich Text. I did it. But In that case number format is not like 20,000 or 30,000. I want this number as thousand format. How can I do that?

Author loopus

Hello, Currently the quantity thousand separator is an empty space. I just changed it to use the same separators as those defined for the prices. It will be a part of the next automatic update. Feel free to contact me from the support page if you want it immediately : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support

Customer bernabejewett

Yes, I need it immediately. Please check mail, I have contacted over there. Thanks for great support.

Author loopus

Done, I sent it .

Customer bernabejewett

Thanks for the update. I have applied it and it's working fine in Tool-tip. Unfortunately when I show the slider value with Rich text, it's not showing thousand separator there. Would you please screenshot here: http://prntscr.com/l9yg4p Looking forward to the reply. Thanks

Author loopus

Thank you for reporting. Feel free to reply to my email if you want this improvement immediately .

Customer bernabejewett

Done. Please check mail and reply. Thanks.

Customer bernabejewett

Hello I applied your update version. Unfortunately, it's not working. The result is same as like before. Please check here - http://prntscr.com/l9zw61

Customer bernabejewett

And please fix this one. The comma separator is visible only when you start dragging the slider. Check here - http://prntscr.com/la012h Note that in that case I made the tool-tip display inline that mean it's all time visible.

Customer bernabejewett

Hello, Your separator is working. But calculation is not working now. When I calculate custom price with Slider quantity value, it's not working. Can you please check and reply?

Customer bernabejewett

It's solved. Thanks.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from mrcolbridge

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
CodeCanyon source
Customer mrcolbridge

Good morning. I love this plugin, it's so awesome. My one question is - is there a way to include product add ons through the forms or only the product. Example I'm selling a pizza and then the toppings are add ons - I don't want to create the toppings as separate products as it doesn't format in a constructive way when the order is complete. Thanks

Author loopus

Hello, Thank you ! The toppings will be managed as items for the plugin, but you can freely choose to show them only when some specific items are selected, and hide them from the final summary.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ipergraphic

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadPDF and email
CodeCanyon source
Customer ipergraphic

Hello, one question: is it possible to show some text fields put in some steps for the user only inside the e-mail received by the admin and not in the final summary shown in the front-end? Thanks!

Author loopus

Hello, Yes, you can use the option "Get the value of a field" from the email content editor ("Email" settings tab) to display the value of a specific item of the form in the email received by the admin.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from alfgundersen

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomizationPDF and email
CodeCanyon source
Customer alfgundersen

One thing thats not very elaborated in the documentation of your product is how to use the GET variables. I have turned it on, but how can I access the the variable in lets say Gravity forms? And is it possible to integrate values from ACF? That would be a nifty feature, my clients have different rebates, which is stored in an ACF field, which i want to access in ur plugin.

Author loopus

Hello, Please can you use the "Reply" button for new messages ? Thanks ! This functions allows you to send the values of the wanted items to the url defined as final redirection of the form. The values are sent as GET variables in the url, like that : http://www.myWebsite.com/?myItem1=250&myItem2=[email redacted] You can define each variable name directly from the item panel. These variables can be recovered by PHP for any wanted use (outside than the plugin, with your own custom php script) . There is no specific option to send them as separated items to a gravity form currently, but it can be done with Zapier (option "Send to Zapier" in the Last step settings tab of the form) .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from EvilOni

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesSupport
CodeCanyon source
Customer EvilOni

Hi Does the product support multiple columns? e.g. Like this calculator? https://mtnonline.com/data-calculator (actually want to replicate this pretty much exactly)

Author loopus

Hello, This plugin allows you to place your items in columns, but there is no option to reproduce this exact layout (box with icon, title, text on right, slider, text at bottom and tooltip on side), sorry.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from alfgundersen

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadPDF and email
CodeCanyon source
Customer alfgundersen

Is it possible to generate the pdf directly in the webpage, and not send it on email? Im using this form to generate an offer to my clients.

Author loopus

Hello, No, sorry, there is no this specific option currently, the pdf file can only be sent by email. Thank you for the suggestion.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from danilocpaiva

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadPDF and email
CodeCanyon source
Customer danilocpaiva

Pre-purchase question: Can we NOT show the price in the page? I ened to build a cost estimation page that conduces the user through the whole process, but ask for their e-mail and phone number at the final, BEFORE showing/sending the price. Is it possible with you plugin?

Author loopus

Hello, Yes, you can choose to hide the price from the progress bar (it can be hidden or show the current step instead of the total), place the required fields before the last step (email, phone etc ...) and enable the form option "Send the order automatically on last step". It will send the order when the user will come to the last step then show the total price (and the summary if wanted) .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ramzi2306

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
CodeCanyon source
Customer ramzi2306

Pre-purshase question : Can we do this : Select your shape => Triangle => Red => small => Choose an other shape ? => Yes => Go to the first step and stack the choices at the end Can we add multiple selections like this

Author loopus

Hello, No, the selection will be replaced if a same step is called several times. But it is possible to duplicate the step a lot of times and use the conditional system to show the next step or not depending on the wanted conditions .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from wowlp

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesPayments
CodeCanyon source
Customer wowlp

Hello, is it possible to configure PayPal Checkout? https://www.paypal.com/us/webapps/mpp/paypal-checkout . This is the feature that shows the Checkout in a modal window, like Stripe.

Author loopus

Hello, No, sorry, the plugin calls the paypal payment page when paypal is used .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from creativart_web

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadPDF and email
CodeCanyon source
Customer creativart_web

Hi, is it possible to add a description of items in the summary page? And then in the pdf? Thanks in advice

Author loopus

Hello, I received your email one minute ago, I replied. No, the description can't be added to the summary or the email content currently, sorry.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from tomfe

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadWooCommerce
CodeCanyon source
Customer tomfe

Hello! If I use this with Woocommerce products, than can I estimate variable products with it?

Author loopus

Hello, Yes, it is possible to assign a variable product to an item of the form. Doing that, it will be added to the cart with all its predefined options and attributes .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Fixedman

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadLicensing
CodeCanyon source
Customer Fixedman

Hello is there any way I can import some of your demos?

Author loopus

Hello, Yes, all these demos are now installed by default on plugin activation. You can also find them in the folder "demo_data_to_import" in the main zip file of the plugin .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from UCodeX

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesSupportCustomization
CodeCanyon source
Customer UCodeX

Presales Question: First of all , Look like an amazing plugin, I notice on comments here that if i need some customes pricing rule based on what item has selected, quantity etc i will need to add some condition which seem a javascript way, Will you help creating these rule as per my requirement in javascript conditions since i do not know much of it once i purchase this pluggin? For example it will be Choose which Purpose of an item then select package then amount of items to add in the package, if qty is one, the package price will remain same, if more than one , it will add an addition of xxx amount for each quantity on top of the package price. etc. the trees of the concept i can design it i think based on some of your video, but some condition in js seem difficult for me. let me know. Many thanks

Author loopus

Hello, You can simply use the item option "Reductions on quantities" to do that (it allows you to define a different unit price depending on the quantity selected by the customer. About the custom calculation tool, you don't need to write the code yourself, there are visual tools that allow you to visually create the wanted conditions and to recover the value/price/quantity of a specific item . Here is a video that shows how it works : https://www.youtube.com/watch?v=xH8frpa7wL0 . Of course, feel free to contact me from the support page if you need help on a specific point.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from NathanSimpson

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomization
CodeCanyon source
Customer NathanSimpson

#1) Based on below - i would see that i would create a form and hide two fields and these will get the assigned classes instructed below - correct ? #2) My feature request like many others here is simply allow this with all of the fields in your estimator plugin - so if my estimator has 10 questions then i could create 10 fields in gravity forms to match and simply add class from each to GF form so that when submitted the fields are pulled and entered into GF form and in a manner that allows them to be kept in database as intendid instead of all in one field like i think your plugin does now... So why not simply add this ability - to me it seems this would only require each question getting a automatic class name assigned to them by your plugin or ability to manual add a class in your plugins form and then add that same class to matching gravity form field and presto - magic happens.. - right? Please consider this feature request as i know there were probably 100's of comments in some way asking this I've read already below. Thanks ! Documentation States: If you are using Gravity forms, you can assign a gravity form on the last step : Create a new gravity form, and add a "Paragraph text" field with custom css class (in the field advanced tab) "estimation_project". This field will be hidden and used to recover the final selection detail. Create a new gravity form, and add a "Number" field with custom css class (in the field advanced tab) "estimation_total". This field will be hidden and used to recover the final total price. Continue to create your form, without worrying about styles. Then, go to the form settings, on "Last Step" tab, and select the created form in the "Use Gravityform" field .

Author loopus

Hello, It isn't planned for now, but thank you for the suggestion .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from easyupdate

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportPayments
CodeCanyon source
Customer easyupdate

Hi! If you use the form here; easyupdate.no/priskalkulator and after you click start choose "Leiestol" to the right and click "Neste/Next". On the final price there is "0,-" behind the correct price. Can you see why this is happening?

Author loopus

Hello, Please contact me from the support page, sending me an export of the form, I will check it : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from NathanSimpson

1 direct author reply in this public CodeCanyon conversation.

4 messages1 author repliesBuyer threadSupport
CodeCanyon source
Customer NathanSimpson

If you prefer, you can assign a Gravity Form to the last step.... What does this mean? Say I have a form i need clients to fill out to join site - how would your plugin integrate with gravity forms - i'm interested in learning to map some of the fields in the estimator to the form on final step - any ideas or clarification would be helpful and greatly appreciated..

Customer NathanSimpson

Do you have a video that shows how to map form fields from estimator to gravity forms?

Author loopus

Hello, You can find the instructions in the documentation of the plugin (point 2.7- Gravity Forms support) . You can assign an existing gravity form to the last step from the "last step" settings tab of the form. Doing that, the form is sent directly by gravity. As explained in the documentation, you need to create 2 hidden fields in the gravity form to recover the form selection and the total .

Customer NathanSimpson

video? please...

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from infinityswift19

2 direct author replies in this public CodeCanyon conversation.

5 messages2 author repliesCustomizationPaymentsPDF and email
CodeCanyon source
Customer infinityswift19

Pre Sales Question I need user to select from multiple drop downs to build their system. And it will add pictures based on there selections. Is there a way to export picture to your email at the end? Kinda like your demo, but the top picture needs to be exported into the email. https://www.wordpress-estimation-payment-forms.com/hotel-room-cost-estimate-demonstration/.

Author loopus

Hello, No, sorry, there is no option to do that in the email content currently.

Customer infinityswift19

Can pay extra to get this feature or custom develop for it?

Author loopus

Sorry, I am not available as freelance, but if you need a specialized team to develop such specific customizations to your version, I can recommend this one : https://wpkraken.io/?ref=loopus . They are used to work with this plugin.

Customer infinityswift19

Thank You

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from LaithTech

4 direct author replies in this public CodeCanyon conversation.

8 messages4 author repliesBuyer threadSupportCustomizationBooking
CodeCanyon source
Customer LaithTech

Hello Is it possible to prevent the booking on the same date ? i created a booking system using a date picker and i want the client to be able to book only not at the same date , can i achieve that ? Thanks

Author loopus

Hello, To do that, you need to assign a calendar to your datepicker and enable its options "Register a new event ?" and "Set date as busy ?" .

Customer LaithTech

is there any documentation on that to guide me through the setup ?

Author loopus

Yes, you can find the documentation in the "Main file" of the plugin that can be downloaded from here : https://codecanyon.net/downloads. Here is the way : Edit your datepicker item Choose a calendar (for example : Default) in the "Calendar" option Enable the option "Register a new event ?" Enable the option "Set date as busy ?"

Customer LaithTech

Thanks for your quick reply , i did exactly what you said and i still can choose the day date ( today's date ) i just need to prevent the clients from booking at the same day , they can book tomorrow or whenever except the recent date ,

Author loopus

Ah ok ! Sorry, I thought you wanted the user to be unable to select a date when there is already a recorded event. You can use this code in the "Custom JS" option of the form to set the start date to next day : jQuery(document).ready(function(){ var newDay = moment(new Date()).add(1, 'day'); jQuery('[data-title="My datepicker title"]').datetimepicker('setDate',newDay.toDate()); jQuery('[data-title="My datepicker title"]').datetimepicker('setStartDate',newDay.toDate()); }); Simply replace " My datepicker title " by the exact title of the date field . Is it ok ?

Customer LaithTech

perfect 2 thumbs up , great support !

Author loopus

Thank you ! :)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from pingusol

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomization
CodeCanyon source
Customer pingusol

Hi, I have read the comments, but i cant seem to find an answer. On your demo form id 5 with rent a car, you have a total row. From where do i enable it? Because on the demo form with id 1 its not. Thank you.

Author loopus

Hello, You can disable it from the "Design" settings tab (option "Show total at bottom") .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ofmarconi

3 direct author replies in this public CodeCanyon conversation.

6 messages3 author repliesSupport
CodeCanyon source
Customer ofmarconi

When DEMO access avast blocks and says to scan the computer.

Author loopus

Hello, Yes, I know this false avast alert, but I don't know why it reacts like that (the name of the domain?). If needed, you can scan the site from here: https://www.virustotal.com/en/url/ecf7c3432264b6040400056a6283ed820b9f614ece8182d5ca135c6a62ccbf9b/analysis/

Customer ofmarconi

Here he is accusing Phishing, I think you might consider switching URLs, buying another domain to avoid this. Hug!

Author loopus

Yes, it is a known problem with avast, which happens on many websites. I sent them a false positive report, I hope the problem will be resolved over time. Sorry for that .

Author loopus

They answered me, they removed this false positive from their database. The problem should disappear in the next few hours.

Customer ofmarconi

Yesssss THX!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from DigitalID19

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportPaymentsBooking
CodeCanyon source
Customer DigitalID19

Hi Guys, Thank you for an awesome plugin, I just have one error, I have a first step - choose a play set (3 sets to choose from) After this set has been chosen, the form splits into 3 different date pickers depending on the set chosen, with this, I have added 3 calendar categories, to be able to have 3 sets hired on the same day.. The error; the calendar categories on the date picker defaults constantly to "play Set Small" no matter how many times I choose the other categories (Play Set Medium/large", can you maybe assist to what the problem might be?

Author loopus

Hello, Thank you ! Please contact me from the support page, sending me an export of the form, I will check it : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ippeter

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
CodeCanyon source
Customer ippeter

not able to see the demo site

Author loopus

Hello, Please can you check ? It should be ok now .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ConvergedVentures

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadPDF and email
CodeCanyon source
Customer ConvergedVentures

How to send first and last name fields from final page to MailCimp? Is this possible, because it is not currently working

Author loopus

Hello, Yes it is possible. You need to set the option "Type of information" of these items (first name, last name, email etc ...) then configure your MailChimp account in the "Last step" settings tab of the form .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from istyDK

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer istyDK

How can i remove counting the price on the top, taht circel button???

Author loopus

Hello, Simply set the option "Progress bar shows" to "Nothing" in the "General" settings tab of the form .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Irfan_Abdurrafi

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesSupportPayments
CodeCanyon source
Customer Irfan_Abdurrafi

Hello, Is there an option to set a minimum price value to $ 100? Prices can go up to $ 101 and so on, but can't go down to $ 99.

Author loopus

Hello, Yes, it can be done by using the price calculation option .

Customer Irfan_Abdurrafi

Can i have explanation, how to do that/ what the formula is?

Author loopus

Yes, for support requests, please contact me from the support page by using your buyer account, I will help you : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from webworkeuropa

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author replies
CodeCanyon source
Customer webworkeuropa

Hi, For example, I only need to sell 30 tickets to an event. Can I set a limit?

Author loopus

Hello, No, sorry, there is no such option currently. Thank you for the idea .

Customer webworkeuropa

This is really an important detail! Do you plan to add this feature in the near future or not?

Author loopus

No, this specific option isn't planned currently, sorry .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Territoriohost

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer Territoriohost

hello I'm reviewing the demo they have published, because I'm interested in buying the plugin, but I have a question, you can hide the data used to calculate the values example in the demo in the hidden field in the source code appears data-usecalculation = "true" data-calculation = "[item-208_price] * ([item-206_quantity] * 12)" you can hide the formula and values used for the calculation Thank you

Author loopus

Hello, No, sorry, there is no option to hide the calculation code from the source code of the page currently .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from svasan25

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportPaymentsPDF and email
CodeCanyon source
Customer svasan25

In the admin field, i want to send form response to two emails. I have separated with comma, but it still doesn't work. One email works fine, but how about two? Thank you

Author loopus

Hello, For support requests, please contact me from the support page by using your buyer account, I will help you : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from kany3guy

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer kany3guy

Have you started working on a Zapier integration? I believe that would take this plugin to the next level, as stated many times on here.

Author loopus

Hello, Yes, this option was a part of the last update .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from icuk

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer thread
CodeCanyon source
Customer icuk

Hello, Is there a way in which i can skip having to press the button on the welcome screen to activate the form? i need to be able to deeplink into Step 1 rather than show the starting page. Thank you

Author loopus

Hello, Yes, you can disable the introduction from the "Texts" settings tab of the form .

Customer icuk

thank you

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ConvergedVentures

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadSupportPDF and email
CodeCanyon source
Customer ConvergedVentures

Can a previous submission be recalled? If someone submits the form, can we use the ID number to bring the estimation form back up with the same values filled in? This may be a GET and pull back down thing, but some insight would help.

Author loopus

Hello, No, sorry, there is no specific option reload a form that was submitted with the filled values . But if needed, you can freely edit the stored order directly from the backend, and choose to send it by email or as pdf .

Customer ConvergedVentures

Follow up to that then. Is it possible to "clear all" and clear all of the selections that have been made. I don't want to group them as that limits one selection in each group. I want one set of options to be wide open and many of them can be selected and the other single option would force previous selections to clear. This feels like some kind of JS (not mu strongest skill)

Author loopus

Hello, There is no specific option to do that, but you can use the item option "Show depending on conditions" to hide some elements of the form when the mentioned item is clicked .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ipergraphic

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomization
CodeCanyon source
Customer ipergraphic

Hello! One question: is there possibility to assign a class to a specific step screen? I would like to make some specific particular personalizations in some specific steps, if it would be possible to have a class which I could use in CSS for a specific step's screen would be amazing! Thanks!

Author loopus

Hello, You can target a specific step in CSS by using the title of the step : #estimation_popup .genSlide[data-title="Mobile or website ?"] { ... }

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Hannes_dev

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesSupportPayments
CodeCanyon source
Customer Hannes_dev

Hi, wondering why no-one noticed it till yet. When simply fill the “group” field with same values it should be possible to select only one item. But I noticed when clicking very fast than it is also possible to select more than one item even if the group fields have the same value. Please help. Need to ensure that exactly ONE item is allowed to click. LINK: Simply leave the “group” field empty . It is precisely to allow only selection on multiple items. Link: http://www.wordpress-estimation-payment-forms.com/demo-of-a-cost-estimation-form/ (click fast on mobile an website you can select both)

Author loopus

Hello, For support requests, please contact me from the support page by using your buyer account : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support , I will help you.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ymavrak

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadPaymentsPDF and email
CodeCanyon source
Customer ymavrak

Hello!! I have a question.. How can I configure my form so only when the payment in Paypal is successfull to send an email to customer and me. Because right now it doesnt wait for the payment to be done.

Author loopus

Hello, You need to use the paypal IPN option in the "Last step" settings to do that .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from socialite7

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadSupportPaymentsLicensing
CodeCanyon source
Customer socialite7

for some reason my stripe is not showing up on my xtheme site. It came as a bundle. yesterday the form was showing up but today it is not. telezog.com/memberships

Author loopus

Hello, For support requests, please contact me from the support page by using your buyer account : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support . I will help you .

Customer socialite7

like i said I didn't purchase it from you... it came as a bundle when I purchased the X theme license. Do you want me to provide that buyers code, or do you not provide support with that

Author loopus

Ah ok. As you can read on the "License" panel of the plugin, if you had it included in a theme, the support is directly delivered by the theme support team. Please send your support requests to Themeco, they will help you .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Peeta_Studios

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadCustomization
CodeCanyon source
Customer Peeta_Studios

Pre-sale Question: instead of icon images UI, can we add our own lifestyle images?

Customer Peeta_Studios

Also can we alter the size of each image elements to add in the form? let's say I want a form with 3 images to choose from, each at 500x500px

Author loopus

Hello, 1. Yes, you can use your own images and svg files 2. Yes, you can freely define the default images size from the "Design" settings tab of the form .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ronnfmp

4 direct author replies in this public CodeCanyon conversation.

10 messages4 author repliesBuyer threadSupportPaymentsPDF and email
CodeCanyon source
Customer ronnfmp

Been stuck for a long time now looking for demos but cant find any. Please is there a calculation that i can do that suggests, for example the time it will take to complete chosen tasks for a cleaning business. this is what i mean, example website ( https://housekeep.com/signup/quote ) the part in question is the -We recommend selecting 2.0 hours part,..... it changes according to the tasks chosen please help ASAP !!!!

Author loopus

Hello, You can find all the demo forms in the folder "example_data_can_be_imported" of the main zip file that can be downloaded from https://codecanyon.net/downloads . Here is a way to do that : Create an hidden numberfield "Recommended hours", enable its option "Use value as quantity" and use the option "Define quantity by calculation" to make the wanted calculation based on the selection done in the form Create a rich text item that shows the wanted text and use its option "Get the value of a field" to recover and display the quantity of the numberfield "Recommended hours"

Customer ronnfmp

Hi first of all thank you for even responding though i might not get a response i really appreciate it but i am very lost by that explanation. is there an example of this done in any of the demo forms or further clarifications you can give me please or the actual code please i beg you badly need help instantly??? i already have them forms downloaded a while ago but cant seem to find any examples

Author loopus

Feel free to contact me from the support page, I will send you a simple demo that shows how to do it : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support

Customer ronnfmp

thank you iv done that

Customer ronnfmp

Hi, thank you however the demo has nothing in it no content. i sent you attachment so you can see

Author loopus

I replied to your email .

Customer ronnfmp

Hi as you can see on the time stamp its been 21 days a couple days a way from a month . And where you directed me. they were not helpful at all infact they have stopped replying very unprofessional of them . i went based on what we spoke about but they were being so difficult. if you can please help me it would be great. they've done nothing but waste our businesses time.

Customer ronnfmp

i have purchased + supported unlike the majority here so please i really need your help ASAP due to time> il email you also i guess ....

Author loopus

Hello, You asked for extra customizations, so I recommended you https://wpkraken.io/ . If they don't reply to your emails, you can also find available freelances here : https://studio.envato.com/search?utf8=%E2%9C%93&search%5Bquery%5D=wordpress+customization . I replied to your new email .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from CDCsite

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportPayments
CodeCanyon source
Customer CDCsite

I'm having problems with simulator. (E&P form builder). I am not receiving emails from the form. Someone can help me?

Author loopus

Hello, For support requests, please contact me from the support page by using your buyer account : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support , I will help you.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from giannisantosmarinho

3 direct author replies in this public CodeCanyon conversation.

5 messages3 author repliesSupportPDF and email
CodeCanyon source
Customer giannisantosmarinho

plugin is super crowding the error_log file with thousands of error messages similar to this one. I have not gotten to use the plugin yet. Imagine when I start using it. I just installed and activated the plugin on my site. WordPress database error Table 'qwide_wp77.wp77_3_wpefc_settings' doesn't exist for query SELECT * FROM wp77_3_wpefc_settings WHERE id=1 LIMIT 1 made by require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('plugins_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, LFB_admin->init_tld_localization, LFB_admin->getSettings

Author loopus

Hello there, You already contacted me about this problem (and left me a one star review), and I replied to your support request, but I didn't received any answer. Apparently the settings database table wasn't correctly created on installation . Please simply reply to my email, I will debug it.

Customer giannisantosmarinho

Sorry, I did not receive this email. Can you forward me, please?

Author loopus

It was sent to the email [email redacted] . No problem, I'm going to send it again .

Author loopus

Done.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from giannisantosmarinho

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
CodeCanyon source
Customer giannisantosmarinho

I tried configuring the plugin in my multisites installation with directories and it still does not work on subsites with the same domain. Is it possible to fix this?

Author loopus

I replied to the previous comment.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from panbimbo

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer panbimbo

Is there any site where we can see different forms (templates) of CE&PF, download them and import into our sites?

Author loopus

Hello, No, sorry, there is no such website currently, thank you for the idea .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Dgtacq

1 direct author reply in this public CodeCanyon conversation.

4 messages1 author repliesBuyer threadSupportPaymentsPDF and email
CodeCanyon source
Customer Dgtacq

Also the PDF is not sending. Why is there not just a manual for this? So many people have this problem. It's very frustrating.

Customer Dgtacq

Can you please make a tutorial for this problem. I can't wait everytime until you guys 'fix' it.

Customer Dgtacq

For the rest great plugin though..

Author loopus

Hello, For support requests, please contact me from the support page by using your buyer account : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support , I will debug it .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from possumussrl

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CodeCanyon source
Customer possumussrl

Hi, I wolud like to know if at the end of all the steps completed, when the list appears with the total price, can be edited. Is that possible?

Author loopus

Hello, Yes, you can manage the content of the last step from the "Lat step" settings tab of the form. You can choose which item will be displayed in the final summary by using the option "Show in summary" on each item .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from baton1125

3 direct author replies in this public CodeCanyon conversation.

7 messages3 author repliesBuyer threadSupportPayments
CodeCanyon source
Customer baton1125

Hi, I have problem with lastes update... I didn't see all "checkboxes" on frontend and backend... PLS help!!! Here is prt scr with problem and console errors https://drive.google.com/drive/folders/1NTjLmm-hphXUtlAaU-eBRXDhDrVjboRR?usp=sharing

Customer baton1125

and now I see another problem. Plugin didnt send any e-mails from contact form. Configuration is ok, but no mail from any created form. PLS contactme

Author loopus

Hello, Please can you contact me from the support page by using your buyer account, and sending me a temporary access to the backend ? I will debug it : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support

Customer baton1125

I send U acces, waiting for your reply

Author loopus

Well received, I replied.

Customer baton1125

done

Author loopus

Fixed :)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from PixelPimps

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomization
CodeCanyon source
Customer PixelPimps

Hello, first of all, this is an amazing product, I applaud you for your efforts in making this such a comprehensive plugin. I do have a question. Is it possible to make two selections in one step? Just say I have 5 options (in my case they are material textures), Im using an image to show each of the options. Each of these textures has its own unique variety of colours. I would love for users to be able to first select texture then all colours available would appear, (I know this can be done by 'show depending on conditions') but I really need it to show under say a horizontal line with its own heading "Please Select A Colour". The reason I need it in the same step is so users see the texture/colour combinations without going back and forth through steps.

Author loopus

Hello, Thank you ! You can use a "Rich text" item to create the wanted heading and use its option "Show depending on conditions" . The rich text item allows you to add custom text/html code in any step of the form .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from rodrigosayes

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesCustomizationWooCommerce
CodeCanyon source
Customer rodrigosayes

Hello, i have a question. Is it possible to change the size of the images? I mean the products with woocommerce. I saw the example they made, but the images of the products are very small. I plan to use this plugin to sell products but I need the images to be bigger and it must work with woocommerce products. Thank you.

Author loopus

Hello, Yes, you can freely define the images size (option "Images size" in the "Design" tab of the form) .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from petrknap

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupport
CodeCanyon source
Customer petrknap

Hello, I`ve tested send data to Zappier and in the hook is was only one information, "querystring__ref" but at the form is more values. Where is the problem? Thank you.

Author loopus

Hello, You need to enable the option "Send as variable" on the items you want to send to Zapier .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from trustexpert

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadCustomization
CodeCanyon source
Customer trustexpert

is there a way to remove the gray effect on selecting a image ? i want my images to be the same either selected, or not now i can only use the inverse gray effect who changes between selected and unselected image color. thanks

Author loopus

Hello, Here is the rule to paste in the "Custom CSS rules" option of the form to do that (Design settings tab) : #estimation_popup .selectable .img { -webkit-filter: none !important; -moz-filter: none !important; -ms-filter: none !important; -o-filter: none !important; filter: none !important; }

Customer trustexpert

thank you :-) worked like a charm, maybe add this option in the next update a button like "remove gray effect" under the inverse gray effect button :) cheers loopus, i really like this addon.

Author loopus

Suggestion noted, thank you !

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from tronbone

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportCustomization
CodeCanyon source
Customer tronbone

hi can you help me how to create something like this https://prinzio.com/id/design/spec?category=business-card&paper_class=standard do you have a support forum?

Author loopus

Hello, No, there is no such forum. I correctly received your support request and I replied. Feel free to send me an export of your form if you need help on a specific point.